From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0AAF2440F2; Tue, 28 May 2024 10:19:00 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7FFCC40E8A; Tue, 28 May 2024 10:18:04 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.13]) by mails.dpdk.org (Postfix) with ESMTP id EFE25406B6 for ; Tue, 28 May 2024 10:17:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1716884279; x=1748420279; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=VaVD9XZ+0AYIfU6Hy/t+YGor+jzL/AuKA+sAP2eTwYA=; b=PXzMA6yNSTJwFPE45oji0fEXse1vCP1+RXT4dpUn+Ov/XBve65PssAl4 qqzZw0Rzjb++9DyXaNrTRg7cWmkqRYkT3bZLPZ+qHMxiFBiFxr2r92/MM yqo+9LyxH6c15e0ghgYbr8MJ5qJIEGB1RyKIqR2DM9wGwbjZ3/63iLiO5 n0MBdVzJyX/te4F1nYRlAu6Xel0bJXt4cpPzUMN4qstDvDEmc4ygYWR4n c9zqj+wiX6ht/oMGUni9ns4fBtR91HSr/SZAQp/eVlS8yV1gObJmCiy9X y1r3MSGG8yz7YBsMlddExH9Rl0MmeyZ4gFRtBw2lyuQciv/WxjxMR1ngJ w==; X-CSE-ConnectionGUID: O+dFD9a8TQGmn/fZWYPmmQ== X-CSE-MsgGUID: RKeGoq4URsuPBEs0aHJ5TA== X-IronPort-AV: E=McAfee;i="6600,9927,11085"; a="24341029" X-IronPort-AV: E=Sophos;i="6.08,194,1712646000"; d="scan'208";a="24341029" Received: from fmviesa001.fm.intel.com ([10.60.135.141]) by orvoesa105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 May 2024 01:17:59 -0700 X-CSE-ConnectionGUID: FYSH2EtWQ4+12hkY7Gy2qA== X-CSE-MsgGUID: DJaeWrrbROiZerGeyXdMAA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,194,1712646000"; d="scan'208";a="66199157" Received: from unknown (HELO npf-hyd-clx-03..) ([10.145.170.182]) by fmviesa001.fm.intel.com with ESMTP; 28 May 2024 01:17:57 -0700 From: Soumyadeep Hore To: jingjing.wu@intel.com Cc: dev@dpdk.org Subject: [PATCH 24/25] net/idpf: updating idpf vc queue switch in idpf Date: Tue, 28 May 2024 07:36:29 +0000 Message-ID: <20240528073630.867131-5-soumyadeep.hore@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240528073630.867131-1-soumyadeep.hore@intel.com> References: <20240528073630.867131-1-soumyadeep.hore@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org unint32_t type has been introduced in the function idpf_vc_queue_switch(). This helps in providing right queue type while calling the function. Signed-off-by: Soumyadeep Hore --- drivers/net/idpf/idpf_rxtx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/idpf/idpf_rxtx.c b/drivers/net/idpf/idpf_rxtx.c index 64f2235580..61d6a0b42c 100644 --- a/drivers/net/idpf/idpf_rxtx.c +++ b/drivers/net/idpf/idpf_rxtx.c @@ -595,7 +595,7 @@ idpf_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id) } /* Ready to switch the queue on */ - err = idpf_vc_queue_switch(vport, rx_queue_id, true, true); + err = idpf_vc_queue_switch(vport, rx_queue_id, true, true, VIRTCHNL2_QUEUE_TYPE_RX); if (err != 0) { PMD_DRV_LOG(ERR, "Failed to switch RX queue %u on", rx_queue_id); @@ -646,7 +646,7 @@ idpf_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id) } /* Ready to switch the queue on */ - err = idpf_vc_queue_switch(vport, tx_queue_id, false, true); + err = idpf_vc_queue_switch(vport, tx_queue_id, false, true, VIRTCHNL2_QUEUE_TYPE_TX); if (err != 0) { PMD_DRV_LOG(ERR, "Failed to switch TX queue %u on", tx_queue_id); @@ -669,7 +669,7 @@ idpf_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id) if (rx_queue_id >= dev->data->nb_rx_queues) return -EINVAL; - err = idpf_vc_queue_switch(vport, rx_queue_id, true, false); + err = idpf_vc_queue_switch(vport, rx_queue_id, true, false, VIRTCHNL2_QUEUE_TYPE_RX); if (err != 0) { PMD_DRV_LOG(ERR, "Failed to switch RX queue %u off", rx_queue_id); @@ -701,7 +701,7 @@ idpf_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id) if (tx_queue_id >= dev->data->nb_tx_queues) return -EINVAL; - err = idpf_vc_queue_switch(vport, tx_queue_id, false, false); + err = idpf_vc_queue_switch(vport, tx_queue_id, false, false, VIRTCHNL2_QUEUE_TYPE_TX); if (err != 0) { PMD_DRV_LOG(ERR, "Failed to switch TX queue %u off", tx_queue_id); -- 2.43.0