From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH 4/5] ixgbe: rename tx queue release function for consistency Date: Thu, 23 Jul 2015 17:05:05 +0100 Message-ID: <1437667506-3890-5-git-send-email-bruce.richardson@intel.com> References: <1437667506-3890-1-git-send-email-bruce.richardson@intel.com> To: dev@dpdk.org Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 22132C3D6 for ; Thu, 23 Jul 2015 18:05:21 +0200 (CEST) In-Reply-To: <1437667506-3890-1-git-send-email-bruce.richardson@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The function inside the vector/SSE poll-mode driver for releasing the mbufs on the TX queues had the same name as another function inside the regular PMD. To keep consistency and avoid confusion, rename the vector PMD version to have a "_vec" suffix. Signed-off-by: Bruce Richardson --- drivers/net/ixgbe/ixgbe_rxtx_vec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ixgbe/ixgbe_rxtx_vec.c b/drivers/net/ixgbe/ixgbe_rxtx_vec.c index a6a506f..7d57b63 100644 --- a/drivers/net/ixgbe/ixgbe_rxtx_vec.c +++ b/drivers/net/ixgbe/ixgbe_rxtx_vec.c @@ -722,7 +722,7 @@ ixgbe_xmit_pkts_vec(void *tx_queue, struct rte_mbuf **tx_pkts, } static void __attribute__((cold)) -ixgbe_tx_queue_release_mbufs(struct ixgbe_tx_queue *txq) +ixgbe_tx_queue_release_mbufs_vec(struct ixgbe_tx_queue *txq) { unsigned i; struct ixgbe_tx_entry_v *txe; @@ -812,7 +812,7 @@ ixgbe_reset_tx_queue(struct ixgbe_tx_queue *txq) } static const struct ixgbe_txq_ops vec_txq_ops = { - .release_mbufs = ixgbe_tx_queue_release_mbufs, + .release_mbufs = ixgbe_tx_queue_release_mbufs_vec, .free_swring = ixgbe_tx_free_swring, .reset = ixgbe_reset_tx_queue, }; -- 1.8.3.1