From: Wang Shilong Date: Fri, 11 May 2018 02:26:03 +0000 (+0900) Subject: ubifs, xattr: remove misguided quota flags X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=422edacec0927b091ea5c32384f9d5b89efec1c1;p=linux.git ubifs, xattr: remove misguided quota flags Originally, Yang Dongsheng added quota support for ubifs, but it turned out upstream won't accept it. Since ubifs don't touch any quota code, S_NOQUOTA flag is misguided here, and currently it is mainly used to avoid recursion for system quota files. Let's make things clearly and remove unnecessary and misguied quota flags here. Reported-by: Rock Lee Signed-off-by: Wang Shilong Signed-off-by: Richard Weinberger --- diff --git a/fs/ubifs/xattr.c b/fs/ubifs/xattr.c index 759f1a209dbb6..6f720fdf5020a 100644 --- a/fs/ubifs/xattr.c +++ b/fs/ubifs/xattr.c @@ -139,7 +139,7 @@ static int create_xattr(struct ubifs_info *c, struct inode *host, inode->i_op = &empty_iops; inode->i_fop = &empty_fops; - inode->i_flags |= S_SYNC | S_NOATIME | S_NOCMTIME | S_NOQUOTA; + inode->i_flags |= S_SYNC | S_NOATIME | S_NOCMTIME; ui = ubifs_inode(inode); ui->xattr = 1; ui->flags |= UBIFS_XATTR_FL;