Re: [f2fs-dev] [PATCH V3 1/7] FS: Introduce read callbacks

2019-06-25 Thread Chandan Rajendra
On Saturday, June 22, 2019 1:33:57 AM IST Eric Biggers wrote: > Hi Chandan, > > On Sun, Jun 16, 2019 at 09:38:07PM +0530, Chandan Rajendra wrote: > > Read callbacks implements a state machine to be executed after a > > buffered read I/O is completed. They help in further processing the file > >

Re: [f2fs-dev] [PATCH V3 1/7] FS: Introduce read callbacks

2019-06-21 Thread Eric Biggers
Hi Chandan, On Sun, Jun 16, 2019 at 09:38:07PM +0530, Chandan Rajendra wrote: > Read callbacks implements a state machine to be executed after a > buffered read I/O is completed. They help in further processing the file > data read from the backing store. Currently, decryption is the only post >

[f2fs-dev] [PATCH V3 1/7] FS: Introduce read callbacks

2019-06-16 Thread Chandan Rajendra
Read callbacks implements a state machine to be executed after a buffered read I/O is completed. They help in further processing the file data read from the backing store. Currently, decryption is the only post processing step to be supported. The execution of the state machine is to be initiated