diff options
| -rw-r--r-- | mm/quicklist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mm/quicklist.c b/mm/quicklist.c index 6eedf7e473d1..6633965bb27b 100644 --- a/mm/quicklist.c +++ b/mm/quicklist.c | |||
| @@ -29,7 +29,6 @@ static unsigned long max_pages(unsigned long min_pages) | |||
| 29 | int node = numa_node_id(); | 29 | int node = numa_node_id(); |
| 30 | struct zone *zones = NODE_DATA(node)->node_zones; | 30 | struct zone *zones = NODE_DATA(node)->node_zones; |
| 31 | int num_cpus_on_node; | 31 | int num_cpus_on_node; |
| 32 | const struct cpumask *cpumask_on_node = cpumask_of_node(node); | ||
| 33 | 32 | ||
| 34 | node_free_pages = | 33 | node_free_pages = |
| 35 | #ifdef CONFIG_ZONE_DMA | 34 | #ifdef CONFIG_ZONE_DMA |
| @@ -42,7 +41,7 @@ static unsigned long max_pages(unsigned long min_pages) | |||
| 42 | 41 | ||
| 43 | max = node_free_pages / FRACTION_OF_NODE_MEM; | 42 | max = node_free_pages / FRACTION_OF_NODE_MEM; |
| 44 | 43 | ||
| 45 | num_cpus_on_node = cpus_weight_nr(*cpumask_on_node); | 44 | num_cpus_on_node = cpumask_weight(cpumask_of_node(node)); |
| 46 | max /= num_cpus_on_node; | 45 | max /= num_cpus_on_node; |
| 47 | 46 | ||
| 48 | return max(max, min_pages); | 47 | return max(max, min_pages); |
