diff options
author | Cong Wang <amwang@redhat.com> | 2011-11-25 23:14:30 +0800 |
---|---|---|
committer | Cong Wang <xiyou.wangcong@gmail.com> | 2012-03-20 21:48:22 +0800 |
commit | 2408f6ef6bf58620f8330b37181d2bdca2e7c7c5 (patch) | |
tree | 80093a2bd67a78f17de1cc8bdad2e6bc6e3b50c0 /fs/fuse/file.c | |
parent | d4a23aee23710dabeaa44c30950b87d33bf104be (diff) | |
download | op-kernel-dev-2408f6ef6bf58620f8330b37181d2bdca2e7c7c5.zip op-kernel-dev-2408f6ef6bf58620f8330b37181d2bdca2e7c7c5.tar.gz |
fuse: remove the second argument of k[un]map_atomic()
Signed-off-by: Cong Wang <amwang@redhat.com>
Diffstat (limited to 'fs/fuse/file.c')
-rw-r--r-- | fs/fuse/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index 4a199fd..a841868 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -1887,11 +1887,11 @@ long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg, in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV) goto out; - vaddr = kmap_atomic(pages[0], KM_USER0); + vaddr = kmap_atomic(pages[0]); err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr, transferred, in_iovs + out_iovs, (flags & FUSE_IOCTL_COMPAT) != 0); - kunmap_atomic(vaddr, KM_USER0); + kunmap_atomic(vaddr); if (err) goto out; |