Re: [f2fs-dev] [PATCH] f2fs: add ioctl to expose current features

2017-07-26 Thread Chao Yu
Hi Jaegeuk, I noted that the patch ("f2fs: give a try to do atomic write in -ENOMEM case") hasn't been sent to mailing list before been merged. Could you please send it out, and please add: Reviewed-by: Chao Yu Thanks, On 2017/7/22 4:11, Jaegeuk Kim wrote: > This patch

Re: [f2fs-dev] [PATCH] f2fs: add ioctl to expose current features

2017-07-26 Thread Chao Yu
Hi Jaegeuk, I noted that the patch ("f2fs: give a try to do atomic write in -ENOMEM case") hasn't been sent to mailing list before been merged. Could you please send it out, and please add: Reviewed-by: Chao Yu Thanks, On 2017/7/22 4:11, Jaegeuk Kim wrote: > This patch adds an ioctl to

Re: [f2fs-dev] [PATCH] f2fs: add ioctl to expose current features

2017-07-26 Thread Chao Yu
On 2017/7/22 4:11, Jaegeuk Kim wrote: > This patch adds an ioctl to provide feature information to user. > For exapmle, SQLite can use this ioctl to detect whether f2fs support atomic > write or not. > > Signed-off-by: Jaegeuk Kim Reviewed-by: Chao Yu

Re: [f2fs-dev] [PATCH] f2fs: add ioctl to expose current features

2017-07-26 Thread Chao Yu
On 2017/7/22 4:11, Jaegeuk Kim wrote: > This patch adds an ioctl to provide feature information to user. > For exapmle, SQLite can use this ioctl to detect whether f2fs support atomic > write or not. > > Signed-off-by: Jaegeuk Kim Reviewed-by: Chao Yu Thanks, > --- > fs/f2fs/f2fs.h | 2 ++

Re: [PATCH] f2fs: add ioctl to expose current features

2017-07-21 Thread Jaegeuk Kim
On 07/21, Andreas Dilger wrote: > > On Jul 21, 2017, at 2:11 PM, Jaegeuk Kim wrote: > > > > This patch adds an ioctl to provide feature information to user. > > For exapmle, SQLite can use this ioctl to detect whether f2fs support atomic > > write or not. > > Just for

Re: [PATCH] f2fs: add ioctl to expose current features

2017-07-21 Thread Jaegeuk Kim
On 07/21, Andreas Dilger wrote: > > On Jul 21, 2017, at 2:11 PM, Jaegeuk Kim wrote: > > > > This patch adds an ioctl to provide feature information to user. > > For exapmle, SQLite can use this ioctl to detect whether f2fs support atomic > > write or not. > > Just for reference, ext4 exposes

Re: [PATCH] f2fs: add ioctl to expose current features

2017-07-21 Thread Andreas Dilger
> On Jul 21, 2017, at 2:11 PM, Jaegeuk Kim wrote: > > This patch adds an ioctl to provide feature information to user. > For exapmle, SQLite can use this ioctl to detect whether f2fs support atomic > write or not. Just for reference, ext4 exposes functionality that the

Re: [PATCH] f2fs: add ioctl to expose current features

2017-07-21 Thread Andreas Dilger
> On Jul 21, 2017, at 2:11 PM, Jaegeuk Kim wrote: > > This patch adds an ioctl to provide feature information to user. > For exapmle, SQLite can use this ioctl to detect whether f2fs support atomic > write or not. Just for reference, ext4 exposes functionality that the kernel supports via a

[PATCH] f2fs: add ioctl to expose current features

2017-07-21 Thread Jaegeuk Kim
This patch adds an ioctl to provide feature information to user. For exapmle, SQLite can use this ioctl to detect whether f2fs support atomic write or not. Signed-off-by: Jaegeuk Kim --- fs/f2fs/f2fs.h | 2 ++ fs/f2fs/file.c | 13 + 2 files changed, 15

[PATCH] f2fs: add ioctl to expose current features

2017-07-21 Thread Jaegeuk Kim
This patch adds an ioctl to provide feature information to user. For exapmle, SQLite can use this ioctl to detect whether f2fs support atomic write or not. Signed-off-by: Jaegeuk Kim --- fs/f2fs/f2fs.h | 2 ++ fs/f2fs/file.c | 13 + 2 files changed, 15 insertions(+) diff --git