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 79362C560 for ; Tue, 28 Apr 2015 12:58:18 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 28 Apr 2015 03:58:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,663,1422950400"; d="scan'208";a="717023896" Received: from unknown ([10.237.220.106]) by fmsmga002.fm.intel.com with SMTP; 28 Apr 2015 03:58:15 -0700 Received: by (sSMTP sendmail emulation); Tue, 28 Apr 2015 11:58:14 +0025 Date: Tue, 28 Apr 2015 11:58:14 +0100 From: Bruce Richardson To: Paul Emmerich Message-ID: <20150428105814.GB7484@bricha3-MOBL3> References: <6DC6DE50-F94F-419C-98DF-3AD8DCD4F69D@net.in.tum.de> <23D2CA18-1875-4182-8DEE-9F6393011D2C@net.in.tum.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <23D2CA18-1875-4182-8DEE-9F6393011D2C@net.in.tum.de> Organization: Intel Shannon Ltd. User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] Performance regression in DPDK 1.8/2.0 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: Tue, 28 Apr 2015 10:58:18 -0000 On Tue, Apr 28, 2015 at 12:28:34AM +0200, Paul Emmerich wrote: > Let me know if you need any additional information. > I'd also be interested in the configuration that resulted in the 20% speed- > up that was mentioned in the original mbuf patch > > Paul > The speed-up would be for apps that were doing RX of scattered packets, i.e. across mbufs. Before 1.8, this was using a scalar function which was rather slow compared to the fast-path vector function. In 1.8 we introduced a new vector function which supported scattered packets - it still isn't as fast as the non-scattered packet RX function, but it was a good improvement over the older version. /Bruce