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 B3977B0A8 for ; Thu, 26 Jun 2014 08:53:38 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 25 Jun 2014 23:53:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,548,1400050800"; d="scan'208";a="450161235" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by azsmga001.ch.intel.com with ESMTP; 25 Jun 2014 23:53:51 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id s5Q6rjZJ001445; Thu, 26 Jun 2014 14:53:49 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s5Q6rfms017064; Thu, 26 Jun 2014 14:53:43 +0800 Received: (from cliang18@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id s5Q6rde6017060; Thu, 26 Jun 2014 14:53:39 +0800 From: Cunming Liang To: dev@dpdk.org Date: Thu, 26 Jun 2014 14:53:29 +0800 Message-Id: X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH 0/5] ixgbe: vPMD compiling issue and testpmd default value change 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: Thu, 26 Jun 2014 06:53:39 -0000 This patch is used to fix several issue found in R1.7 RC1. 1. There's compiling error when change some defalut config in common_linuxapp. They are RTE_LIBRTE_IXGBE_RX_ALLOC_BULK_ALLOC=n RTE_LIBRTE_IEEE1588=y 2. Renaming RTE_IXGBE_RX_OLFLAGS_DISABLE to RTE_IXGBE_RX_OLFLAGS_ENABLE This avoid making user confused by defalut setting 'not DISABLE'. 3. Set testpmd defalut burst size to 32 As vPMD RX only accept no less than 32, this avoid testpmd automation pass. 4. Change testpmd mbuf cache and rx/tx threshold defalut value. It makes easier to get better performance with vPMD. *** BLURB HERE *** Cunming Liang (5): ixgbe: avoid compiler error when RTE_IXGBE_INC_VECTOR=y and RTE_LIBRTE_IXGBE_RX_ALLOC_BULK_ALLOC=n ixgbe: fix vpmd compiling error when RTE_LIBRTE_IEEE1588=y ixgbe: not 'DISABLE' may make confuse, change RTE_IXGBE_RX_OLFLAGS_DISABLE=n to RTE_IXGBE_RX_OLFLAGS_ENABLE=y ixgbe: set default burst size 32 in testpmd testpmd: change some of testpmd default parameter to well tuned value app/test-pmd/testpmd.c | 6 +++--- app/test-pmd/testpmd.h | 4 +++- config/common_linuxapp | 2 +- lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 3 ++- lib/librte_pmd_ixgbe/ixgbe_rxtx.h | 2 ++ lib/librte_pmd_ixgbe/ixgbe_rxtx_vec.c | 5 +++-- 6 files changed, 14 insertions(+), 8 deletions(-) -- 1.8.1.4