diff mbox series

ext4: remove QUOTA flag setting in set_qf_name()

Message ID 20181008235013.13687-1-cgxu519@gmx.com
State Rejected
Headers show
Series ext4: remove QUOTA flag setting in set_qf_name() | expand

Commit Message

cgxu519 Oct. 8, 2018, 11:50 p.m. UTC
Mount flag QUOTA is the same as flag USRQUOTA in ext4, so should
not set flag QUOTA in set_qf_name().

Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
---
 fs/ext4/super.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Theodore Ts'o Oct. 9, 2018, 1:50 a.m. UTC | #1
On Tue, Oct 09, 2018 at 07:50:13AM +0800, Chengguang Xu wrote:
> Mount flag QUOTA is the same as flag USRQUOTA in ext4, so should
> not set flag QUOTA in set_qf_name().
> 
> Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
> ---
>  fs/ext4/super.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/fs/ext4/super.c b/fs/ext4/super.c
> index 1145109968ef..9ed33e4860db 100644
> --- a/fs/ext4/super.c
> +++ b/fs/ext4/super.c
> @@ -1566,7 +1566,6 @@ static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
>  		goto errout;
>  	}
>  	sbi->s_qf_names[qtype] = qname;
> -	set_opt(sb, QUOTA);

No, sorry.  This is still needed so that the usrjquota and the
grpjquota mount options will work correctly.  And it's not like
set_qf_name() is a performance hot path.

					- Ted
diff mbox series

Patch

diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 1145109968ef..9ed33e4860db 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1566,7 +1566,6 @@  static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
 		goto errout;
 	}
 	sbi->s_qf_names[qtype] = qname;
-	set_opt(sb, QUOTA);
 	return 1;
 errout:
 	kfree(qname);