Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse: fuse: check size of FUSE_NOTIFY_INVAL_ENTRY message fuse: mark pages accessed when written to fuse: delete dead .write_begin and .write_end aops fuse: fix flock fuse: fix non-ANSI void function notation
This commit is contained in:
@ -14,6 +14,7 @@
|
||||
#include <linux/sched.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/compat.h>
|
||||
#include <linux/swap.h>
|
||||
|
||||
static const struct file_operations fuse_direct_io_file_operations;
|
||||
|
||||
@ -245,6 +246,12 @@ void fuse_release_common(struct file *file, int opcode)
|
||||
req = ff->reserved_req;
|
||||
fuse_prepare_release(ff, file->f_flags, opcode);
|
||||
|
||||
if (ff->flock) {
|
||||
struct fuse_release_in *inarg = &req->misc.release.in;
|
||||
inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
|
||||
inarg->lock_owner = fuse_lock_owner_id(ff->fc,
|
||||
(fl_owner_t) file);
|
||||
}
|
||||
/* Hold vfsmount and dentry until release is finished */
|
||||
path_get(&file->f_path);
|
||||
req->misc.release.path = file->f_path;
|
||||
@ -755,18 +762,6 @@ static size_t fuse_send_write(struct fuse_req *req, struct file *file,
|
||||
return req->misc.write.out.size;
|
||||
}
|
||||
|
||||
static int fuse_write_begin(struct file *file, struct address_space *mapping,
|
||||
loff_t pos, unsigned len, unsigned flags,
|
||||
struct page **pagep, void **fsdata)
|
||||
{
|
||||
pgoff_t index = pos >> PAGE_CACHE_SHIFT;
|
||||
|
||||
*pagep = grab_cache_page_write_begin(mapping, index, flags);
|
||||
if (!*pagep)
|
||||
return -ENOMEM;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void fuse_write_update_size(struct inode *inode, loff_t pos)
|
||||
{
|
||||
struct fuse_conn *fc = get_fuse_conn(inode);
|
||||
@ -779,62 +774,6 @@ void fuse_write_update_size(struct inode *inode, loff_t pos)
|
||||
spin_unlock(&fc->lock);
|
||||
}
|
||||
|
||||
static int fuse_buffered_write(struct file *file, struct inode *inode,
|
||||
loff_t pos, unsigned count, struct page *page)
|
||||
{
|
||||
int err;
|
||||
size_t nres;
|
||||
struct fuse_conn *fc = get_fuse_conn(inode);
|
||||
unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
|
||||
struct fuse_req *req;
|
||||
|
||||
if (is_bad_inode(inode))
|
||||
return -EIO;
|
||||
|
||||
/*
|
||||
* Make sure writepages on the same page are not mixed up with
|
||||
* plain writes.
|
||||
*/
|
||||
fuse_wait_on_page_writeback(inode, page->index);
|
||||
|
||||
req = fuse_get_req(fc);
|
||||
if (IS_ERR(req))
|
||||
return PTR_ERR(req);
|
||||
|
||||
req->in.argpages = 1;
|
||||
req->num_pages = 1;
|
||||
req->pages[0] = page;
|
||||
req->page_offset = offset;
|
||||
nres = fuse_send_write(req, file, pos, count, NULL);
|
||||
err = req->out.h.error;
|
||||
fuse_put_request(fc, req);
|
||||
if (!err && !nres)
|
||||
err = -EIO;
|
||||
if (!err) {
|
||||
pos += nres;
|
||||
fuse_write_update_size(inode, pos);
|
||||
if (count == PAGE_CACHE_SIZE)
|
||||
SetPageUptodate(page);
|
||||
}
|
||||
fuse_invalidate_attr(inode);
|
||||
return err ? err : nres;
|
||||
}
|
||||
|
||||
static int fuse_write_end(struct file *file, struct address_space *mapping,
|
||||
loff_t pos, unsigned len, unsigned copied,
|
||||
struct page *page, void *fsdata)
|
||||
{
|
||||
struct inode *inode = mapping->host;
|
||||
int res = 0;
|
||||
|
||||
if (copied)
|
||||
res = fuse_buffered_write(file, inode, pos, copied, page);
|
||||
|
||||
unlock_page(page);
|
||||
page_cache_release(page);
|
||||
return res;
|
||||
}
|
||||
|
||||
static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
|
||||
struct inode *inode, loff_t pos,
|
||||
size_t count)
|
||||
@ -908,6 +847,8 @@ static ssize_t fuse_fill_write_pages(struct fuse_req *req,
|
||||
pagefault_enable();
|
||||
flush_dcache_page(page);
|
||||
|
||||
mark_page_accessed(page);
|
||||
|
||||
if (!tmp) {
|
||||
unlock_page(page);
|
||||
page_cache_release(page);
|
||||
@ -1559,11 +1500,14 @@ static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
|
||||
struct fuse_conn *fc = get_fuse_conn(inode);
|
||||
int err;
|
||||
|
||||
if (fc->no_lock) {
|
||||
if (fc->no_flock) {
|
||||
err = flock_lock_file_wait(file, fl);
|
||||
} else {
|
||||
struct fuse_file *ff = file->private_data;
|
||||
|
||||
/* emulate flock with POSIX locks */
|
||||
fl->fl_owner = (fl_owner_t) file;
|
||||
ff->flock = true;
|
||||
err = fuse_setlk(file, fl, 1);
|
||||
}
|
||||
|
||||
@ -2201,8 +2145,6 @@ static const struct address_space_operations fuse_file_aops = {
|
||||
.readpage = fuse_readpage,
|
||||
.writepage = fuse_writepage,
|
||||
.launder_page = fuse_launder_page,
|
||||
.write_begin = fuse_write_begin,
|
||||
.write_end = fuse_write_end,
|
||||
.readpages = fuse_readpages,
|
||||
.set_page_dirty = __set_page_dirty_nobuffers,
|
||||
.bmap = fuse_bmap,
|
||||
|
Reference in New Issue
Block a user