Re: [PATCH 2/2] exfat: add support FITRIM ioctl

2021-02-15 Thread Hyeongseok Kim
Hi Chaitanya, Thank you for the review. On 2/16/21 4:33 AM, Chaitanya Kulkarni wrote: On 2/14/21 20:28, Hyeongseok Kim wrote: + +int exfat_trim_fs(struct inode *inode, struct fstrim_range *range) +{ + struct super_block *sb = inode->i_sb; Reverse tree style for function variable declarat

Re: [PATCH 2/2] exfat: add support FITRIM ioctl

2021-02-15 Thread Chaitanya Kulkarni
On 2/14/21 20:28, Hyeongseok Kim wrote: > add FITRIM ioctl to support trimming mounted filesystem > > Signed-off-by: Hyeongseok Kim > --- > fs/exfat/balloc.c | 89 + > fs/exfat/exfat_fs.h | 1 + > fs/exfat/file.c | 33 + > 3 files

[PATCH 2/2] exfat: add support FITRIM ioctl

2021-02-14 Thread Hyeongseok Kim
add FITRIM ioctl to support trimming mounted filesystem Signed-off-by: Hyeongseok Kim --- fs/exfat/balloc.c | 89 + fs/exfat/exfat_fs.h | 1 + fs/exfat/file.c | 33 + 3 files changed, 123 insertions(+) diff --git a/fs/exfat/ball