From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 5296A2A1A for ; Mon, 28 Sep 2015 15:04:02 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 28 Sep 2015 06:04:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,602,1437462000"; d="scan'208";a="798818611" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.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 t8SD40QQ007353; Mon, 28 Sep 2015 14:04:00 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id t8SD40cP018644; Mon, 28 Sep 2015 14:04:00 +0100 Received: (from bairemon@localhost) by sivswdev01.ir.intel.com with id t8SD407W018640; Mon, 28 Sep 2015 14:04:00 +0100 From: Bernard Iremonger To: dev@dpdk.org Date: Mon, 28 Sep 2015 14:03:33 +0100 Message-Id: <1443445418-18498-16-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 15/20] bnx2x: 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/bnx2x/bnx2x_ethdev.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/bnx2x/bnx2x_ethdev.c b/drivers/net/bnx2x/bnx2x_ethdev.c index 09b5920..c4941d1 100644 --- a/drivers/net/bnx2x/bnx2x_ethdev.c +++ b/drivers/net/bnx2x/bnx2x_ethdev.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2013-2015 Brocade Communications Systems, Inc. + * Copyright(c) 2015 Intel Corporation. * * All rights reserved. */ @@ -419,6 +420,9 @@ bnx2x_common_dev_init(struct rte_eth_dev *eth_dev, int is_vf) eth_dev->dev_ops = is_vf ? &bnx2xvf_eth_dev_ops : &bnx2x_eth_dev_ops; pci_dev = eth_dev->pci_dev; + + rte_eth_copy_dev_info(eth_dev, pci_dev); + sc = eth_dev->data->dev_private; sc->pcie_bus = pci_dev->addr.bus; sc->pcie_device = pci_dev->addr.devid; -- 1.9.1