summaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
authorRoman Anufriev <dotdot@yandex-team.ru>2020-10-22 06:20:59 +0300
committerTheodore Ts'o <tytso@mit.edu>2020-12-03 09:18:48 -0500
commitf177ee0882af031b3d7a1e66e1639a58c7932dee (patch)
treecd061475283f5b60ff134a9406403fa836905891 /fs/ext4/super.c
parentface525ecb30b3d7e35be21911a933980ab504f9 (diff)
downloadlinux-f177ee0882af031b3d7a1e66e1639a58c7932dee.tar.gz
linux-f177ee0882af031b3d7a1e66e1639a58c7932dee.tar.bz2
linux-f177ee0882af031b3d7a1e66e1639a58c7932dee.zip
ext4: add helpers for checking whether quota can be enabled/is journalled
Right now, there are several places, where we check whether fs is capable of enabling quota or if quota is journalled with quite long and non-self-descriptive condition statements. This patch wraps these statements into helpers for better readability and easier usage. Link: https://lore.kernel.org/r/1603336860-16153-1-git-send-email-dotdot@yandex-team.ru Reviewed-by: Jan Kara <jack@suse.cz> Signed-off-by: Roman Anufriev <dotdot@yandex-team.ru> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r--fs/ext4/super.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 40e7aebaf3d0..d9e1946a634e 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -6210,11 +6210,8 @@ static int ext4_release_dquot(struct dquot *dquot)
static int ext4_mark_dquot_dirty(struct dquot *dquot)
{
struct super_block *sb = dquot->dq_sb;
- struct ext4_sb_info *sbi = EXT4_SB(sb);
- /* Are we journaling quotas? */
- if (ext4_has_feature_quota(sb) ||
- sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
+ if (ext4_is_quota_journalled(sb)) {
dquot_mark_dquot_dirty(dquot);
return ext4_write_dquot(dquot);
} else {