diff options
author | Kyungmin Park <kyungmin.park@samsung.com> | 2011-10-31 20:09:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-10-31 20:30:49 -0400 |
commit | d43a87e68e9e71d2987a29cc239acec4e8f410c9 (patch) | |
tree | 75b2950b286dcad4c4e7785f991ab0a35146b8d1 /mm/compaction.c | |
parent | dd73e85f6d8f721d66bcbd2734a5f4bc3d3cd768 (diff) |
mm: compaction: make compact_zone_order() static
There's no compact_zone_order() user outside file scope, so make it static.
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Acked-by: David Rientjes <rientjes@google.com>
Reviewed-by: Minchan Kim <minchan.kim@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/compaction.c')
-rw-r--r-- | mm/compaction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/compaction.c b/mm/compaction.c index a0e420207ebf..899d95638586 100644 --- a/mm/compaction.c +++ b/mm/compaction.c | |||
@@ -582,7 +582,7 @@ out: | |||
582 | return ret; | 582 | return ret; |
583 | } | 583 | } |
584 | 584 | ||
585 | unsigned long compact_zone_order(struct zone *zone, | 585 | static unsigned long compact_zone_order(struct zone *zone, |
586 | int order, gfp_t gfp_mask, | 586 | int order, gfp_t gfp_mask, |
587 | bool sync) | 587 | bool sync) |
588 | { | 588 | { |