From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 6FAD42934 for ; Thu, 8 Dec 2016 08:40:09 +0100 (CET) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga105.jf.intel.com with ESMTP; 07 Dec 2016 23:40:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,318,1477983600"; d="scan'208";a="40261684" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga005.fm.intel.com with ESMTP; 07 Dec 2016 23:40:07 -0800 Received: from fmsmsx122.amr.corp.intel.com (10.18.125.37) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 7 Dec 2016 23:40:07 -0800 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx122.amr.corp.intel.com (10.18.125.37) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 7 Dec 2016 23:40:07 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.17]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.206]) with mapi id 14.03.0248.002; Thu, 8 Dec 2016 15:40:05 +0800 From: "Tan, Jianfeng" To: Yuanhan Liu CC: "dev@dpdk.org" , "stephen@networkplumber.org" Thread-Topic: [PATCH 5/5] examples/l3fwd: add parse-ptype option Thread-Index: AQHSTcPdXsrHZZFsKEGba6w7xGpJyaD9H5gAgACQtfA= Date: Thu, 8 Dec 2016 07:40:05 +0000 Message-ID: References: <1480810702-114815-1-git-send-email-jianfeng.tan@intel.com> <1480810702-114815-6-git-send-email-jianfeng.tan@intel.com> <20161208065928.GA30698@yliu-dev.sh.intel.com> In-Reply-To: <20161208065928.GA30698@yliu-dev.sh.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 5/5] examples/l3fwd: add parse-ptype option 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: Thu, 08 Dec 2016 07:40:09 -0000 > -----Original Message----- > From: Yuanhan Liu [mailto:yuanhan.liu@linux.intel.com] > Sent: Thursday, December 8, 2016 2:59 PM > To: Tan, Jianfeng > Cc: dev@dpdk.org; stephen@networkplumber.org > Subject: Re: [PATCH 5/5] examples/l3fwd: add parse-ptype option >=20 > On Sun, Dec 04, 2016 at 12:18:22AM +0000, Jianfeng Tan wrote: > > To support those devices that do not provide packet type info when > > receiving packets, add a new option, --parse-ptype, to analyze > > packet type in the Rx callback. >=20 > A quick question: does this patch have anything to do with the virtio > interrupt enabling? Yes, it does as this example is used to test the functionality. But like l3= fwd example, this example depends on the ptypes to forward packets. So we n= eed to add software parser to parse ptypes like l3fwd example. Thanks, Jianfeng >=20 > --yliu