[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/numa.c: use plain bool
commit ebf5104125fa209bc9d3a7f7f6583254d32bd57c Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Fri Jun 30 17:50:14 2017 +0100 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Tue Jul 4 14:54:42 2017 +0100 x86/numa.c: use plain bool Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@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 6f4d438..d45196fa 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 2479238..bada2c0 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); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |