From patchwork Sat Dec 26 21:11:29 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nathan Baum X-Patchwork-Id: 41837 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 7A640B7BFA for ; Sun, 27 Dec 2009 08:59:03 +1100 (EST) Received: from localhost ([127.0.0.1]:44333 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NOef6-0002xp-2V for incoming@patchwork.ozlabs.org; Sat, 26 Dec 2009 16:59:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NOe3E-0004KT-7c for qemu-devel@nongnu.org; Sat, 26 Dec 2009 16:19:52 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NOe32-0004Dx-FP for qemu-devel@nongnu.org; Sat, 26 Dec 2009 16:19:45 -0500 Received: from [199.232.76.173] (port=43624 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NOe32-0004DS-1T for qemu-devel@nongnu.org; Sat, 26 Dec 2009 16:19:40 -0500 Received: from smarthost.c4l.co.uk ([82.197.83.77]:53792) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NOe31-0005Et-By for qemu-devel@nongnu.org; Sat, 26 Dec 2009 16:19:39 -0500 Received: from [93.97.162.229] (helo=mx.parenthephobia.org.uk) by smarthost.c4l.co.uk with esmtp (Exim 4.69) (envelope-from ) id 1NOe2v-0007uM-Dd for qemu-devel@nongnu.org; Sat, 26 Dec 2009 21:19:34 +0000 Received: from athens (93-97-162-231.zone5.bethere.co.uk [93.97.162.231]) by mx.parenthephobia.org.uk (Postfix) with ESMTP id 8F7545378E for ; Sat, 26 Dec 2009 21:26:56 +0000 (GMT) Received: by athens (Postfix, from userid 1000) id CE6AC5EA92; Sat, 26 Dec 2009 21:11:41 +0000 (GMT) From: Nathan Baum To: qemu-devel@nongnu.org Date: Sat, 26 Dec 2009 21:11:29 +0000 Message-Id: <1261861899-1984-2-git-send-email-nathan@parenthephobia.org.uk> X-Mailer: git-send-email 1.6.3.3 In-Reply-To: <1261861899-1984-1-git-send-email-nathan@parenthephobia.org.uk> References: <1261861899-1984-1-git-send-email-nathan@parenthephobia.org.uk> X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [RFC, PATCH 01/11] Add info_dev function pointer for BusInfo. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This function will be called to produce bus-specific data for QMP's query-qtree command. Signed-off-by: Nathan Baum --- hw/qdev.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/qdev.h b/hw/qdev.h index bbcdba1..93467a5 100644 --- a/hw/qdev.h +++ b/hw/qdev.h @@ -43,10 +43,12 @@ struct DeviceState { }; typedef void (*bus_dev_printfn)(Monitor *mon, DeviceState *dev, int indent); +typedef QObject *(*bus_dev_infofn)(Monitor *mon, DeviceState *dev); struct BusInfo { const char *name; size_t size; bus_dev_printfn print_dev; + bus_dev_infofn info_dev; Property *props; };