From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id A79D95599 for ; Fri, 9 Sep 2016 10:49:46 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP; 09 Sep 2016 01:49:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,304,1470726000"; d="scan'208";a="876780091" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga003.jf.intel.com with ESMTP; 09 Sep 2016 01:49:45 -0700 Received: from irsmsx109.ger.corp.intel.com ([169.254.13.24]) by irsmsx110.ger.corp.intel.com ([169.254.15.113]) with mapi id 14.03.0248.002; Fri, 9 Sep 2016 09:49:43 +0100 From: "Pattan, Reshma" To: Thomas Monjalon , "Yigit, Ferruh" CC: "Iremonger, Bernard" , "Shah, Rahul R" , "Lu, Wenzhuo" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [RFC PATCH v2 0/5] add API's for VF management Thread-Index: AQHR/3m+ze63XL3XF0OD8GkkauhZV6Bw7kVQ Date: Fri, 9 Sep 2016 08:49:42 +0000 Message-ID: <3AEA2BF9852C6F48A459DA490692831F01088317@IRSMSX109.ger.corp.intel.com> References: <1471528125-26357-1-git-send-email-bernard.iremonger@intel.com> <1472202620-20487-1-git-send-email-bernard.iremonger@intel.com> In-Reply-To: <1472202620-20487-1-git-send-email-bernard.iremonger@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMDU5Y2U1YTEtNzlkOC00MWU4LWE5MjktYjE0YzZiZDlkNTg5IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6ImpuclZ0eXhTOVFSOFlDcTU2WElKYmtqK2Fyb2pcL3Y3eFJPaUl2Z2JyeDZRPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [RFC PATCH v2 0/5] add API's for VF management 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, 09 Sep 2016 08:49:47 -0000 Hi Thomas and Ferruh, Can you take a look and provide comments on ixgbe driver and ethdev change= s. Thanks, Reshma > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bernard Iremonger > Sent: Friday, August 26, 2016 10:10 AM > To: Shah, Rahul R ; Lu, Wenzhuo > ; dev@dpdk.org > Cc: Iremonger, Bernard > Subject: [dpdk-dev] [RFC PATCH v2 0/5] add API's for VF management >=20 > This RFC patchset contains new DPDK API's requested by AT&T for use with = the > Virtual Function Daemon (VFD). >=20 > The need to configure and manage VF's on a NIC has grown to the point whe= re > AT&T have devloped a DPDK based tool, VFD, to do this. >=20 > This RFC proposes to add the following API extensions to DPDK: > mailbox communication callback support > VF configuration >=20 > Nine new functions have been added to the eth_dev_ops structure. > Corresponding functions have been added to the ixgbe PMD for the Niantic = NIC. >=20 > Two new callback functions have been added. > Changes have been made to the ixgbe_rcv_msg_from_vf function to use the > callback functions. >=20 > Changes have been made to testpmd to facilitate testing of the new API's. > The testpmd documentation has been updated to document the testpmd > changes. >=20 > Note: > Adding new functions to the eth_dev_ops structure will cause an ABI break= age. >=20 > Changes in V2: > rebase to latest master branch. > fix compile error with clang. >=20 > Bernard Iremonger (5): > librte_ether: add internal callback functions > net/ixgbe: add callback to user app on VF to PF mbox msg > librte_ether: add API's for VF management > net/ixgbe: add functions for VF management > app/test_pmd: add tests for new API's >=20 > app/test-pmd/cmdline.c | 700 ++++++++++++++++++++++= ++++++ > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 68 ++- > drivers/net/ixgbe/ixgbe_ethdev.c | 179 +++++++ > drivers/net/ixgbe/ixgbe_pf.c | 39 +- > lib/librte_ether/rte_ethdev.c | 176 +++++++ > lib/librte_ether/rte_ethdev.h | 284 +++++++++++ > lib/librte_ether/rte_ether_version.map | 16 + > 7 files changed, 1455 insertions(+), 7 deletions(-) >=20 > -- > 2.9.0