* [Patch] New zone ZONE_EASY_RECLAIM take 4. (is_easy_reclaim func)[4/8]
@ 2005-12-20 8:53 Yasunori Goto
0 siblings, 0 replies; only message in thread
From: Yasunori Goto @ 2005-12-20 8:53 UTC (permalink / raw)
To: Linux Kernel ML, linux-mm, Linux Hotplug Memory Support; +Cc: Joel Schopp
This is for calculation of the watermark zone->pages_min/low/high.
There is no change at take 4.
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-19 20:24:04.000000000 +0900
+++ zone_reclaim/include/linux/mmzone.h 2005-12-19 20:24:07.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-19 20:24:04.000000000 +0900
+++ zone_reclaim/mm/page_alloc.c 2005-12-19 20:24:07.000000000 +0900
@@ -2592,7 +2592,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;
}
@@ -2600,7 +2600,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-20 8:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-20 8:53 [Patch] New zone ZONE_EASY_RECLAIM take 4. (is_easy_reclaim func)[4/8] Yasunori Goto
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox