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 445975A84 for ; Fri, 16 Oct 2015 12:34:51 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP; 16 Oct 2015 03:34:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,688,1437462000"; d="scan'208";a="794711792" Received: from irsmsx105.ger.corp.intel.com ([163.33.3.28]) by orsmga001.jf.intel.com with ESMTP; 16 Oct 2015 03:34:49 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.138]) by irsmsx105.ger.corp.intel.com ([169.254.7.75]) with mapi id 14.03.0248.002; Fri, 16 Oct 2015 11:34:48 +0100 From: "Iremonger, Bernard" To: "Mcnamara, John" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v3 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data Thread-Index: AQHRBQq/Qr+xzV3L9EOLukdgTw4ZTJ5rMFiQgALBjyA= Date: Fri, 16 Oct 2015 10:34:47 +0000 Message-ID: <8CEF83825BEC744B83065625E567D7C219F712C2@IRSMSX108.ger.corp.intel.com> References: <1444667120-12891-1-git-send-email-bernard.iremonger@intel.com> <1444667120-12891-3-git-send-email-bernard.iremonger@intel.com> In-Reply-To: Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 02/20] librte_ether: add fields from rte_pci_driver to rte_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: Fri, 16 Oct 2015 10:34:51 -0000 Hi John, > > Subject: [dpdk-dev] [PATCH v3 02/20] librte_ether: add fields from ... > > > > lro : 1; /**< RX LRO is ON(1) / OFF(0) */ > > + uint32_t dev_flags; /**< Flags controlling handling of device. */ > > + enum rte_kernel_driver kdrv; /**< Kernel driver passthrough */ > > + int numa_node; > > + const char *drv_name; > > }; > > >=20 > Should the last two members have doxygen comments as well? >=20 Yes, I will add the following doxygen comments: int numa_node; /**< NUMA node connection */ const char *drv_name; /**< Driver name. */ Regards, Bernard.