From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvKNP-0001O4-KJ for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:27:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvKNM-0001Jr-0J for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:27:31 -0400 Received: from [199.232.76.173] (port=45739 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvKNL-0001Jn-Pa for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:27:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:12432) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvKNI-00072V-UJ for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:27:25 -0400 From: Luiz Capitulino Date: Tue, 6 Oct 2009 21:26:57 -0300 Message-Id: <1254875232-25012-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH v2 00/15]: Initial QObject conversion List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, avi@redhat.com Hi there, Here goes another new version of my initial QObject conversion work. I'm taking a different approach in this series. Instead of introducing the error handling code along with the initial conversions, I'm only doing the QObject conversion part. This means that error information is still directly printed by the command handler, but 'regular' data is returned to the Monitor in the form of QObjects. This approach makes the series easier to: 1. Review, as we can concentrate only on the QObject conversion 2. Convert & merge, as we can do only one thing at a time 3. Test, for the same reason as in '2' The disadvantage is that we will need a 'second pass conversion' to convert the error handling part, which can only be done when I finish the QError data type I'm writing. This is not a big issue anyway, as only two of nine conversions in this series can fail. The following handlers are being converted: do_quit(), do_stop(), do_system_reset(), do_system_powerdown(), do_cont(), do_balloon(), do_info_version(), do_info_balloon(), do_info_cpus(). Also, I'm introducing QList as it's needed by the do_info_cpus() conversion. I've done a full build of this series on F11 (x86_64) and Debian Lenny (i386), manually tested all conversions and some other commands. Changelog: V1 -> V2: - Drop error handling code - More handlers converted V0 -> V1: - Introduced MonitorError - More handlers converted - Improved patches descriptions - Minor changes diffstat: Makefile | 3 +- check-qlist.c | 153 +++++++++++++ configure | 2 +- monitor.c | 599 +++++++++++++++++++++++++++++++++++++++--------- qemu-monitor.hx | 674 ++++++++++++++++++++++++++++++++++++++++++++---------- qlist.c | 100 ++++++++ qlist.h | 27 +++ qobject.h | 8 +- 8 files changed, 1322 insertions(+), 244 deletions(-)