Re: [Qemu-devel] [PATCH v2 10/10] machine: Skip global registration for non-existing classes

2016-06-23 Thread Markus Armbruster
Eduardo Habkost writes: > On Thu, Jun 23, 2016 at 10:26:49AM +0200, Markus Armbruster wrote: >> Eduardo Habkost writes: >> >> > MachineClass::compat_props may point to class names that are not >> > compiled into the QEMU binary. Skip registering those as global >> > properties. This will allow

Re: [Qemu-devel] [PATCH v2 10/10] machine: Skip global registration for non-existing classes

2016-06-23 Thread Eduardo Habkost
On Thu, Jun 23, 2016 at 10:26:49AM +0200, Markus Armbruster wrote: > Eduardo Habkost writes: > > > MachineClass::compat_props may point to class names that are not > > compiled into the QEMU binary. Skip registering those as global > > properties. This will allow the qdev global property code to

Re: [Qemu-devel] [PATCH v2 10/10] machine: Skip global registration for non-existing classes

2016-06-23 Thread Eduardo Habkost
On Thu, Jun 23, 2016 at 10:26:49AM +0200, Markus Armbruster wrote: > Eduardo Habkost writes: > > > MachineClass::compat_props may point to class names that are not > > compiled into the QEMU binary. Skip registering those as global > > properties. This will allow the qdev global property code to

Re: [Qemu-devel] [PATCH v2 10/10] machine: Skip global registration for non-existing classes

2016-06-23 Thread Markus Armbruster
Eduardo Habkost writes: > MachineClass::compat_props may point to class names that are not > compiled into the QEMU binary. Skip registering those as global > properties. This will allow the qdev global property code to > implement stricter checks on the global property values in the > future. >

Re: [Qemu-devel] [PATCH v2 10/10] machine: Skip global registration for non-existing classes

2016-06-21 Thread Marcel Apfelbaum
On 06/20/2016 06:53 PM, Eduardo Habkost wrote: MachineClass::compat_props may point to class names that are not compiled into the QEMU binary. Skip registering those as global properties. This will allow the qdev global property code to implement stricter checks on the global property values in t

[Qemu-devel] [PATCH v2 10/10] machine: Skip global registration for non-existing classes

2016-06-20 Thread Eduardo Habkost
MachineClass::compat_props may point to class names that are not compiled into the QEMU binary. Skip registering those as global properties. This will allow the qdev global property code to implement stricter checks on the global property values in the future. Signed-off-by: Eduardo Habkost --- C