linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] zone_reclaim: reclaim on memory only node support
@ 2006-01-19 22:58 Christoph Lameter
  0 siblings, 0 replies; only message in thread
From: Christoph Lameter @ 2006-01-19 22:58 UTC (permalink / raw)
  To: akpm; +Cc: linux-mm

Zone reclaim is usually only run on the local node. Headless nodes do not have
any local processors. This patch checks for headless nodes and performs zone
reclaim on them.

Signed-off-by: Christoph Lameter <clameter@sgi.com>

Index: linux-2.6.16-rc1-mm1/mm/vmscan.c
===================================================================
--- linux-2.6.16-rc1-mm1.orig/mm/vmscan.c	2006-01-19 11:12:31.000000000 -0800
+++ linux-2.6.16-rc1-mm1/mm/vmscan.c	2006-01-19 11:18:37.000000000 -0800
@@ -1842,7 +1842,8 @@ int zone_reclaim(struct zone *zone, gfp_
 			return 0;
 
 	if (!(gfp_mask & __GFP_WAIT) ||
-		zone->zone_pgdat->node_id != numa_node_id() ||
+		(!cpus_empty(node_to_cpumask(zone->zone_pgdat->node_id)) &&
+			 zone->zone_pgdat->node_id != numa_node_id()) ||
 		zone->all_unreclaimable ||
 		atomic_read(&zone->reclaim_in_progress) > 0)
 			return 0;

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-01-19 22:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-19 22:58 [PATCH] zone_reclaim: reclaim on memory only node support Christoph Lameter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox