From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 592952965 for ; Mon, 22 Feb 2016 16:34:24 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP; 22 Feb 2016 07:34:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,485,1449561600"; d="scan'208";a="657188810" Received: from irsmsx104.ger.corp.intel.com ([163.33.3.159]) by FMSMGA003.fm.intel.com with ESMTP; 22 Feb 2016 07:34:22 -0800 Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by IRSMSX104.ger.corp.intel.com (163.33.3.159) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 22 Feb 2016 15:34:21 +0000 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.30]) by irsmsx155.ger.corp.intel.com ([169.254.14.217]) with mapi id 14.03.0248.002; Mon, 22 Feb 2016 15:34:21 +0000 From: "Mcnamara, John" To: "Wu, Jingjing" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH] doc: add doc for i40e pmd driver introduction Thread-Index: AQHRWakN1qVwd+zYUE+AZ2DnYGvdB584WF8g Date: Mon, 22 Feb 2016 15:34:20 +0000 Message-ID: References: <1453971042-16925-1-git-send-email-jingjing.wu@intel.com> In-Reply-To: <1453971042-16925-1-git-send-email-jingjing.wu@intel.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMGY2ZDQ4YTYtNzg0YS00NmQzLWIyNzktYzA4YTcyOWU2YWIxIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkxseXI3RWluVTZoZ1wvVFBiZ05yY0FWbmxXQzAzQlkyQ2tEK3pFeEVEN2EwPSJ9 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] doc: add doc for i40e pmd driver introduction 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, 22 Feb 2016 15:34:24 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jingjing Wu > Sent: Thursday, January 28, 2016 8:51 AM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH] doc: add doc for i40e pmd driver introduction >=20 > A new doc "i40e.rst" is added to introduce i40e pmd driver. >=20 > Signed-off-by: Jingjing Wu Thanks for the new doc. Some minor comments below. > + > +- Multiple queues for TX and RX > +- Receiver Side Steering (RSS) s/Steering/Scaling > +- MAC/VLAN filtering > +- Packet type information > +- flow director > +- cloud filter Capitalize these for consistency. > + ./app/testpmd -c ffff -n 4 -- -i --disable-rss --pkt-filter- > mode=3Dperfect --rxq=3D8 --txq=3D8 --nb-cores=3D8 --nb-ports=3D1 > + [...] Long code lines like this don't wrap in the PDF output and should be restri= cted to 80 characters. You can add a commandline continuation like the following: .. code-block:: console ./app/testpmd -c ffff -n 4 -- -i --disable-rss --pkt-filter-mode=3Dperfe= ct \ --rxq=3D8 --txq=3D8 --nb-cores=3D8 --nb-ports=3D1 Same for the next examples. > + MODE: PERFECT > + SUPPORTED FLOW TYPE: ipv4-frag ipv4-tcp ipv4-udp ipv4-sctp ipv4- > other ipv6-frag ipv6-tcp ipv6-udp ipv6-sctp ipv6-other l2_payload > + FLEX PAYLOAD INFO: Some of this information could also be wrapped/omitted while retaining the same information. I'll send you on an example. John. --=20