From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 424F25A44 for ; Mon, 28 Sep 2015 15:04:03 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP; 28 Sep 2015 06:04:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,602,1437462000"; d="scan'208";a="778950296" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 28 Sep 2015 06:04:01 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t8SD41Tc007359; Mon, 28 Sep 2015 14:04:01 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id t8SD40Ah018793; Mon, 28 Sep 2015 14:04:00 +0100 Received: (from bairemon@localhost) by sivswdev01.ir.intel.com with id t8SD406Z018789; Mon, 28 Sep 2015 14:04:00 +0100 From: Bernard Iremonger To: dev@dpdk.org Date: Mon, 28 Sep 2015 14:03:34 +0100 Message-Id: <1443445418-18498-17-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1443445418-18498-1-git-send-email-bernard.iremonger@intel.com> References: <1443445418-18498-1-git-send-email-bernard.iremonger@intel.com> Subject: [dpdk-dev] [PATCH 16/20] cxgbe: copy pci device info to eth_dev data X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 13:04:03 -0000 Signed-off-by: Bernard Iremonger --- drivers/net/cxgbe/cxgbe_ethdev.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/net/cxgbe/cxgbe_ethdev.c b/drivers/net/cxgbe/cxgbe_ethdev.c index 478051a..2fa2cc3 100644 --- a/drivers/net/cxgbe/cxgbe_ethdev.c +++ b/drivers/net/cxgbe/cxgbe_ethdev.c @@ -2,6 +2,8 @@ * BSD LICENSE * * Copyright(c) 2014-2015 Chelsio Communications. + * Copyright(c) 2015 Intel Corporation. + * * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -744,6 +746,9 @@ static int eth_cxgbe_dev_init(struct rte_eth_dev *eth_dev) return 0; pci_dev = eth_dev->pci_dev; + + rte_eth_copy_dev_info(eth_dev, pci_dev); + snprintf(name, sizeof(name), "cxgbeadapter%d", eth_dev->data->port_id); adapter = rte_zmalloc(name, sizeof(*adapter), 0); if (!adapter) -- 1.9.1