2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

netdev-dpdk: Check dpdk-extra when reading db

A previous patch introduced the ability to pass arbitrary EAL command
line options via the dpdk_extras database entry. This commit enhances
that by warning the user when such a configuration is detected and
prefering the value in the database.

Suggested-by: Sean K Mooney <sean.k.mooney@intel.com>
Signed-off-by: Aaron Conole <aconole@redhat.com>
Tested-by: Sean K Mooney <sean.k.mooney@intel.com>
Tested-by: Kevin Traynor <kevin.traynor@intel.com>
Acked-by: Panu Matilainen <pmatilai@redhat.com>
Acked-by: Flavio Leitner <fbl@sysclose.org>
Acked-by: Daniele Di Proietto <diproiettod@vmware.com>
This commit is contained in:
Aaron Conole
2016-04-29 13:44:05 -04:00
committed by Daniele Di Proietto
parent eac84432a4
commit 52a57e36af

View File

@@ -2773,6 +2773,17 @@ dpdk_option_extend(char ***argv, int argc, const char *option,
newargv[argc+1] = xstrdup(value); newargv[argc+1] = xstrdup(value);
} }
static char **
move_argv(char ***argv, size_t cur_size, char **src_argv, size_t src_argc)
{
char **newargv = grow_argv(argv, cur_size, src_argc);
while (src_argc--) {
newargv[cur_size+src_argc] = src_argv[src_argc];
src_argv[src_argc] = NULL;
}
return newargv;
}
static int static int
extra_dpdk_args(const char *ovs_extra_config, char ***argv, int argc) extra_dpdk_args(const char *ovs_extra_config, char ***argv, int argc)
{ {
@@ -2790,9 +2801,21 @@ extra_dpdk_args(const char *ovs_extra_config, char ***argv, int argc)
return ret; return ret;
} }
static bool
argv_contains(char **argv_haystack, const size_t argc_haystack,
const char *needle)
{
for (size_t i = 0; i < argc_haystack; ++i) {
if (!strcmp(argv_haystack[i], needle))
return true;
}
return false;
}
static int static int
construct_dpdk_options(const struct smap *ovs_other_config, construct_dpdk_options(const struct smap *ovs_other_config,
char ***argv, const int initial_size) char ***argv, const int initial_size,
char **extra_args, const size_t extra_argc)
{ {
struct dpdk_options_map { struct dpdk_options_map {
const char *ovs_configuration; const char *ovs_configuration;
@@ -2815,8 +2838,13 @@ construct_dpdk_options(const struct smap *ovs_other_config,
} }
if (lookup) { if (lookup) {
dpdk_option_extend(argv, ret, opts[i].dpdk_option, lookup); if (!argv_contains(extra_args, extra_argc, opts[i].dpdk_option)) {
ret += 2; dpdk_option_extend(argv, ret, opts[i].dpdk_option, lookup);
ret += 2;
} else {
VLOG_WARN("Ignoring database defined option '%s' due to "
"dpdk_extras config", opts[i].dpdk_option);
}
} }
} }
@@ -2827,7 +2855,8 @@ construct_dpdk_options(const struct smap *ovs_other_config,
static int static int
construct_dpdk_mutex_options(const struct smap *ovs_other_config, construct_dpdk_mutex_options(const struct smap *ovs_other_config,
char ***argv, const int initial_size) char ***argv, const int initial_size,
char **extra_args, const size_t extra_argc)
{ {
struct dpdk_exclusive_options_map { struct dpdk_exclusive_options_map {
const char *category; const char *category;
@@ -2875,9 +2904,15 @@ construct_dpdk_mutex_options(const struct smap *ovs_other_config,
popt->category); popt->category);
} }
dpdk_option_extend(argv, ret, popt->eal_dpdk_options[found_pos], if (!argv_contains(extra_args, extra_argc,
found_value); popt->eal_dpdk_options[found_pos])) {
ret += 2; dpdk_option_extend(argv, ret, popt->eal_dpdk_options[found_pos],
found_value);
ret += 2;
} else {
VLOG_WARN("Ignoring database defined option '%s' due to "
"dpdk_extras config", popt->eal_dpdk_options[found_pos]);
}
} }
return ret; return ret;
@@ -2888,14 +2923,25 @@ get_dpdk_args(const struct smap *ovs_other_config, char ***argv,
int argc) int argc)
{ {
const char *extra_configuration; const char *extra_configuration;
int i = construct_dpdk_options(ovs_other_config, argv, argc); char **extra_args = NULL;
i = construct_dpdk_mutex_options(ovs_other_config, argv, i); int i;
size_t extra_argc = 0;
extra_configuration = smap_get(ovs_other_config, "dpdk-extra"); extra_configuration = smap_get(ovs_other_config, "dpdk-extra");
if (extra_configuration) { if (extra_configuration) {
i = extra_dpdk_args(extra_configuration, argv, i); extra_argc = extra_dpdk_args(extra_configuration, &extra_args, 0);
} }
return i;
i = construct_dpdk_options(ovs_other_config, argv, argc, extra_args,
extra_argc);
i = construct_dpdk_mutex_options(ovs_other_config, argv, i, extra_args,
extra_argc);
if (extra_configuration) {
*argv = move_argv(argv, i, extra_args, extra_argc);
}
return i + extra_argc;
} }
static char **dpdk_argv; static char **dpdk_argv;