diff options
author | Mel Gorman <mel@csn.ul.ie> | 2007-10-16 04:26:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:00 -0400 |
commit | 467c996c1e1910633fa8e7adc9b052aa3ed5f97c (patch) | |
tree | 09e0e70160386be1bdaa12801afddf287e12c8a1 /mm/page_alloc.c | |
parent | d9c2340052278d8eb2ffb16b0484f8f794def4de (diff) |
Print out statistics in relation to fragmentation avoidance to /proc/pagetypeinfo
This patch provides fragmentation avoidance statistics via /proc/pagetypeinfo.
The information is collected only on request so there is no runtime overhead.
The statistics are in three parts:
The first part prints information on the size of blocks that pages are
being grouped on and looks like
Page block order: 10
Pages per block: 1024
The second part is a more detailed version of /proc/buddyinfo and looks like
Free pages count per migrate type at order 0 1 2 3 4 5 6 7 8 9 10
Node 0, zone DMA, type Unmovable 0 0 0 0 0 0 0 0 0 0 0
Node 0, zone DMA, type Reclaimable 1 0 0 0 0 0 0 0 0 0 0
Node 0, zone DMA, type Movable 0 0 0 0 0 0 0 0 0 0 0
Node 0, zone DMA, type Reserve 0 4 4 0 0 0 0 1 0 1 0
Node 0, zone Normal, type Unmovable 111 8 4 4 2 3 1 0 0 0 0
Node 0, zone Normal, type Reclaimable 293 89 8 0 0 0 0 0 0 0 0
Node 0, zone Normal, type Movable 1 6 13 9 7 6 3 0 0 0 0
Node 0, zone Normal, type Reserve 0 0 0 0 0 0 0 0 0 0 4
The third part looks like
Number of blocks type Unmovable Reclaimable Movable Reserve
Node 0, zone DMA 0 1 2 1
Node 0, zone Normal 3 17 94 4
To walk the zones within a node with interrupts disabled, walk_zones_in_node()
is introduced and shared between /proc/buddyinfo, /proc/zoneinfo and
/proc/pagetypeinfo to reduce code duplication. It seems specific to what
vmstat.c requires but could be broken out as a general utility function in
mmzone.c if there were other other potential users.
Signed-off-by: Mel Gorman <mel@csn.ul.ie>
Acked-by: Andy Whitcroft <apw@shadowen.org>
Acked-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index b9bc7369c48d..17797d062c3b 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -164,32 +164,12 @@ EXPORT_SYMBOL(nr_node_ids); | |||
164 | 164 | ||
165 | int page_group_by_mobility_disabled __read_mostly; | 165 | int page_group_by_mobility_disabled __read_mostly; |
166 | 166 | ||
167 | static inline int get_pageblock_migratetype(struct page *page) | ||
168 | { | ||
169 | if (unlikely(page_group_by_mobility_disabled)) | ||
170 | return MIGRATE_UNMOVABLE; | ||
171 | |||
172 | return get_pageblock_flags_group(page, PB_migrate, PB_migrate_end); | ||
173 | } | ||
174 | |||
175 | static void set_pageblock_migratetype(struct page *page, int migratetype) | 167 | static void set_pageblock_migratetype(struct page *page, int migratetype) |
176 | { | 168 | { |
177 | set_pageblock_flags_group(page, (unsigned long)migratetype, | 169 | set_pageblock_flags_group(page, (unsigned long)migratetype, |
178 | PB_migrate, PB_migrate_end); | 170 | PB_migrate, PB_migrate_end); |
179 | } | 171 | } |
180 | 172 | ||
181 | static inline int allocflags_to_migratetype(gfp_t gfp_flags) | ||
182 | { | ||
183 | WARN_ON((gfp_flags & GFP_MOVABLE_MASK) == GFP_MOVABLE_MASK); | ||
184 | |||
185 | if (unlikely(page_group_by_mobility_disabled)) | ||
186 | return MIGRATE_UNMOVABLE; | ||
187 | |||
188 | /* Cluster based on mobility */ | ||
189 | return (((gfp_flags & __GFP_MOVABLE) != 0) << 1) | | ||
190 | ((gfp_flags & __GFP_RECLAIMABLE) != 0); | ||
191 | } | ||
192 | |||
193 | #ifdef CONFIG_DEBUG_VM | 173 | #ifdef CONFIG_DEBUG_VM |
194 | static int page_outside_zone_boundaries(struct zone *zone, struct page *page) | 174 | static int page_outside_zone_boundaries(struct zone *zone, struct page *page) |
195 | { | 175 | { |