[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 16/18] x86/numa.c: use plain bool
Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- xen/arch/x86/numa.c | 10 +++++----- xen/include/asm-x86/numa.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/xen/arch/x86/numa.c b/xen/arch/x86/numa.c index 6f4d438690..d45196fafc 100644 --- a/xen/arch/x86/numa.c +++ b/xen/arch/x86/numa.c @@ -49,7 +49,7 @@ cpumask_t node_to_cpumask[MAX_NUMNODES] __read_mostly; nodemask_t __read_mostly node_online_map = { { [0] = 1UL } }; -bool_t numa_off = 0; +bool numa_off; s8 acpi_numa = 0; int srat_disabled(void) @@ -302,13 +302,13 @@ void numa_set_node(int cpu, nodeid_t node) static __init int numa_setup(char *opt) { if ( !strncmp(opt,"off",3) ) - numa_off = 1; + numa_off = true; if ( !strncmp(opt,"on",2) ) - numa_off = 0; + numa_off = false; #ifdef CONFIG_NUMA_EMU if ( !strncmp(opt, "fake=", 5) ) { - numa_off = 0; + numa_off = false; numa_fake = simple_strtoul(opt+5,NULL,0); if ( numa_fake >= MAX_NUMNODES ) numa_fake = MAX_NUMNODES; @@ -317,7 +317,7 @@ static __init int numa_setup(char *opt) #ifdef CONFIG_ACPI_NUMA if ( !strncmp(opt,"noacpi",6) ) { - numa_off = 0; + numa_off = false; acpi_numa = -1; } #endif diff --git a/xen/include/asm-x86/numa.h b/xen/include/asm-x86/numa.h index 24792381b4..bada2c0bb9 100644 --- a/xen/include/asm-x86/numa.h +++ b/xen/include/asm-x86/numa.h @@ -30,7 +30,7 @@ extern nodeid_t pxm_to_node(unsigned int pxm); extern void numa_add_cpu(int cpu); extern void numa_init_array(void); -extern bool_t numa_off; +extern bool numa_off; extern int srat_disabled(void); -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |