From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <kevin.laatz@intel.com>
Received: from mga02.intel.com (mga02.intel.com [134.134.136.20])
 by dpdk.org (Postfix) with ESMTP id 8B2981200A
 for <dev@dpdk.org>; Fri, 12 Jan 2018 11:48:56 +0100 (CET)
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from orsmga007.jf.intel.com ([10.7.209.58])
 by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 12 Jan 2018 02:48:55 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.46,348,1511856000"; 
   d="scan'208";a="9857003"
Received: from silpixa00399499.ir.intel.com (HELO
 silpixa00399499.ger.corp.intel.com) ([10.237.222.68])
 by orsmga007.jf.intel.com with ESMTP; 12 Jan 2018 02:48:53 -0800
From: Kevin Laatz <kevin.laatz@intel.com>
To: dev@dpdk.org
Cc: Kevin Laatz <kevin.laatz@intel.com>, ferruh.yigit@intel.com,
 declan.doherty@intel.com
Date: Fri, 12 Jan 2018 10:48:46 +0000
Message-Id: <20180112104846.47396-4-kevin.laatz@intel.com>
X-Mailer: git-send-email 2.9.4
In-Reply-To: <20180112104846.47396-1-kevin.laatz@intel.com>
References: <20180112103053.47110-1-kevin.laatz@intel.com>
 <20180112104846.47396-1-kevin.laatz@intel.com>
Subject: [dpdk-dev] [PATCH v2 3/3] test: increase rx and tx default ring
	sizes
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://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: <https://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 12 Jan 2018 10:48:57 -0000

Increase the default RX/TX ring sizes to 1024/1024 to
accommodate for NICs with higher throughput (25G, 40G etc)

Signed-off-by: Kevin Laatz <kevin.laatz@intel.com>

---
v2:
    fixed typo in commit message

Cc: ferruh.yigit@intel.com
Cc: declan.doherty@intel.com
---
 test/test/test_kni.c                | 4 ++--
 test/test/test_link_bonding.c       | 4 ++--
 test/test/test_link_bonding_mode4.c | 4 ++--
 test/test/test_pmd_perf.c           | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/test/test/test_kni.c b/test/test/test_kni.c
index 539d231..f6fb1a2 100644
--- a/test/test/test_kni.c
+++ b/test/test/test_kni.c
@@ -23,8 +23,8 @@
 #define PKT_BURST_SZ     32
 #define MEMPOOL_CACHE_SZ PKT_BURST_SZ
 #define SOCKET           0
-#define NB_RXD           128
-#define NB_TXD           512
+#define NB_RXD           1024
+#define NB_TXD           1024
 #define KNI_TIMEOUT_MS   5000 /* ms */
 
 #define IFCONFIG      "/sbin/ifconfig "
diff --git a/test/test/test_link_bonding.c b/test/test/test_link_bonding.c
index 64e24a8..588acc8 100644
--- a/test/test/test_link_bonding.c
+++ b/test/test/test_link_bonding.c
@@ -30,13 +30,13 @@
 
 #define TEST_MAX_NUMBER_OF_PORTS (6)
 
-#define RX_RING_SIZE 128
+#define RX_RING_SIZE 1024
 #define RX_FREE_THRESH 32
 #define RX_PTHRESH 8
 #define RX_HTHRESH 8
 #define RX_WTHRESH 0
 
-#define TX_RING_SIZE 512
+#define TX_RING_SIZE 1024
 #define TX_FREE_THRESH 32
 #define TX_PTHRESH 32
 #define TX_HTHRESH 0
diff --git a/test/test/test_link_bonding_mode4.c b/test/test/test_link_bonding_mode4.c
index fd2e920..426877a 100644
--- a/test/test/test_link_bonding_mode4.c
+++ b/test/test/test_link_bonding_mode4.c
@@ -33,8 +33,8 @@
 
 #define SLAVE_COUNT (4)
 
-#define RX_RING_SIZE 128
-#define TX_RING_SIZE 512
+#define RX_RING_SIZE 1024
+#define TX_RING_SIZE 1024
 
 #define MBUF_CACHE_SIZE         (250)
 #define BURST_SIZE              (32)
diff --git a/test/test/test_pmd_perf.c b/test/test/test_pmd_perf.c
index 7399294..ee148bc 100644
--- a/test/test/test_pmd_perf.c
+++ b/test/test/test_pmd_perf.c
@@ -19,8 +19,8 @@
 #define NB_SOCKETS                      (2)
 #define MEMPOOL_CACHE_SIZE 250
 #define MAX_PKT_BURST                   (32)
-#define RTE_TEST_RX_DESC_DEFAULT        (128)
-#define RTE_TEST_TX_DESC_DEFAULT        (512)
+#define RTE_TEST_RX_DESC_DEFAULT        (1024)
+#define RTE_TEST_TX_DESC_DEFAULT        (1024)
 #define RTE_PORT_ALL            (~(uint16_t)0x0)
 
 /* how long test would take at full line rate */
-- 
2.9.4