Re: [f2fs-dev] [PATCH 1/2] f2fs: add F2FS_IOC_GET_COMPRESS_OPTION ioctl

2020-10-14 Thread Daeho Jeong
Randy, I'll talk with F2FS maintainers about this. Eric, Sure, I'll add it in the commit message. 2020년 10월 13일 (화) 오후 3:13, Eric Biggers 님이 작성: > > On Tue, Oct 13, 2020 at 11:24:28AM +0900, Daeho Jeong wrote: > > From: Daeho Jeong > > > > Added a new F2FS_IOC_GET_COMPRESS_OPTION ioctl to get

Re: [f2fs-dev] [PATCH 1/2] f2fs: add F2FS_IOC_GET_COMPRESS_OPTION ioctl

2020-10-13 Thread Eric Biggers
On Tue, Oct 13, 2020 at 11:24:28AM +0900, Daeho Jeong wrote: > From: Daeho Jeong > > Added a new F2FS_IOC_GET_COMPRESS_OPTION ioctl to get file compression > option of a file. > For new ioctls please mention the documentation, tests, and use cases. - Eric

Re: [PATCH 1/2] f2fs: add F2FS_IOC_GET_COMPRESS_OPTION ioctl

2020-10-12 Thread Randy Dunlap
On 10/12/20 7:24 PM, Daeho Jeong wrote: > diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h > index 53fe2853579c..a33c90cf979b 100644 > --- a/fs/f2fs/f2fs.h > +++ b/fs/f2fs/f2fs.h > @@ -433,6 +433,8 @@ static inline bool __has_cursum_space(struct f2fs_journal > *journal, >

[PATCH 1/2] f2fs: add F2FS_IOC_GET_COMPRESS_OPTION ioctl

2020-10-12 Thread Daeho Jeong
From: Daeho Jeong Added a new F2FS_IOC_GET_COMPRESS_OPTION ioctl to get file compression option of a file. Signed-off-by: Daeho Jeong --- fs/f2fs/f2fs.h | 7 +++ fs/f2fs/file.c | 30 ++ 2 files changed, 37 insertions(+) diff --git a/fs/f2fs/f2fs.h