From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49666) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WC4jm-0007X8-71 for qemu-devel@nongnu.org; Sat, 08 Feb 2014 05:02:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WC4jg-0004FL-TG for qemu-devel@nongnu.org; Sat, 08 Feb 2014 05:02:14 -0500 Received: from mail-ee0-x22f.google.com ([2a00:1450:4013:c00::22f]:33178) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WC4jg-0004Es-MF for qemu-devel@nongnu.org; Sat, 08 Feb 2014 05:02:08 -0500 Received: by mail-ee0-f47.google.com with SMTP id d49so1953482eek.20 for ; Sat, 08 Feb 2014 02:02:06 -0800 (PST) Received: from yakj.usersys.redhat.com.cz (auth47-172.fi.muni.cz. [147.251.47.172]) by mx.google.com with ESMTPSA id k41sm27156087een.19.2014.02.08.02.02.04 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 08 Feb 2014 02:02:05 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Sat, 8 Feb 2014 11:01:43 +0100 Message-Id: <1391853717-3837-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 00/14] Cleanup qdev legacy properties List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Anthony, Peter, The following changes since commit 0169c511554cb0014a00290b0d3d26c31a49818f: Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2014-01-24 15:52:44 -0800) are available in the git repository at: git://github.com/bonzini/qemu.git qdev-props for you to fetch changes up to 94fb9add077db8a8f0be3796f44785694c4686bb: qapi: refine human printing of sizes (2014-02-08 10:44:41 +0100) ---------------------------------------------------------------- Paolo Bonzini (14): qapi: add size parser to StringInputVisitor qdev: sizes are now parsed by StringInputVisitor qdev: remove legacy parsers for hex8/32/64 qdev: legacy properties are now read-only qdev: legacy properties are just strings qdev: inline qdev_prop_parse qapi: add human mode to StringOutputVisitor qdev: use human mode in "info qtree" qdev: remove most legacy printers qdev: remove hex8/32/64 property types block: handle "rechs" and "large" translation options qdev: add enum property types to QAPI schema qdev: use QAPI type names for properties qapi: refine human printing of sizes blockdev.c | 4 + hw/audio/adlib.c | 2 +- hw/audio/cs4231a.c | 2 +- hw/audio/gus.c | 2 +- hw/audio/pcspk.c | 2 +- hw/audio/sb16.c | 4 +- hw/block/fdc.c | 2 +- hw/char/debugcon.c | 4 +- hw/char/parallel.c | 2 +- hw/char/serial-isa.c | 2 +- hw/core/qdev-properties-system.c | 12 ++- hw/core/qdev-properties.c | 204 +++-------------------------------- hw/core/qdev.c | 38 +------ hw/display/g364fb.c | 2 +- hw/display/tcx.c | 4 +- hw/dma/i82374.c | 2 +- hw/dma/sun4m_iommu.c | 2 +- hw/i386/kvm/i8254.c | 8 +- hw/ide/isa.c | 4 +- hw/ide/qdev.c | 2 +- hw/intc/i8259_common.c | 6 +- hw/isa/pc87312.c | 2 +- hw/misc/applesmc.c | 2 +- hw/misc/debugexit.c | 4 +- hw/misc/eccmemctl.c | 2 +- hw/net/ne2000-isa.c | 2 +- hw/nvram/fw_cfg.c | 4 +- hw/ppc/spapr_pci.c | 16 +-- hw/scsi/megasas.c | 2 +- hw/scsi/scsi-disk.c | 6 +- hw/sd/sdhci.c | 4 +- hw/timer/i8254.c | 2 +- hw/timer/m48t59.c | 4 +- hw/timer/mc146818rtc.c | 14 +-- hw/usb/host-libusb.c | 4 +- hw/virtio/virtio-pci.c | 6 +- include/hw/block/block.h | 6 -- include/hw/qdev-core.h | 1 - include/hw/qdev-dma.h | 2 +- include/hw/qdev-properties.h | 11 -- include/qapi/string-output-visitor.h | 2 +- include/qemu-common.h | 8 -- include/qom/object.h | 3 +- qapi-schema.json | 58 ++++++++++ qapi/string-input-visitor.c | 24 +++++ qapi/string-output-visitor.c | 56 +++++++++- qdev-monitor.c | 6 +- qom/object.c | 4 +- tests/test-string-output-visitor.c | 2 +- tests/test-visitor-serialization.c | 2 +- vl.c | 22 ++-- 51 files changed, 256 insertions(+), 335 deletions(-) -- 1.8.5.3