Re: [PATCH] vfs: remove unused argument in iterate_bdevs

2018-01-14 Thread kbuild test robot
Hi Rakesh, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on linus/master] [also build test WARNING on v4.15-rc7 next-20180112] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci

Re: [PATCH] vfs: remove unused argument in iterate_bdevs

2018-01-14 Thread kbuild test robot
Hi Rakesh, Thank you for the patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v4.15-rc7 next-20180112] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/c

Re: [PATCH] vfs: remove unused argument in iterate_bdevs

2018-01-11 Thread Al Viro
On Thu, Jan 11, 2018 at 04:04:07PM +0200, Rakesh Pandit wrote: > Signed-off-by: Rakesh Pandit > --- > fs/block_dev.c | 4 ++-- > fs/sync.c | 12 ++-- > include/linux/fs.h | 4 ++-- > 3 files changed, 10 insertions(+), 10 deletions(-) > > diff --git a/fs/block_dev.c b/fs/bl

Re: [PATCH] vfs: remove unused argument in iterate_bdevs

2018-01-11 Thread Rakesh Pandit
On Thu, Jan 11, 2018 at 04:06:45PM +0100, Jan Kara wrote: > On Thu 11-01-18 16:04:07, Rakesh Pandit wrote: > > @@ -2472,7 +2472,7 @@ static inline int thaw_bdev(struct block_device > > *bdev, struct super_block *sb) > > return 0; > > } > > > > -static inline void iterate_bdevs(void (*f)(str

Re: [PATCH] vfs: remove unused argument in iterate_bdevs

2018-01-11 Thread Jan Kara
On Thu 11-01-18 16:04:07, Rakesh Pandit wrote: > @@ -2472,7 +2472,7 @@ static inline int thaw_bdev(struct block_device *bdev, > struct super_block *sb) > return 0; > } > > -static inline void iterate_bdevs(void (*f)(struct block_device *, void *), > void *arg) > +static inline void itera

[PATCH] vfs: remove unused argument in iterate_bdevs

2018-01-11 Thread Rakesh Pandit
Signed-off-by: Rakesh Pandit --- fs/block_dev.c | 4 ++-- fs/sync.c | 12 ++-- include/linux/fs.h | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/fs/block_dev.c b/fs/block_dev.c index 4a181fc..95eba30 100644 --- a/fs/block_dev.c +++ b/fs/block_dev