From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [143.182.124.21]) by dpdk.org (Postfix) with ESMTP id 4DF47B0A3 for ; Wed, 11 Jun 2014 15:38:52 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 11 Jun 2014 06:39:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,458,1400050800"; d="scan'208";a="444277343" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by azsmga001.ch.intel.com with ESMTP; 11 Jun 2014 06:38:57 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s5BDcuX0015894; Wed, 11 Jun 2014 14:38:56 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id s5BDcudN014108; Wed, 11 Jun 2014 14:38:56 +0100 Received: (from kananye1@localhost) by sivswdev02.ir.intel.com with id s5BDctPu014103; Wed, 11 Jun 2014 14:38:55 +0100 From: Konstantin Ananyev To: dev@dpdk.org Date: Wed, 11 Jun 2014 14:38:44 +0100 Message-Id: <1402493926-13401-1-git-send-email-konstantin.ananyev@intel.com> X-Mailer: git-send-email 1.7.0.7 To: dev@dpdk.org Subject: [dpdk-dev] [PATCHv2 0/2] L3FWD sample optimisation 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: Wed, 11 Jun 2014 13:38:52 -0000 v2 changes: add performance data to the patch comments fix some checkpatch.pl errors/warnings Konstantin Ananyev (2): lpm: Introduce rte_lpm_lookupx4 l3fwd: reorganise and optimize l3fwd LPM code path. app/test/test_lpm.c | 70 ++++ examples/l3fwd/main.c | 471 ++++++++++++++++++++++-- lib/librte_eal/common/Makefile | 1 + lib/librte_eal/common/include/rte_common_vect.h | 93 +++++ lib/librte_lpm/rte_lpm.h | 117 ++++++ 5 files changed, 728 insertions(+), 24 deletions(-) create mode 100644 lib/librte_eal/common/include/rte_common_vect.h -- 1.8.3.1