eal: unify internal config init
Currently, each EAL will update internal/shared config in their own way at init, resulting in needless duplication of code and OS-dependent behavior. Move the functions to a common file and add missing FreeBSD steps. Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com> Acked-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
parent
00299d3960
commit
b39fcd9569
@ -31,6 +31,24 @@ eal_mcfg_wait_complete(void)
|
||||
rte_pause();
|
||||
}
|
||||
|
||||
void
|
||||
eal_mcfg_update_internal(void)
|
||||
{
|
||||
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
|
||||
|
||||
internal_config.legacy_mem = mcfg->legacy_mem;
|
||||
internal_config.single_file_segments = mcfg->single_file_segments;
|
||||
}
|
||||
|
||||
void
|
||||
eal_mcfg_update_from_internal(void)
|
||||
{
|
||||
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
|
||||
|
||||
mcfg->legacy_mem = internal_config.legacy_mem;
|
||||
mcfg->single_file_segments = internal_config.single_file_segments;
|
||||
}
|
||||
|
||||
void
|
||||
rte_mcfg_mem_read_lock(void)
|
||||
{
|
||||
|
@ -69,6 +69,14 @@ struct rte_mem_config {
|
||||
uint8_t dma_maskbits; /**< Keeps the more restricted dma mask. */
|
||||
};
|
||||
|
||||
/* update internal config from shared mem config */
|
||||
void
|
||||
eal_mcfg_update_internal(void);
|
||||
|
||||
/* update shared mem config from internal config */
|
||||
void
|
||||
eal_mcfg_update_from_internal(void);
|
||||
|
||||
/* wait until primary process initialization is complete */
|
||||
void
|
||||
eal_mcfg_wait_complete(void);
|
||||
|
@ -379,6 +379,7 @@ rte_config_init(void)
|
||||
case RTE_PROC_PRIMARY:
|
||||
if (rte_eal_config_create() < 0)
|
||||
return -1;
|
||||
eal_mcfg_update_from_internal();
|
||||
break;
|
||||
case RTE_PROC_SECONDARY:
|
||||
if (rte_eal_config_attach() < 0)
|
||||
@ -386,6 +387,7 @@ rte_config_init(void)
|
||||
eal_mcfg_wait_complete();
|
||||
if (rte_eal_config_reattach() < 0)
|
||||
return -1;
|
||||
eal_mcfg_update_internal();
|
||||
break;
|
||||
case RTE_PROC_AUTO:
|
||||
case RTE_PROC_INVALID:
|
||||
|
@ -473,24 +473,6 @@ eal_proc_type_detect(void)
|
||||
return ptype;
|
||||
}
|
||||
|
||||
/* copies data from internal config to shared config */
|
||||
static void
|
||||
eal_update_mem_config(void)
|
||||
{
|
||||
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
|
||||
mcfg->legacy_mem = internal_config.legacy_mem;
|
||||
mcfg->single_file_segments = internal_config.single_file_segments;
|
||||
}
|
||||
|
||||
/* copies data from shared config to internal config */
|
||||
static void
|
||||
eal_update_internal_config(void)
|
||||
{
|
||||
struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
|
||||
internal_config.legacy_mem = mcfg->legacy_mem;
|
||||
internal_config.single_file_segments = mcfg->single_file_segments;
|
||||
}
|
||||
|
||||
/* Sets up rte_config structure with the pointer to shared memory config.*/
|
||||
static int
|
||||
rte_config_init(void)
|
||||
@ -501,7 +483,7 @@ rte_config_init(void)
|
||||
case RTE_PROC_PRIMARY:
|
||||
if (rte_eal_config_create() < 0)
|
||||
return -1;
|
||||
eal_update_mem_config();
|
||||
eal_mcfg_update_from_internal();
|
||||
break;
|
||||
case RTE_PROC_SECONDARY:
|
||||
if (rte_eal_config_attach() < 0)
|
||||
@ -509,7 +491,7 @@ rte_config_init(void)
|
||||
eal_mcfg_wait_complete();
|
||||
if (rte_eal_config_reattach() < 0)
|
||||
return -1;
|
||||
eal_update_internal_config();
|
||||
eal_mcfg_update_internal();
|
||||
break;
|
||||
case RTE_PROC_AUTO:
|
||||
case RTE_PROC_INVALID:
|
||||
|
Loading…
Reference in New Issue
Block a user