]> git.droids-corp.org - dpdk.git/commitdiff
eal/freebsd: ignore in-memory option
authorBruce Richardson <bruce.richardson@intel.com>
Mon, 13 Sep 2021 14:34:24 +0000 (15:34 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 13 Oct 2021 15:11:26 +0000 (17:11 +0200)
The in-memory option is not supported on FreeBSD so print a warning and
ignore the flag when it is specified for BSD apps. The lack of support
is due to the different way in which memory is managed on FreeBSD using
the contigmem driver rather than via a hugetlbfs filesystem.

Fixes: 14de8734c401 ("eal: add --in-memory option")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
lib/eal/freebsd/eal.c

index 6cee5ae369db8af7f7c363acca58bfd7ed0a45c5..fb734012a4693cb4e728188f3ee43d11df5673b2 100644 (file)
@@ -718,6 +718,10 @@ rte_eal_init(int argc, char **argv)
 
        /* FreeBSD always uses legacy memory model */
        internal_conf->legacy_mem = true;
+       if (internal_conf->in_memory) {
+               RTE_LOG(WARNING, EAL, "Warning: ignoring unsupported flag, '%s'\n", OPT_IN_MEMORY);
+               internal_conf->in_memory = false;
+       }
 
        if (eal_plugins_init() < 0) {
                rte_eal_init_alert("Cannot init plugins");