* [Patch] New zone ZONE_EASY_RECLAIM take 3. (is_easy_reclaim func)[4/5]
@ 2005-12-10 11:03 Yasunori Goto
0 siblings, 0 replies; only message in thread
From: Yasunori Goto @ 2005-12-10 11:03 UTC (permalink / raw)
To: linux-mm, Linux Hotplug Memory Support; +Cc: Joel Schopp
This is for calculation of the watermark zone->pages_min/low/high.
And it defines is_higher_zone().
Signed-off-by: Yasunori Goto <y-goto@jp.fujitsu.com>
Index: zone_reclaim/include/linux/mmzone.h
===================================================================
--- zone_reclaim.orig/include/linux/mmzone.h 2005-12-10 17:13:16.000000000 +0900
+++ zone_reclaim/include/linux/mmzone.h 2005-12-10 17:39:57.000000000 +0900
@@ -394,6 +394,11 @@ static inline int populated_zone(struct
return (!!zone->present_pages);
}
+static inline int is_easy_reclaim_idx(int idx)
+{
+ return (idx == ZONE_EASY_RECLAIM);
+}
+
static inline int is_highmem_idx(int idx)
{
return (idx == ZONE_HIGHMEM);
@@ -410,11 +415,21 @@ static inline int is_normal_idx(int idx)
* to ZONE_{DMA/NORMAL/HIGHMEM/etc} in general code to a minimum.
* @zone - pointer to struct zone variable
*/
+static inline int is_easy_reclaim(struct zone *zone)
+{
+ return zone == zone->zone_pgdat->node_zones + ZONE_EASY_RECLAIM;
+}
+
static inline int is_highmem(struct zone *zone)
{
return zone == zone->zone_pgdat->node_zones + ZONE_HIGHMEM;
}
+static inline int is_higher_zone(struct zone *zone)
+{
+ return (is_highmem(zone) || is_easy_reclaim(zone));
+}
+
static inline int is_normal(struct zone *zone)
{
return zone == zone->zone_pgdat->node_zones + ZONE_NORMAL;
Index: zone_reclaim/mm/page_alloc.c
===================================================================
--- zone_reclaim.orig/mm/page_alloc.c 2005-12-10 17:15:10.000000000 +0900
+++ zone_reclaim/mm/page_alloc.c 2005-12-10 17:40:59.000000000 +0900
@@ -2573,7 +2573,7 @@ void setup_per_zone_pages_min(void)
/* Calculate total number of !ZONE_HIGHMEM pages */
for_each_zone(zone) {
- if (!is_highmem(zone))
+ if (!is_higher_zone(zone))
lowmem_pages += zone->present_pages;
}
@@ -2581,7 +2581,7 @@ void setup_per_zone_pages_min(void)
unsigned long tmp;
spin_lock_irqsave(&zone->lru_lock, flags);
tmp = (pages_min * zone->present_pages) / lowmem_pages;
- if (is_highmem(zone)) {
+ if (is_higher_zone(zone)) {
/*
* __GFP_HIGH and PF_MEMALLOC allocations usually don't
* need highmem pages, so cap pages_min to a small
--
Yasunori Goto
--
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:[~2005-12-10 11:03 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-10 11:03 [Patch] New zone ZONE_EASY_RECLAIM take 3. (is_easy_reclaim func)[4/5] Yasunori Goto
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox