[Devel] [PATCH 2/2] fuse: wait for writeback in fuse_file_fallocate() -v2

Miklos Szeredi miklos at szeredi.hu
Fri Aug 30 02:13:48 PDT 2013


On Thu, Aug 29, 2013 at 6:41 PM, Miklos Szeredi <miklos at szeredi.hu> wrote:
> BTW, isn't it enough to do the filemap_write_and_wait() *plus* the
> fuse_set_nowrite()?

Thought about it a bit and I think this should do fine.

Any writes before the fallocate will go trough before the fallocate.
i_mutex guarantees that only one instance of fuse_set_nowrite() is
running.  Any mmaped writes during the fallocate() will go after the
fallocate request and the page cache truncation and that's fine too.
Page cache is consistent since it doens't contain pages for those
writes to the hole.  Subsequent reads to that area will fill them in.

Any other concerns?

Thanks,
Miklos



More information about the Devel mailing list