From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NSG7U-00055c-Pq for qemu-devel@nongnu.org; Tue, 05 Jan 2010 15:35:12 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NSG7Q-0004zr-N2 for qemu-devel@nongnu.org; Tue, 05 Jan 2010 15:35:12 -0500 Received: from [199.232.76.173] (port=50763 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSG7Q-0004za-Gp for qemu-devel@nongnu.org; Tue, 05 Jan 2010 15:35:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55507) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NSG7P-0003IX-Ve for qemu-devel@nongnu.org; Tue, 05 Jan 2010 15:35:08 -0500 From: Luiz Capitulino Date: Tue, 5 Jan 2010 18:34:53 -0200 Message-Id: <1262723698-23658-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH v0 0/5]: Convert pci_info() to QObject 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, mst@redhat.com Hi, This series begins complex handler conversion to QObject by converting pci_info(), which is called when "info pci" is executed in the Monitor. Please help reviewing, as this was the more complex conversion I did so far and I only ran basic tests. Two points worth noting: 1. I'm still using my old, hand crafted format for the internal documentation (a better way is coming) 2. I had to split the code which prints information about PCI bridges in a way I dislike, but this was needed to identify problems with bisect (as I couldn't test it properly) More details in the patches themselves. Thanks.