From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MPEFj-0002rK-37 for qemu-devel@nongnu.org; Fri, 10 Jul 2009 07:26:55 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MPEFV-0002VH-JF for qemu-devel@nongnu.org; Fri, 10 Jul 2009 07:26:46 -0400 Received: from [199.232.76.173] (port=37957 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MPEFV-0002Ul-FU for qemu-devel@nongnu.org; Fri, 10 Jul 2009 07:26:41 -0400 Received: from mx2.redhat.com ([66.187.237.31]:38372) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MPEFU-0005dt-QD for qemu-devel@nongnu.org; Fri, 10 Jul 2009 07:26:41 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n6ABQemc030045 for ; Fri, 10 Jul 2009 07:26:40 -0400 From: Gerd Hoffmann Date: Fri, 10 Jul 2009 13:26:18 +0200 Message-Id: <1247225179-5495-13-git-send-email-kraxel@redhat.com> In-Reply-To: <1247225179-5495-1-git-send-email-kraxel@redhat.com> References: <1247225179-5495-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 12/13] qdev: add id= support for pci nics. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/pci.c | 2 ++ net.c | 5 ++++- net.h | 1 + 3 files changed, 7 insertions(+), 1 deletions(-) diff --git a/hw/pci.c b/hw/pci.c index a8e7c78..ae24402 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -820,6 +820,8 @@ PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model, for (i = 0; pci_nic_models[i]; i++) { if (strcmp(nd->model, pci_nic_models[i]) == 0) { dev = pci_create(pci_nic_names[i], devaddr); + if (nd->id) + snprintf(dev->id, sizeof(dev->id), "%s", nd->id); dev->nd = nd; qdev_init(dev); nd->private = dev; diff --git a/net.c b/net.c index 1507f37..ca8d232 100644 --- a/net.c +++ b/net.c @@ -2428,7 +2428,7 @@ int net_client_init(Monitor *mon, const char *device, const char *p) } if (!strcmp(device, "nic")) { static const char * const nic_params[] = { - "vlan", "name", "macaddr", "model", "addr", "vectors", NULL + "vlan", "name", "macaddr", "model", "addr", "id", "vectors", NULL }; NICInfo *nd; uint8_t *macaddr; @@ -2466,6 +2466,9 @@ int net_client_init(Monitor *mon, const char *device, const char *p) if (get_param_value(buf, sizeof(buf), "addr", p)) { nd->devaddr = strdup(buf); } + if (get_param_value(buf, sizeof(buf), "id", p)) { + nd->id = strdup(buf); + } nd->nvectors = NIC_NVECTORS_UNSPECIFIED; if (get_param_value(buf, sizeof(buf), "vectors", p)) { char *endptr; diff --git a/net.h b/net.h index 6026e10..188fa39 100644 --- a/net.h +++ b/net.h @@ -95,6 +95,7 @@ struct NICInfo { const char *model; const char *name; const char *devaddr; + const char *id; VLANState *vlan; VLANClientState *vc; void *private; -- 1.6.2.5