From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 3D96D20F for ; Tue, 3 Jan 2017 07:15:43 +0100 (CET) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga104.fm.intel.com with ESMTP; 02 Jan 2017 22:15:37 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,451,1477983600"; d="scan'208";a="45242126" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga004.jf.intel.com with ESMTP; 02 Jan 2017 22:15:37 -0800 Received: from fmsmsx113.amr.corp.intel.com (10.18.116.7) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 2 Jan 2017 22:15:36 -0800 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX113.amr.corp.intel.com (10.18.116.7) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 2 Jan 2017 22:15:36 -0800 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.88]) by SHSMSX104.ccr.corp.intel.com ([10.239.4.70]) with mapi id 14.03.0248.002; Tue, 3 Jan 2017 14:15:34 +0800 From: "Lu, Wenzhuo" To: "Bie, Tiwei" , "dev@dpdk.org" CC: "adrien.mazarguil@6wind.com" , "Mcnamara, John" , "olivier.matz@6wind.com" , "thomas.monjalon@6wind.com" , "Ananyev, Konstantin" , "Zhang, Helin" , "Dai, Wei" , "Wang, Xiao W" Thread-Topic: [PATCH v4 0/7] Add MACsec offload support for ixgbe Thread-Index: AQHSYSG0Rw9gZgXAcUueFAh9WdZyZKEmTUEA Date: Tue, 3 Jan 2017 06:15:33 +0000 Message-ID: <6A0DE07E22DDAD4C9103DF62FEBC09093B5550FA@shsmsx102.ccr.corp.intel.com> References: <1482677880-117158-1-git-send-email-tiwei.bie@intel.com> <1482939691-34855-1-git-send-email-tiwei.bie@intel.com> In-Reply-To: <1482939691-34855-1-git-send-email-tiwei.bie@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/7] Add MACsec offload support for ixgbe X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jan 2017 06:15:44 -0000 Hi, > -----Original Message----- > From: Bie, Tiwei > Sent: Wednesday, December 28, 2016 11:41 PM > To: dev@dpdk.org > Cc: adrien.mazarguil@6wind.com; Lu, Wenzhuo; Mcnamara, John; > olivier.matz@6wind.com; thomas.monjalon@6wind.com; Ananyev, Konstantin; > Zhang, Helin; Dai, Wei; Wang, Xiao W > Subject: [PATCH v4 0/7] Add MACsec offload support for ixgbe >=20 > This patch set adds the MACsec offload support for ixgbe. > The testpmd is also updated to support MACsec cmds. >=20 > v2: > - Update the documents for testpmd; > - Update the release notes; > - Reuse the functions provided by base code; >=20 > v3: > - Add the missing parts of MACsec mbuf flag and reorganize the patch set; > - Add an ethdev event type for MACsec; > - Advertise the MACsec offload capabilities based on the mac type; > - Minor fixes and improvements; >=20 > v4: > - Reserve bits in mbuf and ethdev for PMD specific API; > - Use the reserved bits in PMD specific API; >=20 > Tiwei Bie (7): > mbuf: reserve a Tx offload flag for PMD-specific API > ethdev: reserve an event type for PMD-specific API > ethdev: reserve capability flags for PMD-specific API > net/ixgbe: add MACsec offload support > app/testpmd: add MACsec offload commands > doc: add ixgbe specific APIs > doc: update the release notes for the reserved flags >=20 > app/test-pmd/cmdline.c | 389 ++++++++++++++++++++++ > app/test-pmd/macfwd.c | 7 + > app/test-pmd/macswap.c | 7 + > app/test-pmd/testpmd.h | 2 + > app/test-pmd/txonly.c | 7 + > doc/guides/rel_notes/release_17_02.rst | 18 ++ > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 32 ++ > drivers/net/ixgbe/ixgbe_ethdev.c | 481 ++++++++++++++++++++++= +++++- > drivers/net/ixgbe/ixgbe_ethdev.h | 45 +++ > drivers/net/ixgbe/ixgbe_rxtx.c | 5 + > drivers/net/ixgbe/rte_pmd_ixgbe.h | 122 +++++++ > drivers/net/ixgbe/rte_pmd_ixgbe_version.map | 11 + > lib/librte_ether/rte_ethdev.h | 4 + > lib/librte_mbuf/rte_mbuf.c | 2 + > lib/librte_mbuf/rte_mbuf.h | 5 + > 15 files changed, 1132 insertions(+), 5 deletions(-) >=20 > -- > 2.7.4 Series Acked-by: Wenzhuo Lu