From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stable-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by inbox.dpdk.org (Postfix) with ESMTP id C15AAA04DD
	for <public@inbox.dpdk.org>; Thu, 19 Nov 2020 12:59:42 +0100 (CET)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id 363ACC948;
	Thu, 19 Nov 2020 12:59:28 +0100 (CET)
Received: from mga14.intel.com (mga14.intel.com [192.55.52.115])
 by dpdk.org (Postfix) with ESMTP id A1FEFC912;
 Thu, 19 Nov 2020 12:59:20 +0100 (CET)
IronPort-SDR: 2e0GIe1IaDjG4klgpeJjHwF+PgYNDvXZ+LtKUAbKdSB+iPnBS4cQjuPy0W6AbLyF+XWXmy2+7h
 Zj1VJO60tQrg==
X-IronPort-AV: E=McAfee;i="6000,8403,9809"; a="170494409"
X-IronPort-AV: E=Sophos;i="5.77,490,1596524400"; d="scan'208";a="170494409"
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from orsmga002.jf.intel.com ([10.7.209.21])
 by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 19 Nov 2020 03:59:19 -0800
IronPort-SDR: kc1hKjdtK1Pd75/hAnp4FGce7BgBIp0zAUk0uH3DnY88x5UT9GMumA6IIVKf2brAZ7PaTK5z9m
 bbBFaUjyMFFg==
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.77,490,1596524400"; d="scan'208";a="341665234"
Received: from silpixa00399752.ir.intel.com (HELO
 silpixa00399752.ger.corp.intel.com) ([10.237.222.180])
 by orsmga002.jf.intel.com with ESMTP; 19 Nov 2020 03:59:18 -0800
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: dev@dpdk.org, Ciara Loftus <ciara.loftus@intel.com>,
 Qi Zhang <qi.z.zhang@intel.com>, Xiaolong Ye <xiaolong.ye@intel.com>
Cc: Ferruh Yigit <ferruh.yigit@intel.com>, stable@dpdk.org,
 David Marchand <david.marchand@redhat.com>
Date: Thu, 19 Nov 2020 11:58:57 +0000
Message-Id: <20201119115900.4095566-8-ferruh.yigit@intel.com>
X-Mailer: git-send-email 2.26.2
In-Reply-To: <20201119115900.4095566-1-ferruh.yigit@intel.com>
References: <20200824094021.2323605-1-ferruh.yigit@intel.com>
 <20201119115900.4095566-1-ferruh.yigit@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Subject: [dpdk-stable] [v21.02 v3 07/10] net/af_xdp: remove useless
	assignment
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches for DPDK stable branches <stable.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
Errors-To: stable-bounces@dpdk.org
Sender: "stable" <stable-bounces@dpdk.org>

Assignment of function parameter 'umem' removed.

Fixes: f0ce7af0e182 ("net/af_xdp: remove resources when port is closed")
Cc: stable@dpdk.org

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
---
 drivers/net/af_xdp/rte_eth_af_xdp.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/af_xdp/rte_eth_af_xdp.c b/drivers/net/af_xdp/rte_eth_af_xdp.c
index 2c7892bd7e..7fc70df713 100644
--- a/drivers/net/af_xdp/rte_eth_af_xdp.c
+++ b/drivers/net/af_xdp/rte_eth_af_xdp.c
@@ -840,7 +840,6 @@ xdp_umem_destroy(struct xsk_umem_info *umem)
 #endif
 
 	rte_free(umem);
-	umem = NULL;
 }
 
 static int
-- 
2.26.2