From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from keithw-W2600CR.windriver.com (97-94-195-106.dhcp.ftwo.tx.charter.com [97.94.195.106]) by dpdk.org (Postfix) with ESMTP id 1F9F97F21 for ; Thu, 9 Oct 2014 21:55:09 +0200 (CEST) Received: from keithw-W2600CR.windriver.com (localhost.localdomain [127.0.0.1]) by keithw-W2600CR.windriver.com (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id s99K2S9p068917 for ; Thu, 9 Oct 2014 15:02:28 -0500 Received: (from keithw@localhost) by keithw-W2600CR.windriver.com (8.14.4/8.14.4/Submit) id s99K2SHS068916 for dev@dpdk.org; Thu, 9 Oct 2014 15:02:28 -0500 From: Keith Wiles To: dev@dpdk.org Date: Thu, 9 Oct 2014 15:02:28 -0500 Message-Id: <1412884948-68868-1-git-send-email-keith.wiles@windriver.com> X-Mailer: git-send-email 2.1.0 Subject: [dpdk-dev] [PATCH v2] __mempool_get_bulk: remove useless variable 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, 09 Oct 2014 19:55:10 -0000 Remove n_orig variable as it is not required. Signed-off-by: Keith Wiles --- lib/librte_mempool/rte_mempool.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/librte_mempool/rte_mempool.h b/lib/librte_mempool/rte_mempool.h index 95f19f9..c602cbc 100644 --- a/lib/librte_mempool/rte_mempool.h +++ b/lib/librte_mempool/rte_mempool.h @@ -945,9 +945,6 @@ __mempool_get_bulk(struct rte_mempool *mp, void **obj_table, unsigned n, int is_mc) { int ret; -#ifdef RTE_LIBRTE_MEMPOOL_DEBUG - unsigned n_orig = n; -#endif #if RTE_MEMPOOL_CACHE_MAX_SIZE > 0 struct rte_mempool_cache *cache; uint32_t index, len; @@ -988,7 +985,7 @@ __mempool_get_bulk(struct rte_mempool *mp, void **obj_table, cache->len -= n; - __MEMPOOL_STAT_ADD(mp, get_success, n_orig); + __MEMPOOL_STAT_ADD(mp, get_success, n); return 0; @@ -1002,9 +999,9 @@ ring_dequeue: ret = rte_ring_sc_dequeue_bulk(mp->ring, obj_table, n); if (ret < 0) - __MEMPOOL_STAT_ADD(mp, get_fail, n_orig); + __MEMPOOL_STAT_ADD(mp, get_fail, n); else - __MEMPOOL_STAT_ADD(mp, get_success, n_orig); + __MEMPOOL_STAT_ADD(mp, get_success, n); return ret; } -- 2.1.0