On 10/23/20 12:31 AM, Eduardo Habkost wrote:
Based-on: 20201009160122.1662082-1-ehabk...@redhat.com
Git branch: https://github.com/ehabkost/qemu work/qom-bool-ptr-prop

This series introduces a helper to make it easier to register
simple boolan QOM properties.  It will be useful for simplifying
existing property code in some types that can't use
QDEV_PROP_BOOL yet (because they are not TYPE_DEVICE subtypes).
As examples, some TYPE_MACHINE and TYPE_QAUTHZ_LIST_FILE
properties are converted to use the new functions.

This depends on the QOM property code cleanup that was also
submitted as part of:

   
https://lore.kernel.org/qemu-devel/20201009160122.1662082-1-ehabk...@redhat.com
   Subject: [PATCH 00/12] qom: Make all -object types use only class properties<

Eduardo Habkost (4):
   qom: object*_property_add_bool_ptr() functions
   autz/listfile: Use object_class_property_add_bool_ptr()
   machine: Use object_class_property_add_bool_ptr() when possible
   pc: Use object_class_property_add_bool_ptr()

  include/qom/object.h | 23 +++++++++++++
  authz/listfile.c     | 27 ++-------------
  hw/core/machine.c    | 78 ++++++++------------------------------------
  hw/i386/pc.c         | 57 +++++---------------------------
  qom/object.c         | 31 ++++++++++++++++++
  5 files changed, 79 insertions(+), 137 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com>


Reply via email to