diff options
author | Wang Shilong <wshilong@ddn.com> | 2018-05-11 11:26:03 +0900 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2018-06-07 15:53:14 +0200 |
commit | 422edacec0927b091ea5c32384f9d5b89efec1c1 (patch) | |
tree | af74faf00e08271471bc29844c07de4f42ba7e71 /fs/ubifs | |
parent | 31c49eac780b3bcd1e34d71c2f5c79527b26e86c (diff) | |
download | talos-op-linux-422edacec0927b091ea5c32384f9d5b89efec1c1.tar.gz talos-op-linux-422edacec0927b091ea5c32384f9d5b89efec1c1.zip |
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 <rockdotlee@gmail.com>
Signed-off-by: Wang Shilong <wshilong@ddn.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/xattr.c b/fs/ubifs/xattr.c index 759f1a209dbb..6f720fdf5020 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; |