Re: [f2fs-dev] [PATCH] f2fs: fix the bug in f2fs_direct_IO with inline encryption

2020-11-12 Thread Eric Biggers
On Fri, Nov 13, 2020 at 11:43:48AM +0800, Lihong Kou wrote: > Now we have inline encrytion and fs layer encrption in the kernel, when we > choose inline encryption, we should not use bufferd IO instead of direct IO. > > Signed-off-by: Lihong Kou > --- > fs/f2fs/f2fs.h | 4 ++-- > 1 file changed,

[f2fs-dev] [PATCH] f2fs: fix the bug in f2fs_direct_IO with inline encryption

2020-11-12 Thread Lihong Kou
Now we have inline encrytion and fs layer encrption in the kernel, when we choose inline encryption, we should not use bufferd IO instead of direct IO. Signed-off-by: Lihong Kou --- fs/f2fs/f2fs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2