Re: [PATCH 07/11] fuse: restructure fuse_readpage()

2014-01-20 Thread Maxim Patlasov
On 01/06/2014 08:43 PM, Miklos Szeredi wrote: On Fri, Dec 20, 2013 at 06:54:40PM +0400, Maxim Patlasov wrote: Hi Miklos, Sorry for delay, see please inline comments below. On 11/12/2013 09:17 PM, Miklos Szeredi wrote: On Thu, Oct 10, 2013 at 05:11:25PM +0400, Maxim Patlasov wrote: Move the

Re: [PATCH 07/11] fuse: restructure fuse_readpage()

2014-01-20 Thread Maxim Patlasov
On 01/06/2014 08:43 PM, Miklos Szeredi wrote: On Fri, Dec 20, 2013 at 06:54:40PM +0400, Maxim Patlasov wrote: Hi Miklos, Sorry for delay, see please inline comments below. On 11/12/2013 09:17 PM, Miklos Szeredi wrote: On Thu, Oct 10, 2013 at 05:11:25PM +0400, Maxim Patlasov wrote: Move the

Re: [PATCH 07/11] fuse: restructure fuse_readpage()

2014-01-06 Thread Miklos Szeredi
On Fri, Dec 20, 2013 at 06:54:40PM +0400, Maxim Patlasov wrote: > Hi Miklos, > > Sorry for delay, see please inline comments below. > > On 11/12/2013 09:17 PM, Miklos Szeredi wrote: > >On Thu, Oct 10, 2013 at 05:11:25PM +0400, Maxim Patlasov wrote: > >>Move the code filling and sending read

Re: [PATCH 07/11] fuse: restructure fuse_readpage()

2014-01-06 Thread Miklos Szeredi
On Fri, Dec 20, 2013 at 06:54:40PM +0400, Maxim Patlasov wrote: Hi Miklos, Sorry for delay, see please inline comments below. On 11/12/2013 09:17 PM, Miklos Szeredi wrote: On Thu, Oct 10, 2013 at 05:11:25PM +0400, Maxim Patlasov wrote: Move the code filling and sending read request to a

Re: [PATCH 07/11] fuse: restructure fuse_readpage()

2013-12-20 Thread Maxim Patlasov
Hi Miklos, Sorry for delay, see please inline comments below. On 11/12/2013 09:17 PM, Miklos Szeredi wrote: On Thu, Oct 10, 2013 at 05:11:25PM +0400, Maxim Patlasov wrote: Move the code filling and sending read request to a separate function. Future patches will use it for .write_begin --

Re: [PATCH 07/11] fuse: restructure fuse_readpage()

2013-12-20 Thread Maxim Patlasov
Hi Miklos, Sorry for delay, see please inline comments below. On 11/12/2013 09:17 PM, Miklos Szeredi wrote: On Thu, Oct 10, 2013 at 05:11:25PM +0400, Maxim Patlasov wrote: Move the code filling and sending read request to a separate function. Future patches will use it for .write_begin --

Re: [PATCH 07/11] fuse: restructure fuse_readpage()

2013-11-12 Thread Miklos Szeredi
On Thu, Oct 10, 2013 at 05:11:25PM +0400, Maxim Patlasov wrote: > Move the code filling and sending read request to a separate function. Future > patches will use it for .write_begin -- partial modification of a page > requires reading the page from the storage very similarly to what >

Re: [PATCH 07/11] fuse: restructure fuse_readpage()

2013-11-12 Thread Miklos Szeredi
On Thu, Oct 10, 2013 at 05:11:25PM +0400, Maxim Patlasov wrote: Move the code filling and sending read request to a separate function. Future patches will use it for .write_begin -- partial modification of a page requires reading the page from the storage very similarly to what fuse_readpage

[PATCH 07/11] fuse: restructure fuse_readpage()

2013-10-10 Thread Maxim Patlasov
Move the code filling and sending read request to a separate function. Future patches will use it for .write_begin -- partial modification of a page requires reading the page from the storage very similarly to what fuse_readpage does. Signed-off-by: Maxim Patlasov --- fs/fuse/file.c | 55

[PATCH 07/11] fuse: restructure fuse_readpage()

2013-10-10 Thread Maxim Patlasov
Move the code filling and sending read request to a separate function. Future patches will use it for .write_begin -- partial modification of a page requires reading the page from the storage very similarly to what fuse_readpage does. Signed-off-by: Maxim Patlasov mpatla...@parallels.com ---