aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64/mm/srat.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/mm/srat.c')
-rw-r--r--arch/x86_64/mm/srat.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86_64/mm/srat.c b/arch/x86_64/mm/srat.c
index 9f69d28652f8..d96c701dbed6 100644
--- a/arch/x86_64/mm/srat.c
+++ b/arch/x86_64/mm/srat.c
@@ -23,15 +23,16 @@ static struct acpi_table_slit *acpi_slit;
23static nodemask_t nodes_parsed __initdata; 23static nodemask_t nodes_parsed __initdata;
24static nodemask_t nodes_found __initdata; 24static nodemask_t nodes_found __initdata;
25static struct node nodes[MAX_NUMNODES] __initdata; 25static struct node nodes[MAX_NUMNODES] __initdata;
26static __u8 pxm2node[256] = { [0 ... 255] = 0xff }; 26static u8 pxm2node[256] = { [0 ... 255] = 0xff };
27 27
28static int node_to_pxm(int n); 28static int node_to_pxm(int n);
29 29
30int pxm_to_node(int pxm) 30int pxm_to_node(int pxm)
31{ 31{
32 if ((unsigned)pxm >= 256) 32 if ((unsigned)pxm >= 256)
33 return 0; 33 return -1;
34 return pxm2node[pxm]; 34 /* Extend 0xff to (int)-1 */
35 return (signed char)pxm2node[pxm];
35} 36}
36 37
37static __init int setup_node(int pxm) 38static __init int setup_node(int pxm)