From patchwork Fri Aug 5 22:00:23 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 114678 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 123B1A00C4; Sat, 6 Aug 2022 00:00:37 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E3C6E41145; Sat, 6 Aug 2022 00:00:36 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id A2C65400D6 for ; Sat, 6 Aug 2022 00:00:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1659736834; x=1691272834; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=F6a7/2uNUV1/3Q+iATUUU91gU11ETLcnyIqs3im2YL0=; b=ElaPsk0U829kFRUsVtcigMYINVsHOSebPXYrK6otBOedjzRecG9SvJiL UYjM1twdXWwg83u0R4sybMW218ju/IcVHGXC8d6vchX4uW2+g42mB9K3k L54ntIKFtECUubuq1EqbUKnbNv/n2ZD3SeFaWa2FtrSrIsV/7Luq2tHCn cZKuViBfbBz8IXeXrNIKbWTl+BuIzTBzZSKaXzo6sDsqM353g09sduaLC XDGwr7IWPjAgAMPRDRrfHFvBo6BccriFgq2an7miQaCnESWNPQ+1+ZNVr hmmrck8fy50U5vKRMzgwtslRrf1QgJ+Tt27JzUVvninKm3sOgK/bXePG8 A==; X-IronPort-AV: E=McAfee;i="6400,9594,10430"; a="290308811" X-IronPort-AV: E=Sophos;i="5.93,216,1654585200"; d="scan'208";a="290308811" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Aug 2022 15:00:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,217,1654585200"; d="scan'208";a="693137557" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com.) ([10.237.223.157]) by FMSMGA003.fm.intel.com with ESMTP; 05 Aug 2022 15:00:33 -0700 From: Cristian Dumitrescu To: dev@dpdk.org Subject: [PATCH 04/10] port: free buffered packets on Ethernet device output port free Date: Fri, 5 Aug 2022 22:00:23 +0000 Message-Id: <20220805220029.1096212-5-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220805220029.1096212-1-cristian.dumitrescu@intel.com> References: <20220805220029.1096212-1-cristian.dumitrescu@intel.com> MIME-Version: 1.0 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 Free the buffered packets as opposed to retrying to send them when the output port is freed. Signed-off-by: Cristian Dumitrescu --- lib/port/rte_swx_port_ethdev.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/port/rte_swx_port_ethdev.c b/lib/port/rte_swx_port_ethdev.c index eae20d34ce..8a1da71003 100644 --- a/lib/port/rte_swx_port_ethdev.c +++ b/lib/port/rte_swx_port_ethdev.c @@ -371,11 +371,17 @@ static void writer_free(void *port) { struct writer *p = port; + int i; if (!p) return; - writer_flush(p); + for (i = 0; i < p->n_pkts; i++) { + struct rte_mbuf *m = p->pkts[i]; + + rte_pktmbuf_free(m); + } + free(p->pkts); free(port); }