[PATCH] cpumask: use new-style cpumask ops in mm/quicklist.

From: Rusty Russell
Date: Fri Jun 12 2009 - 09:07:21 EST


This slipped past the previous sweeps.

Signed-off-by: Rusty Russell <rusty@xxxxxxxxxxxxxxx>
To: Christoph Lameter <cl@xxxxxxxxxxxxxxxxxxxx>
---
mm/quicklist.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/mm/quicklist.c b/mm/quicklist.c
--- a/mm/quicklist.c
+++ b/mm/quicklist.c
@@ -29,7 +29,6 @@ static unsigned long max_pages(unsigned
int node = numa_node_id();
struct zone *zones = NODE_DATA(node)->node_zones;
int num_cpus_on_node;
- const struct cpumask *cpumask_on_node = cpumask_of_node(node);

node_free_pages =
#ifdef CONFIG_ZONE_DMA
@@ -42,7 +41,7 @@ static unsigned long max_pages(unsigned

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;

return max(max, min_pages);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/