From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aaron Conole Subject: [PATCH] nfp: restore the unlink operation Date: Mon, 14 May 2018 10:46:58 -0400 Message-ID: <20180514144658.9671-1-aconole@redhat.com> Cc: Alejandro Lucero , Luca Boccassi , Eelco Chaudron , Yuanhan Liu , dev@dpdk.org To: stable@dpdk.org Return-path: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" For the stable versions of DPDK, the NFP driver's NSP user space driver was modified to account for non-root usage. When that happened, commit 515933ad8385 ("nfp: allow for non-root user") inadvertently removed the unlink() call. Fixes: 515933ad8385 ("nfp: allow for non-root user") Cc: Alejandro Lucero Cc: Luca Boccassi Cc: Eelco Chaudron Cc: Yuanhan Liu Signed-off-by: Aaron Conole --- drivers/net/nfp/nfp_nfpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/nfp/nfp_nfpu.c b/drivers/net/nfp/nfp_nfpu.c index ae2e07220..c003640c7 100644 --- a/drivers/net/nfp/nfp_nfpu.c +++ b/drivers/net/nfp/nfp_nfpu.c @@ -121,5 +121,6 @@ nfpu_close(nfpu_desc_t *desc) close(desc->lock); nspu_get_lockfile_path(lockname, sizeof(lockname), desc); + unlink(lockname); return 0; } -- 2.14.3