Re: [PATCH] exfat: implement "quiet" option for setattr

2020-07-06 Thread Namjae Jeon
2020-07-06 17:22 GMT+09:00, Ju Hyung Park : > Hi Namjae. Hi Juhyung, > > Looks like I ported this incorrectly from the previous sdFAT base. > > I'll fix, test again and send v2. Okay:) Thanks! > > Thanks. > > On Thu, Jul 2, 2020 at 2:16 PM Namjae Jeon wrote: >> >> > >> > if

Re: [PATCH] exfat: implement "quiet" option for setattr

2020-07-06 Thread Ju Hyung Park
Hi Namjae. Looks like I ported this incorrectly from the previous sdFAT base. I'll fix, test again and send v2. Thanks. On Thu, Jul 2, 2020 at 2:16 PM Namjae Jeon wrote: > > > > > if (((attr->ia_valid & ATTR_UID) && > >!uid_eq(attr->ia_uid, sbi->options.fs_uid)) || @@ -322,6

RE: [PATCH] exfat: implement "quiet" option for setattr

2020-07-01 Thread Namjae Jeon
> > if (((attr->ia_valid & ATTR_UID) && >!uid_eq(attr->ia_uid, sbi->options.fs_uid)) || @@ -322,6 +325,12 > @@ int > exfat_setattr(struct dentry *dentry, struct iattr *attr) > goto out; You should remove goto statement and curly braces here to reach if error

[PATCH] exfat: implement "quiet" option for setattr

2020-06-27 Thread Park Ju Hyung
Few programs, especially old ones, simply don't want to work if there isn't a POSIX-compliant setattr. Follow vfat and implement a new "quiet" option to workaround this. Signed-off-by: Park Ju Hyung --- fs/exfat/exfat_fs.h | 2 ++ fs/exfat/file.c | 13 +++-- fs/exfat/super.c|