Re: [PATCH 3/3] fuse: pass gfp flags to fuse_request_alloc

2019-08-22 Thread Khazhismel Kumykov
On Wed, Aug 21, 2019 at 5:18 PM Shakeel Butt wrote: > > On Wed, Aug 21, 2019 at 5:10 PM Khazhismel Kumykov wrote: > > > > Instead of having a helper per flag > > > > Signed-off-by: Khazhismel Kumykov > > I think it would be better to re-order the patch 2 and 3 of this > series. There will be

Re: [PATCH 3/3] fuse: pass gfp flags to fuse_request_alloc

2019-08-21 Thread Shakeel Butt
On Wed, Aug 21, 2019 at 5:10 PM Khazhismel Kumykov wrote: > > Instead of having a helper per flag > > Signed-off-by: Khazhismel Kumykov I think it would be better to re-order the patch 2 and 3 of this series. There will be less code churn. > --- > fs/fuse/dev.c| 22 +++---

[PATCH 3/3] fuse: pass gfp flags to fuse_request_alloc

2019-08-21 Thread Khazhismel Kumykov
Instead of having a helper per flag Signed-off-by: Khazhismel Kumykov --- fs/fuse/dev.c| 22 +++--- fs/fuse/file.c | 6 +++--- fs/fuse/fuse_i.h | 6 +- fs/fuse/inode.c | 4 ++-- 4 files changed, 9 insertions(+), 29 deletions(-) diff --git a/fs/fuse/dev.c