From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NY4Nc-0005bG-VI for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:15:52 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NY4NY-0005WA-TL for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:15:52 -0500 Received: from [199.232.76.173] (port=44114 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NY4NY-0005Vp-JV for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:15:48 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48597) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NY4NY-0003RJ-64 for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:15:48 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0LLFlaf029714 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 21 Jan 2010 16:15:47 -0500 Received: from localhost (vpn-9-176.rdu.redhat.com [10.11.9.176]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0LLFi0o029004 for ; Thu, 21 Jan 2010 16:15:45 -0500 From: Luiz Capitulino Date: Thu, 21 Jan 2010 19:15:37 -0200 Message-Id: <1264108541-4071-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH v3 0/4]: 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 Hi, This new version fixes the printing of PCI bridge information, as I was able to test it after some help from Blue Swirl. Only the printing of PCI bridge attached devices remains untested, but according to Blue Swirl attaching devices to it is broken so I don't think it matters much. changelog --------- V2 -> V3 - Fix issues with the printing of PCI bridge info - Merge PCI bridge info patch to the main conversion one - Clarify changelog V1 -> V2 - Make class_info's key 'desc' optional - Better indentation - Doc fixes V0 -> V1 - Coding style fixes - Make 'BAR' and 'IRQ' keys lowercase - Add 'irq' key to the documentation Thanks.