Re: [PATCH 09/14] fuse: Implement writepages and write_begin/write_end callbacks - v3

2013-06-14 Thread Maxim Patlasov
Hi Miklos, 04/25/2013 02:35 PM, Miklos Szeredi пишет: On Mon, Apr 1, 2013 at 12:42 PM, Maxim V. Patlasov wrote: The .writepages one is required to make each writeback request carry more than one page on it. I'd split this into two parts: 1) implement ->writepages() and enable it unconditiona

Re: [PATCH 09/14] fuse: Implement writepages and write_begin/write_end callbacks - v3

2013-04-25 Thread Miklos Szeredi
On Mon, Apr 1, 2013 at 12:42 PM, Maxim V. Patlasov wrote: > The .writepages one is required to make each writeback request carry more than > one page on it. I'd split this into two parts: 1) implement ->writepages() and enable it unconditionally for mmaped writeback (why is it not enabled by thi

[PATCH 09/14] fuse: Implement writepages and write_begin/write_end callbacks - v3

2013-04-01 Thread Maxim V. Patlasov
The .writepages one is required to make each writeback request carry more than one page on it. Changed in v2: - fixed fuse_prepare_write() to avoid reads beyond EOF - fixed fuse_prepare_write() to zero uninitialized part of page Changed in v3: - moved common part of fuse_readpage() and fuse_pr

Re: [PATCH 09/14] fuse: Implement writepages and write_begin/write_end callbacks - v2

2013-03-27 Thread Maxim V. Patlasov
Hi Miklos, 01/30/2013 03:08 AM, Miklos Szeredi пишет: On Fri, Jan 25, 2013 at 7:25 PM, Maxim V. Patlasov wrote: The .writepages one is required to make each writeback request carry more than one page on it. Changed in v2: - fixed fuse_prepare_write() to avoid reads beyond EOF - fixed fuse

Re: [PATCH 09/14] fuse: Implement writepages and write_begin/write_end callbacks - v2

2013-01-29 Thread Miklos Szeredi
On Fri, Jan 25, 2013 at 7:25 PM, Maxim V. Patlasov wrote: > The .writepages one is required to make each writeback request carry more than > one page on it. > > Changed in v2: > - fixed fuse_prepare_write() to avoid reads beyond EOF > - fixed fuse_prepare_write() to zero uninitialized part of pa

[PATCH 09/14] fuse: Implement writepages and write_begin/write_end callbacks - v2

2013-01-25 Thread Maxim V. Patlasov
The .writepages one is required to make each writeback request carry more than one page on it. Changed in v2: - fixed fuse_prepare_write() to avoid reads beyond EOF - fixed fuse_prepare_write() to zero uninitialized part of page Original patch by: Pavel Emelyanov Signed-off-by: Maxim V. Patlas

[PATCH 09/14] fuse: Implement writepages and write_begin/write_end callbacks

2012-11-16 Thread Maxim Patlasov
The .writepages one is required to make each writeback request carry more than one page on it. Original patch by: Pavel Emelyanov Signed-off-by: Maxim Patlasov --- fs/fuse/file.c | 251 1 files changed, 250 insertions(+), 1 deletions(-)