Re: [PATCH 2/6] fuse: add support of async IO

2013-04-23 Thread Maxim V. Patlasov
Hi Miklos, 04/22/2013 08:34 PM, Miklos Szeredi пишет: On Fri, Dec 14, 2012 at 07:20:41PM +0400, Maxim V. Patlasov wrote: The patch implements a framework to process an IO request asynchronously. The idea is to associate several fuse requests with a single kiocb by means of fuse_io_priv structur

Re: [PATCH 2/6] fuse: add support of async IO

2013-04-22 Thread Miklos Szeredi
On Fri, Dec 14, 2012 at 07:20:41PM +0400, Maxim V. Patlasov wrote: > The patch implements a framework to process an IO request asynchronously. The > idea is to associate several fuse requests with a single kiocb by means of > fuse_io_priv structure. The structure plays the same role for FUSE as 'st

[PATCH 2/6] fuse: add support of async IO

2012-12-14 Thread Maxim V. Patlasov
The patch implements a framework to process an IO request asynchronously. The idea is to associate several fuse requests with a single kiocb by means of fuse_io_priv structure. The structure plays the same role for FUSE as 'struct dio' for direct-io.c. The framework is supposed to be used like thi

[PATCH 2/6] fuse: add support of async IO

2012-12-09 Thread Maxim V. Patlasov
The patch implements a framework to process an IO request asynchronously. The idea is to associate several fuse requests with a single kiocb by means of fuse_io_priv structure. The structure plays the same role for FUSE as 'struct dio' for direct-io.c. The framework is supposed to be used like thi