Re: [PATCH 1/3] befs: remove off argument of befs_read_datastream

2016-07-28 Thread Luis de Bethencourt
On 28/07/16 00:37, Salah Triki wrote: > On Tue, Jul 12, 2016 at 12:02:48AM +0100, Luis de Bethencourt wrote: >> befs_read_datastream() is used to read the inode from the disk, off is >> meant to provide the offset of the data in the buffer head. But the only >> function using this argument already

Re: [PATCH 1/3] befs: remove off argument of befs_read_datastream

2016-07-27 Thread Salah Triki
On Tue, Jul 12, 2016 at 12:02:48AM +0100, Luis de Bethencourt wrote: > befs_read_datastream() is used to read the inode from the disk, off is > meant to provide the offset of the data in the buffer head. But the only > function using this argument already knows the starting offset of the node, > so

[PATCH 1/3] befs: remove off argument of befs_read_datastream

2016-07-11 Thread Luis de Bethencourt
befs_read_datastream() is used to read the inode from the disk, off is meant to provide the offset of the data in the buffer head. But the only function using this argument already knows the starting offset of the node, so this argument isn't needed. Signed-off-by: Luis de Bethencourt --- Hi, I