From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MR2tt-0002pU-Gu for qemu-devel@nongnu.org; Wed, 15 Jul 2009 07:43:53 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MR2to-0002kp-EN for qemu-devel@nongnu.org; Wed, 15 Jul 2009 07:43:52 -0400 Received: from [199.232.76.173] (port=56681 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MR2tn-0002ka-91 for qemu-devel@nongnu.org; Wed, 15 Jul 2009 07:43:47 -0400 Received: from mx2.redhat.com ([66.187.237.31]:36371) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MR2tm-0003A7-HS for qemu-devel@nongnu.org; Wed, 15 Jul 2009 07:43:46 -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 n6FBhkFd013589 for ; Wed, 15 Jul 2009 07:43:46 -0400 From: Gerd Hoffmann Date: Wed, 15 Jul 2009 13:43:35 +0200 Message-Id: <1247658216-511-6-git-send-email-kraxel@redhat.com> In-Reply-To: <1247658216-511-1-git-send-email-kraxel@redhat.com> References: <1247658216-511-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 5/6] 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 3232dda..79eab91 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -821,6 +821,8 @@ PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model, if (strcmp(nd->model, pci_nic_models[i]) == 0) { pci_dev = pci_create(pci_nic_names[i], devaddr); dev = &pci_dev->qdev; + if (nd->id) + dev->id = qemu_strdup(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