]> git.droids-corp.org - dpdk.git/commitdiff
eal/freebsd: lock memory device to prevent conflicts
authorBruce Richardson <bruce.richardson@intel.com>
Mon, 13 Sep 2021 14:08:48 +0000 (15:08 +0100)
committerDavid Marchand <david.marchand@redhat.com>
Sat, 2 Oct 2021 14:30:16 +0000 (16:30 +0200)
Only a single DPDK process on the system can be using the /dev/contigmem
mappings at a time, but this was never explicitly enforced, e.g. when
using --in-memory flag on two processes. To prevent possible conflict
issues, we lock the dev node when it's in use, preventing other DPDK
processes from starting up and causing problems for us.

Fixes: 764bf26873b9 ("add FreeBSD support")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: Anatoly Burakov <anatoly.burakov@intel.com>
lib/eal/freebsd/eal_hugepage_info.c

index 408f054f7a2a2d3085ec67b5663ace985220ff3f..9dbe375bd38c15a969951cbfbfa0ce199e17c505 100644 (file)
@@ -90,6 +90,10 @@ eal_hugepage_info_init(void)
                RTE_LOG(ERR, EAL, "could not open "CONTIGMEM_DEV"\n");
                return -1;
        }
+       if (flock(fd, LOCK_EX | LOCK_NB) < 0) {
+               RTE_LOG(ERR, EAL, "could not lock memory. Is another DPDK process running?\n");
+               return -1;
+       }
 
        if (buffer_size >= 1<<30)
                RTE_LOG(INFO, EAL, "Contigmem driver has %d buffers, each of size %dGB\n",