mca/base: use the project name when registering pvars
References #3918. Close when applied to v2.0.x, v2.x, and v3.0.x. Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
Этот коммит содержится в:
родитель
e5343c16c0
Коммит
2060fcf8bb
@ -1,6 +1,6 @@
|
|||||||
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2013-2015 Los Alamos National Security, LLC. All rights
|
* Copyright (c) 2013-2017 Los Alamos National Security, LLC. All rights
|
||||||
* reserved.
|
* reserved.
|
||||||
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
|
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
|
||||||
* Copyright (c) 2015 Bull SAS. All rights reserved.
|
* Copyright (c) 2015 Bull SAS. All rights reserved.
|
||||||
@ -348,9 +348,8 @@ int mca_base_component_pvar_register (const mca_base_component_t *component, con
|
|||||||
int bind, mca_base_pvar_flag_t flags, mca_base_get_value_fn_t get_value,
|
int bind, mca_base_pvar_flag_t flags, mca_base_get_value_fn_t get_value,
|
||||||
mca_base_set_value_fn_t set_value, mca_base_notify_fn_t notify, void *ctx)
|
mca_base_set_value_fn_t set_value, mca_base_notify_fn_t notify, void *ctx)
|
||||||
{
|
{
|
||||||
/* XXX -- component_update -- We will stash the project name in the component */
|
|
||||||
/* invalidate this variable if the component's group is deregistered */
|
/* invalidate this variable if the component's group is deregistered */
|
||||||
return mca_base_pvar_register(NULL, component->mca_type_name, component->mca_component_name,
|
return mca_base_pvar_register(component->mca_project_name, component->mca_type_name, component->mca_component_name,
|
||||||
name, description, verbosity, var_class, type, enumerator, bind,
|
name, description, verbosity, var_class, type, enumerator, bind,
|
||||||
flags | MCA_BASE_PVAR_FLAG_IWG, get_value, set_value, notify, ctx);
|
flags | MCA_BASE_PVAR_FLAG_IWG, get_value, set_value, notify, ctx);
|
||||||
}
|
}
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user