diff options
| author | Andrew Morton <akpm@linux-foundation.org> | 2010-10-26 14:22:05 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-26 16:52:10 -0700 | 
| commit | 7bbc0905ea4f7a471a7f79d0bea5d538f5114fc9 (patch) | |
| tree | 3e4f3145932027a34dbba136e448b8c8c50ca060 | |
| parent | 74ce002d9aee23031b4967e1dd1c1966ddc60749 (diff) | |
| download | olio-linux-3.10-7bbc0905ea4f7a471a7f79d0bea5d538f5114fc9.tar.xz olio-linux-3.10-7bbc0905ea4f7a471a7f79d0bea5d538f5114fc9.zip  | |
mm/memory_hotplug.c: make scan_lru_pages() static
Reported-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | mm/memory_hotplug.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index b0dc6545297..bb63b36c441 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c @@ -646,7 +646,7 @@ static int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)   * Scanning pfn is much easier than scanning lru list.   * Scan pfn from start to end and Find LRU page.   */ -unsigned long scan_lru_pages(unsigned long start, unsigned long end) +static unsigned long scan_lru_pages(unsigned long start, unsigned long end)  {  	unsigned long pfn;  	struct page *page;  |