[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <003801d6502f$f40101c0$dc030540$@samsung.com>
Date: Thu, 2 Jul 2020 14:16:34 +0900
From: "Namjae Jeon" <namjae.jeon@...sung.com>
To: "'Park Ju Hyung'" <qkrwngud825@...il.com>
Cc: "'Sungjong Seo'" <sj1557.seo@...sung.com>,
"'open list'" <linux-kernel@...r.kernel.org>,
<linux-fsdevel@...r.kernel.org>
Subject: RE: [PATCH] exfat: implement "quiet" option for setattr
>
> 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 condition.
> }
>
> + if (error) {
> + if (sbi->options.quiet)
> + error = 0;
> + goto out;
> + }
Powered by blists - more mailing lists