diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-02-02 22:10:25 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-04-01 23:19:20 -0400 |
commit | 9e8c2af96e0d2d5fe298dd796fb6bc16e888a48d (patch) | |
tree | bd078fdfaf34ce0cb9ab258d39f0669b5610f5c8 /fs/fuse | |
parent | c186afb4dbd0050a537b96c7fbee2dba3b57fc38 (diff) |
callers of iov_copy_from_user_atomic() don't need pagecache_disable()
... it does that itself (via kmap_atomic())
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/fuse')
-rw-r--r-- | fs/fuse/file.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index 77bcc303c3ae..a91d3b4d32f3 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c | |||
@@ -1003,9 +1003,7 @@ static ssize_t fuse_fill_write_pages(struct fuse_req *req, | |||
1003 | if (mapping_writably_mapped(mapping)) | 1003 | if (mapping_writably_mapped(mapping)) |
1004 | flush_dcache_page(page); | 1004 | flush_dcache_page(page); |
1005 | 1005 | ||
1006 | pagefault_disable(); | ||
1007 | tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes); | 1006 | tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes); |
1008 | pagefault_enable(); | ||
1009 | flush_dcache_page(page); | 1007 | flush_dcache_page(page); |
1010 | 1008 | ||
1011 | mark_page_accessed(page); | 1009 | mark_page_accessed(page); |