aboutsummaryrefslogtreecommitdiffstats
path: root/security/tomoyo
diff options
context:
space:
mode:
authorCong Wang <amwang@redhat.com>2011-11-25 23:26:35 +0800
committerCong Wang <xiyou.wangcong@gmail.com>2012-03-20 21:48:28 +0800
commitc58e0377d61e209600def7d4d9ae535ea94bc210 (patch)
tree142d1ca23d06458c8b798174e01281ad67b2ab76 /security/tomoyo
parentsunrpc: remove the second argument of k[un]map_atomic() (diff)
downloadlinux-dev-c58e0377d61e209600def7d4d9ae535ea94bc210.tar.xz
linux-dev-c58e0377d61e209600def7d4d9ae535ea94bc210.zip
tomoyo: remove the second argument of k[un]map_atomic()
Acked-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: Cong Wang <amwang@redhat.com>
Diffstat (limited to 'security/tomoyo')
-rw-r--r--security/tomoyo/domain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/tomoyo/domain.c b/security/tomoyo/domain.c
index 9027ac1534af..38651454ed08 100644
--- a/security/tomoyo/domain.c
+++ b/security/tomoyo/domain.c
@@ -886,12 +886,12 @@ bool tomoyo_dump_page(struct linux_binprm *bprm, unsigned long pos,
* But remove_arg_zero() uses kmap_atomic()/kunmap_atomic().
* So do I.
*/
- char *kaddr = kmap_atomic(page, KM_USER0);
+ char *kaddr = kmap_atomic(page);
dump->page = page;
memcpy(dump->data + offset, kaddr + offset,
PAGE_SIZE - offset);
- kunmap_atomic(kaddr, KM_USER0);
+ kunmap_atomic(kaddr);
}
/* Same with put_arg_page(page) in fs/exec.c */
#ifdef CONFIG_MMU