mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
cpumask: use new-style cpumask ops in mm/quicklist.
This slipped past the previous sweeps. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Acked-by: Christoph Lameter <cl@linux-foundation.org>
This commit is contained in:
parent
78f1c4d6b0
commit
db79078658
1 changed files with 1 additions and 2 deletions
|
@ -29,7 +29,6 @@ static unsigned long max_pages(unsigned long min_pages)
|
||||||
int node = numa_node_id();
|
int node = numa_node_id();
|
||||||
struct zone *zones = NODE_DATA(node)->node_zones;
|
struct zone *zones = NODE_DATA(node)->node_zones;
|
||||||
int num_cpus_on_node;
|
int num_cpus_on_node;
|
||||||
const struct cpumask *cpumask_on_node = cpumask_of_node(node);
|
|
||||||
|
|
||||||
node_free_pages =
|
node_free_pages =
|
||||||
#ifdef CONFIG_ZONE_DMA
|
#ifdef CONFIG_ZONE_DMA
|
||||||
|
@ -42,7 +41,7 @@ static unsigned long max_pages(unsigned long min_pages)
|
||||||
|
|
||||||
max = node_free_pages / FRACTION_OF_NODE_MEM;
|
max = node_free_pages / FRACTION_OF_NODE_MEM;
|
||||||
|
|
||||||
num_cpus_on_node = cpus_weight_nr(*cpumask_on_node);
|
num_cpus_on_node = cpumask_weight(cpumask_of_node(node));
|
||||||
max /= num_cpus_on_node;
|
max /= num_cpus_on_node;
|
||||||
|
|
||||||
return max(max, min_pages);
|
return max(max, min_pages);
|
||||||
|
|
Loading…
Reference in a new issue