projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45352bb
)
mm: fix return value of scan_lru_pages in memory unplug
author
KAMEZAWA Hiroyuki
<
[email protected]
>
Tue, 26 Oct 2010 21:21:10 +0000
(14:21 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 26 Oct 2010 23:52:03 +0000
(16:52 -0700)
scan_lru_pages returns pfn. So, it's type should be "unsigned long"
not "int".
Note: I guess this has been work until now because memory hotplug tester's
machine has not very big memory....
physical address < 32bit << PAGE_SHIFT.
Reported-by: KOSAKI Motohiro <
[email protected]
>
Signed-off-by: KAMEZAWA Hiroyuki <
[email protected]
>
Reviewed-by: KOSAKI Motohiro <
[email protected]
>
Cc: <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
mm/memory_hotplug.c
patch
|
blob
|
history
diff --git
a/mm/memory_hotplug.c
b/mm/memory_hotplug.c
index d4e940a26945cde1f8251b39b37fde3144639d5b..06662c5a3e86a1fc8f2db231e038d3e888d68801 100644
(file)
--- a/
mm/memory_hotplug.c
+++ b/
mm/memory_hotplug.c
@@
-659,7
+659,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.
*/
-
int
scan_lru_pages(unsigned long start, unsigned long end)
+
unsigned long
scan_lru_pages(unsigned long start, unsigned long end)
{
unsigned long pfn;
struct page *page;