From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <pablo.de.lara.guarch@intel.com>
Received: from mga11.intel.com (mga11.intel.com [192.55.52.93])
 by dpdk.org (Postfix) with ESMTP id 6504AC3EA
 for <dev@dpdk.org>; Fri, 24 Jul 2015 02:28:56 +0200 (CEST)
Received: from fmsmga002.fm.intel.com ([10.253.24.26])
 by fmsmga102.fm.intel.com with ESMTP; 23 Jul 2015 17:28:55 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.15,534,1432623600"; d="scan'208";a="768606790"
Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155])
 by fmsmga002.fm.intel.com with ESMTP; 23 Jul 2015 17:28:54 -0700
Received: from irsmsx108.ger.corp.intel.com ([169.254.11.22]) by
 IRSMSX102.ger.corp.intel.com ([169.254.2.158]) with mapi id 14.03.0224.002;
 Fri, 24 Jul 2015 01:28:54 +0100
From: "De Lara Guarch, Pablo" <pablo.de.lara.guarch@intel.com>
To: "Qiu, Michael" <michael.qiu@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Thread-Topic: [dpdk-dev] [PATCH] examples/l3fwd: increase lookup burst size
 to 8
Thread-Index: AQHQxWJr2vJInMqfhk6iAZytaKkUPp3pPayAgACF4gA=
Date: Fri, 24 Jul 2015 00:28:53 +0000
Message-ID: <E115CCD9D858EF4F90C690B0DCB4D8973C7D3BB4@IRSMSX108.ger.corp.intel.com>
References: <1437667927-18113-1-git-send-email-pablo.de.lara.guarch@intel.com>
 <533710CFB86FA344BFBF2D6802E60286046ED558@SHSMSX101.ccr.corp.intel.com>
In-Reply-To: <533710CFB86FA344BFBF2D6802E60286046ED558@SHSMSX101.ccr.corp.intel.com>
Accept-Language: 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] examples/l3fwd: increase lookup burst size
 to 8
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 24 Jul 2015 00:28:56 -0000

Hi Michael,

> -----Original Message-----
> From: Qiu, Michael
> Sent: Thursday, July 23, 2015 6:26 PM
> To: De Lara Guarch, Pablo; dev@dpdk.org
> Subject: RE: [dpdk-dev] [PATCH] examples/l3fwd: increase lookup burst siz=
e
> to 8
>=20
> Hi, Pablo
>=20
> Is there any performance data for this change?

With this change, performance increases around 12% compared to the version
before the patch.

Thanks,
Pablo

>=20
> Thanks,
> Michael
>=20
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pablo de Lara
> Sent: Thursday, July 23, 2015 9:12 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] examples/l3fwd: increase lookup burst size to=
 8
>=20
> With the new hash implementation, the minimum lookup burst size to get
> good performance is 8, since its internal pipeline consists of 4 stages o=
f 2
> entries each, so to avoid duplication, burst size should be 8 or more ent=
ries.
>=20
> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>