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 9DB5BA00C3; Thu, 21 Apr 2022 05:17:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1B7C042821; Thu, 21 Apr 2022 05:16:19 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 1A17242816 for ; Thu, 21 Apr 2022 05:16:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650510976; x=1682046976; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Kf5Du6HWCyXhdBO19SVuR2cTZb++ZkTR9FH2B2wSCyY=; b=jb3VXl/O4S6BxxL45vp2SkqfcR8yH4V7lczo/ggTAILxd/ycvdxtWTaA plhIbD9wqg/q3sITFPYO39TqDPjddvAdM5RE5kPg8VcDlq+wfj2tLgweT 947xCZIRlZqwfVb49E92HZGKk70QkLM7Q7o6FkEyGmoWGENf4MGmZJMa8 dCa/usVj/OBT5uvhO53+XAwWpQ46LG4hDXqlqLgtPYfQ5fWXonLILZ1Yw AT9ljfs1P+v0ph0vK1IP5qlTwpnPHbneUZN3Des/tI+mil0kf7ZpV1sTS KKLSOvsgk+PBq4gn+NYRkIkToPNDf+N86d9mM2rFf/eMnIM24nHOF4lzz A==; X-IronPort-AV: E=McAfee;i="6400,9594,10323"; a="244804207" X-IronPort-AV: E=Sophos;i="5.90,277,1643702400"; d="scan'208";a="244804207" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Apr 2022 20:16:15 -0700 X-IronPort-AV: E=Sophos;i="5.90,277,1643702400"; d="scan'208";a="555535490" Received: from intel-cd-odc-kevin.cd.intel.com ([10.240.178.195]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Apr 2022 20:16:13 -0700 From: Kevin Liu To: dev@dpdk.org Cc: qiming.yang@intel.com, qi.z.zhang@intel.com, stevex.yang@intel.com, Kevin Liu Subject: [PATCH v5 10/12] net/ice: support queue information getting Date: Thu, 21 Apr 2022 11:14:01 +0000 Message-Id: <20220421111403.1334288-11-kevinx.liu@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20220421111403.1334288-1-kevinx.liu@intel.com> References: <20220419154614.476154-1-kevinx.liu@intel.com> <20220421111403.1334288-1-kevinx.liu@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 Add below ops, rxq_info_get txq_info_get Signed-off-by: Kevin Liu --- drivers/net/ice/ice_dcf_ethdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ice/ice_dcf_ethdev.c b/drivers/net/ice/ice_dcf_ethdev.c index 6503700e02..9217392d04 100644 --- a/drivers/net/ice/ice_dcf_ethdev.c +++ b/drivers/net/ice/ice_dcf_ethdev.c @@ -1698,6 +1698,8 @@ static const struct eth_dev_ops ice_dcf_eth_dev_ops = { .tx_queue_start = ice_dcf_tx_queue_start, .rx_queue_stop = ice_dcf_rx_queue_stop, .tx_queue_stop = ice_dcf_tx_queue_stop, + .rxq_info_get = ice_rxq_info_get, + .txq_info_get = ice_txq_info_get, .link_update = ice_dcf_link_update, .stats_get = ice_dcf_stats_get, .stats_reset = ice_dcf_stats_reset, -- 2.33.1