diff options
author | Xiao Guangrong <xiaoguangrong@cn.fujitsu.com> | 2009-08-05 05:42:37 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-09-23 08:56:47 -0400 |
commit | 6c189d8312246af776c2587c233d6afcf3714438 (patch) | |
tree | 4d1667bf0129d412c9101c48719a9f272880b45b /drivers/lguest | |
parent | fb100d78c04ff6053047625d0368d0d4b1d9912a (diff) |
lguest: cleanup for map_switcher()
We can use alloc_page() instead of get_zeroed_page() and virt_to_page()
Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/lguest')
-rw-r--r-- | drivers/lguest/core.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/lguest/core.c b/drivers/lguest/core.c index 1e2cb846b3c9..8744d24ac6e6 100644 --- a/drivers/lguest/core.c +++ b/drivers/lguest/core.c | |||
@@ -67,12 +67,11 @@ static __init int map_switcher(void) | |||
67 | * so we make sure they're zeroed. | 67 | * so we make sure they're zeroed. |
68 | */ | 68 | */ |
69 | for (i = 0; i < TOTAL_SWITCHER_PAGES; i++) { | 69 | for (i = 0; i < TOTAL_SWITCHER_PAGES; i++) { |
70 | unsigned long addr = get_zeroed_page(GFP_KERNEL); | 70 | switcher_page[i] = alloc_page(GFP_KERNEL|__GFP_ZERO); |
71 | if (!addr) { | 71 | if (!switcher_page[i]) { |
72 | err = -ENOMEM; | 72 | err = -ENOMEM; |
73 | goto free_some_pages; | 73 | goto free_some_pages; |
74 | } | 74 | } |
75 | switcher_page[i] = virt_to_page(addr); | ||
76 | } | 75 | } |
77 | 76 | ||
78 | /* | 77 | /* |