From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58724) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sd1Dk-0004s1-3q for qemu-devel@nongnu.org; Fri, 08 Jun 2012 11:35:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sd1Dh-0005Qb-Fb for qemu-devel@nongnu.org; Fri, 08 Jun 2012 11:35:27 -0400 Received: from cantor2.suse.de ([195.135.220.15]:55328 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sd1Dh-0005QH-6S for qemu-devel@nongnu.org; Fri, 08 Jun 2012 11:35:25 -0400 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Fri, 8 Jun 2012 17:35:05 +0200 Message-Id: <1339169713-31205-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL] qom-next queue, first batch: fixed-width visitors List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Jan Kiszka , Michael Roth , Luiz Capitulino , Anthony Liguori , Paolo Bonzini , Laszlo Ersek , =?UTF-8?q?Andreas=20F=C3=A4rber?= Hello Anthony, To get moving with the merge of qom-next into qemu.git, now that the Make= file PULL is in, please pull a first small batch, grouping patches directly re= lated to fixed-width visitors. Outlook: A second batch would include the QBus refactoring - still cherry-picking, reordering and re-testing. I'm preparing a two-patch realize series that could get appended to the s= econd. Still open are the static property movements and their prerequisites. CPU-related patches are split off into their own pull. Cc: Anthony Liguori Cc: Paolo Bonzini Cc: Michael Roth Cc: Laszlo Ersek Cc: Luiz Capitulino Jan, this does not include the big file movement but the largest part of = the qdev-properties.c changes and in particular the ones that affect PCI. I s= uggest that you rebase on this one and me/Paolo the remaining parts on yours. Cc: Jan Kiszka The following changes since commit fa79c914efd35cb60e0bc18512c03690c48b13= e2: Merge remote-tracking branch 'bonzini/nested-makefiles-3' into staging = (2012-06-07 17:21:40 +0800) are available in the git repository at: git://repo.or.cz/qemu/afaerber.git qom-next-1 Andreas F=C3=A4rber (1): target-i386: Use uint32 visitor for [x]level properties Michael Roth (6): qapi: Add Visitor interfaces for uint*_t and int*_t qapi: Unit tests for visitor-based serialization qapi: String visitor, use %f representation for floats qapi: Add String visitor coverage to serialization unit tests qdev: Use int32_t container for devfn property qdev: Switch property accessors to fixed-width visitor interfaces Paolo Bonzini (1): qdev: Remove PropertyInfo range checking hw/mc146818rtc.c | 7 - hw/pci.c | 2 +- hw/pci.h | 2 +- hw/qdev-addr.c | 4 +- hw/qdev-properties.c | 205 ++++------ hw/qdev.h | 4 +- qapi/qapi-visit-core.c | 139 +++++++ qapi/qapi-visit-core.h | 16 + qapi/string-output-visitor.c | 2 +- target-i386/cpu.c | 42 +-- tests/Makefile | 4 +- tests/test-string-output-visitor.c | 2 +- tests/test-visitor-serialization.c | 784 ++++++++++++++++++++++++++++++= ++++++ 13 files changed, 1041 insertions(+), 172 deletions(-) create mode 100644 tests/test-visitor-serialization.c