[Cluster-devel] [PATCH 1/6] fs: factor out a __generic_write_end helper

2018-06-19 Thread Christoph Hellwig
Bits of the buffer.c based write_end implementations that don't know about buffer_heads and can be reused by other implementations. Signed-off-by: Christoph Hellwig Reviewed-by: Brian Foster Reviewed-by: Andreas Gruenbacher Reviewed-by: Darrick J. Wong --- fs/buffer.c | 67 +

[Cluster-devel] [PATCH 1/6] fs: factor out a __generic_write_end helper

2018-06-14 Thread Christoph Hellwig
Bits of the buffer.c based write_end implementations that don't know about buffer_heads and can be reused by other implementations. Signed-off-by: Christoph Hellwig Reviewed-by: Brian Foster Reviewed-by: Andreas Gruenbacher Reviewed-by: Darrick J. Wong --- fs/buffer.c | 67 +

Re: [Cluster-devel] [PATCH 1/6] fs: factor out a __generic_write_end helper

2018-06-06 Thread Andreas Grünbacher
2018-06-06 12:59 GMT+02:00 Christoph Hellwig : > On Wed, Jun 06, 2018 at 12:40:28PM +0200, Christoph Hellwig wrote: >> Bits of the buffer.c based write_end implementations that don't know >> about buffer_heads and can be reused by other implementations. >> >> Signed-off-by: Christoph Hellwig > > T

[Cluster-devel] [PATCH 1/6] fs: factor out a __generic_write_end helper

2018-06-06 Thread Christoph Hellwig
Bits of the buffer.c based write_end implementations that don't know about buffer_heads and can be reused by other implementations. Signed-off-by: Christoph Hellwig --- fs/buffer.c | 67 +++ fs/internal.h | 2 ++ 2 files changed, 37 inse

Re: [Cluster-devel] [PATCH 1/6] fs: factor out a __generic_write_end helper

2018-06-06 Thread Christoph Hellwig
On Wed, Jun 06, 2018 at 12:40:28PM +0200, Christoph Hellwig wrote: > Bits of the buffer.c based write_end implementations that don't know > about buffer_heads and can be reused by other implementations. > > Signed-off-by: Christoph Hellwig This actually already had two reviews: Reviewed-by: Bri