Re: [Cluster-devel] [PATCH v7 07/12] iomap: Add page_write_end iomap hook

2018-06-04 Thread Andreas Grünbacher
2018-06-04 14:50 GMT+02:00 Christoph Hellwig : > On Mon, Jun 04, 2018 at 02:37:24PM +0200, Andreas Gruenbacher wrote: >> Add a page_write_end hook called when done writing to a page, for >> filesystems that implement data journaling: in that case, pages are >> written to the journal before being wr

Re: [Cluster-devel] [PATCH v7 07/12] iomap: Add page_write_end iomap hook

2018-06-04 Thread Christoph Hellwig
On Mon, Jun 04, 2018 at 02:37:24PM +0200, Andreas Gruenbacher wrote: > Add a page_write_end hook called when done writing to a page, for > filesystems that implement data journaling: in that case, pages are > written to the journal before being written back to their proper on-disk > locations. The

[Cluster-devel] [PATCH v7 07/12] iomap: Add page_write_end iomap hook

2018-06-04 Thread Andreas Gruenbacher
Add a page_write_end hook called when done writing to a page, for filesystems that implement data journaling: in that case, pages are written to the journal before being written back to their proper on-disk locations. The new hook is bypassed for IOMAP_INLINE mappings. Signed-off-by: Andreas Grue