mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
machine + QOM queue, 2020-10-14
* Register some properties as class properties (Eduardo Habkost) * authz-list-file: Fix crash when filename is not set (Eduardo Habkost) * can-host-socketcan: Fix crash when 'if' option is not set (Eduardo Habkost) -----BEGIN PGP SIGNATURE----- iQJIBAABCAAyFiEEWjIv1avE09usz9GqKAeTb5hNxaYFAl+HDC0UHGVoYWJrb3N0 QHJlZGhhdC5jb20ACgkQKAeTb5hNxaZTqA/+LnV/VHN6WmwTkJDNKrjob6Yslwzp AVX3IPhX2c2tMeL4+zsH2x3N+DDP2ADFDfVln4Pp0jyq3aYy1uB7pa6bCioGnDta CmUIujI9uOXiEw157mUJHQd1HUE20YEwJGeY3vL17wP6NvGQHs8NNFibEErCSTPG hsC93zGCo3UgGWpKNFJ349cdsm644WBjDFueEy8RF7NQIMhYbGqhmCvIKf2j1BAY XkdUcnulOynFMDEuIL/nhcwDmAObdNO2xPDsKf00WJMkktWa745l1NG5d7Ryy5em BdgYjIN95tz5esKSwkYWzdrj9UInYCXCKo4hDm5/RGhvUJdU9SUanfEAEalxAM/2 U4L/pZ6IztoDeKBLyq2A7ZCUk2sxEBWsLEaCWzy6W8V1MlC9/fzoJ+ZAz5ov1K6X NxjtOdK3Jk9GaQKG3pa7YSWJ6Uc1/bv1VkHieemr3Qd9DCsVDn+OczZ3TnMl+WHq v2q9eLaulXlOBbtHiJdmmf6kmflxL8OxevVGkUhXnfD4aD6m3zXrKFSwr8wvlDul vzl8ywlCztN5x0CRNIINIj3PKsJyKnBOjVMWcLMcCPJCVwQW+u54vYKaj9xpwq35 1COfW2IP6D6QIyMrhSN+RFgSR7RNqp2lZHUmeFPCp4s51bJg+bnMeZvk8zG0eVRO e8gpodp6zCaYGgE= =5B9N -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into staging machine + QOM queue, 2020-10-14 * Register some properties as class properties (Eduardo Habkost) * authz-list-file: Fix crash when filename is not set (Eduardo Habkost) * can-host-socketcan: Fix crash when 'if' option is not set (Eduardo Habkost) # gpg: Signature made Wed 14 Oct 2020 15:33:17 BST # gpg: using RSA key 5A322FD5ABC4D3DBACCFD1AA2807936F984DC5A6 # gpg: issuer "ehabkost@redhat.com" # gpg: Good signature from "Eduardo Habkost <ehabkost@redhat.com>" [full] # Primary key fingerprint: 5A32 2FD5 ABC4 D3DB ACCF D1AA 2807 936F 984D C5A6 * remotes/ehabkost/tags/machine-next-pull-request: can-host-socketcan: Fix crash when 'if' option is not set authz-list-file: Fix crash when filename is not set vhost-user: Register "chardev" as class property vga-pci: Register "big-endian-framebuffer" as class property i386: Register most CPU properties as class properties input-barrier: Register properties as class properties input-linux: Register properties as class properties rng: Register "opened" as class property rng-random: register "filename" as class property rng-egd: Register "chardev" as class property Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
e545512b5e
10 changed files with 97 additions and 93 deletions
|
@ -490,19 +490,6 @@ static void input_linux_set_grab_toggle(Object *obj, int value,
|
|||
|
||||
static void input_linux_instance_init(Object *obj)
|
||||
{
|
||||
object_property_add_str(obj, "evdev",
|
||||
input_linux_get_evdev,
|
||||
input_linux_set_evdev);
|
||||
object_property_add_bool(obj, "grab_all",
|
||||
input_linux_get_grab_all,
|
||||
input_linux_set_grab_all);
|
||||
object_property_add_bool(obj, "repeat",
|
||||
input_linux_get_repeat,
|
||||
input_linux_set_repeat);
|
||||
object_property_add_enum(obj, "grab-toggle", "GrabToggleKeys",
|
||||
&GrabToggleKeys_lookup,
|
||||
input_linux_get_grab_toggle,
|
||||
input_linux_set_grab_toggle);
|
||||
}
|
||||
|
||||
static void input_linux_class_init(ObjectClass *oc, void *data)
|
||||
|
@ -510,6 +497,20 @@ static void input_linux_class_init(ObjectClass *oc, void *data)
|
|||
UserCreatableClass *ucc = USER_CREATABLE_CLASS(oc);
|
||||
|
||||
ucc->complete = input_linux_complete;
|
||||
|
||||
object_class_property_add_str(oc, "evdev",
|
||||
input_linux_get_evdev,
|
||||
input_linux_set_evdev);
|
||||
object_class_property_add_bool(oc, "grab_all",
|
||||
input_linux_get_grab_all,
|
||||
input_linux_set_grab_all);
|
||||
object_class_property_add_bool(oc, "repeat",
|
||||
input_linux_get_repeat,
|
||||
input_linux_set_repeat);
|
||||
object_class_property_add_enum(oc, "grab-toggle", "GrabToggleKeys",
|
||||
&GrabToggleKeys_lookup,
|
||||
input_linux_get_grab_toggle,
|
||||
input_linux_set_grab_toggle);
|
||||
}
|
||||
|
||||
static const TypeInfo input_linux_info = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue