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 4039DA0507; Wed, 27 Apr 2022 12:15:27 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6470D427FE; Wed, 27 Apr 2022 12:15:17 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id CD0DA427FB for ; Wed, 27 Apr 2022 12:15:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651054515; x=1682590515; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6n4wbEpp3sE2nwVk3NxolDarwJ8Os5IlkyW9+2iKLlQ=; b=NaXYCiqYBYEcbCnDuRHX7uYqsQ24TghJhc3MsIj1qnq7dw66sjRc/XpJ /LabOskocy4iZbW21mFDuJ45XBwdrATcBzkP3WALcWI7psIZ+Ri9Ife9V VXDjV1/MzuZ/vN3GmFp6M5cc7N8zTEWitDiW89sot7PlaA3YiE6NAmZoU ILGUXlmlrS78JPaR/+oyyTy4cM7wAD2FxFo+i4geBDvYM2v3jBFr6QrW1 VGRHEEviwtAWkH815DrD5FKzof/J4F61fCynWPVmltsw2AM36FFVWCW8r 0T1rDLRMdnpz9PEcXHc+7oah3gSTi+BeDtDeFwhOx6Er1S7F1hDA+5qVQ w==; X-IronPort-AV: E=McAfee;i="6400,9594,10329"; a="328827289" X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="328827289" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Apr 2022 03:15:14 -0700 X-IronPort-AV: E=Sophos;i="5.90,292,1643702400"; d="scan'208";a="580514576" Received: from intel-cd-odc-kevin.cd.intel.com ([10.240.178.195]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Apr 2022 03:15:12 -0700 From: Kevin Liu To: dev@dpdk.org Cc: qiming.yang@intel.com, qi.z.zhang@intel.com, stevex.yang@intel.com, Robin Zhang , Kevin Liu Subject: [PATCH v6 03/12] net/ice: cleanup Tx buffers Date: Wed, 27 Apr 2022 18:12:52 +0000 Message-Id: <20220427181301.1414196-4-kevinx.liu@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20220427181301.1414196-1-kevinx.liu@intel.com> References: <20220421111403.1334288-1-kevinx.liu@intel.com> <20220427181301.1414196-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 From: Robin Zhang Add support for ops rte_eth_tx_done_cleanup in dcf Signed-off-by: Robin Zhang Signed-off-by: Kevin Liu --- doc/guides/rel_notes/release_22_07.rst | 1 + drivers/net/ice/ice_dcf_ethdev.c | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/guides/rel_notes/release_22_07.rst b/doc/guides/rel_notes/release_22_07.rst index cc2c243e81..bbd3d296de 100644 --- a/doc/guides/rel_notes/release_22_07.rst +++ b/doc/guides/rel_notes/release_22_07.rst @@ -64,6 +64,7 @@ New Features * Added enable RSS RETA ops for DCF hardware. * Added enable RSS HASH ops for DCF hardware. + * Added cleanup Tx buffers. Removed Items ------------- diff --git a/drivers/net/ice/ice_dcf_ethdev.c b/drivers/net/ice/ice_dcf_ethdev.c index ccad7fc304..d8b5961514 100644 --- a/drivers/net/ice/ice_dcf_ethdev.c +++ b/drivers/net/ice/ice_dcf_ethdev.c @@ -1235,6 +1235,7 @@ static const struct eth_dev_ops ice_dcf_eth_dev_ops = { .reta_query = ice_dcf_dev_rss_reta_query, .rss_hash_update = ice_dcf_dev_rss_hash_update, .rss_hash_conf_get = ice_dcf_dev_rss_hash_conf_get, + .tx_done_cleanup = ice_tx_done_cleanup, }; static int -- 2.33.1