Received: by 2002:a05:6a10:6744:0:0:0:0 with SMTP id w4csp347085pxu; Thu, 15 Oct 2020 05:38:51 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxN6a/wBI82aWpnV+lemcdClnAk7wuLUqoK5dbnpbZItecssFhzvefvwFbt6wcigwgpq1Ok X-Received: by 2002:a17:906:f29a:: with SMTP id gu26mr4011286ejb.363.1602765530944; Thu, 15 Oct 2020 05:38:50 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1602765530; cv=none; d=google.com; s=arc-20160816; b=jisp4qZObbtK1uMcwQQlPxoWPw7HUh0S7sN1U4Yl9xVsH6tsejNyG9zwGwB+DxQpfE vnDbM6vqmdjOKkzSoLZeAjJnZFQkEYjOVXQ7r+D6VmWmTbg4uKfuZc0oEVZ8+hY8P/Wj LJm86y7D19NRe4amX3SlrbNMK73B90m7zl+SgY+iD3I9PaHRfdXopXOAbyPNhICrqR5S 0fOmeYSCbnhnhu38W88r2m7OGhKpY6n1+CxyZkl8avNpBc0PQlaGKM7ZI13LekwBYmIE kbAOKCijwRb49P3S7Lx1WOwwJge/WLIQlWUrP6i/0oKU77S1Ww/bDTJRWEETHx4u51Uj qfUA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=GkUKKnqjD35mfC/9m8B6ftrByVmrvH+dcF5asMB9EqE=; b=WmUiNh/YaUI0wRXKvPUl/JI+ZpsOh8LkmHyZgHSBNZKlO7SMnYNlb4Qa38ow/DmST5 LvIrvptov/Hf4az4Y+Fz2BGEhpGPb2v+9926DRzWd4Y9FkaON0WPQXXrewW8GsRwHTUC C8/Rephx14CBdzUg9MD0Zl+6ufvGwg8STfpBmKWv31tBOucUf6GQeZNnbUKLfqoWQZat wy4BnuyHLecpA1+gWYhZ02movvorTDbiqJbciBywNX6w5MQCYZzV8EyRu5ypL9m3p2NO JfJ4LDO6YBzrLAkjaQSuoT7vA0h0he6tApS+Rwk9kaTOTOE7wMCFFLZhIbZ24wKhENIm qVeg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id ga7si1937062ejc.295.2020.10.15.05.38.16; Thu, 15 Oct 2020 05:38:50 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728009AbgJOMY2 (ORCPT + 99 others); Thu, 15 Oct 2020 08:24:28 -0400 Received: from mx2.suse.de ([195.135.220.15]:37076 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727373AbgJOMY2 (ORCPT ); Thu, 15 Oct 2020 08:24:28 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 9F092AB98; Thu, 15 Oct 2020 12:24:26 +0000 (UTC) Received: by quack2.suse.cz (Postfix, from userid 1000) id 42A511E133C; Thu, 15 Oct 2020 14:24:26 +0200 (CEST) Date: Thu, 15 Oct 2020 14:24:26 +0200 From: Jan Kara To: Roman Anufriev Cc: linux-ext4@vger.kernel.org, tytso@mit.edu, jack@suse.cz, dmtrmonakhov@yandex-team.ru Subject: Re: [PATCH 1/2] ext4: add helpers for checking whether quota is enabled/journalled Message-ID: <20201015122426.GE7037@quack2.suse.cz> References: <1602761572-4713-1-git-send-email-dotdot@yandex-team.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1602761572-4713-1-git-send-email-dotdot@yandex-team.ru> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Thu 15-10-20 14:32:51, Roman Anufriev wrote: > Right now, there are several places, where we check whether quota > is enabled or journalled with quite long and non-self-descriptive > condition statements. > > This patch wraps these statements into helpers (with naming along > with existing ones like sb_has_quota_loaded) for better readability > and easier usage. > > Signed-off-by: Roman Anufriev > Reviewed-by: Dmitry Monakhov Looks good to me. You can add: Reviewed-by: Jan Kara Honza > --- > fs/ext4/ext4.h | 15 +++++++++++++++ > fs/ext4/ext4_jbd2.h | 9 +++------ > fs/ext4/super.c | 5 +---- > 3 files changed, 19 insertions(+), 10 deletions(-) > > diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h > index 250e905..217ae7b 100644 > --- a/fs/ext4/ext4.h > +++ b/fs/ext4/ext4.h > @@ -3251,6 +3251,21 @@ static inline void ext4_unlock_group(struct super_block *sb, > spin_unlock(ext4_group_lock_ptr(sb, group)); > } > > +#ifdef CONFIG_QUOTA > +static inline bool ext4_any_quota_enabled(struct super_block *sb) > +{ > + return (test_opt(sb, QUOTA) || ext4_has_feature_quota(sb)); > +} > + > +static inline bool ext4_is_quota_journalled(struct super_block *sb) > +{ > + struct ext4_sb_info *sbi = EXT4_SB(sb); > + > + return (ext4_has_feature_quota(sb) || > + sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]); > +} > +#endif > + > /* > * Block validity checking > */ > diff --git a/fs/ext4/ext4_jbd2.h b/fs/ext4/ext4_jbd2.h > index 00dc668..4a4eb3f 100644 > --- a/fs/ext4/ext4_jbd2.h > +++ b/fs/ext4/ext4_jbd2.h > @@ -86,17 +86,14 @@ > #ifdef CONFIG_QUOTA > /* Amount of blocks needed for quota update - we know that the structure was > * allocated so we need to update only data block */ > -#define EXT4_QUOTA_TRANS_BLOCKS(sb) ((test_opt(sb, QUOTA) ||\ > - ext4_has_feature_quota(sb)) ? 1 : 0) > +#define EXT4_QUOTA_TRANS_BLOCKS(sb) ((ext4_any_quota_enabled(sb)) ? 1 : 0) > /* Amount of blocks needed for quota insert/delete - we do some block writes > * but inode, sb and group updates are done only once */ > -#define EXT4_QUOTA_INIT_BLOCKS(sb) ((test_opt(sb, QUOTA) ||\ > - ext4_has_feature_quota(sb)) ?\ > +#define EXT4_QUOTA_INIT_BLOCKS(sb) ((ext4_any_quota_enabled(sb)) ?\ > (DQUOT_INIT_ALLOC*(EXT4_SINGLEDATA_TRANS_BLOCKS(sb)-3)\ > +3+DQUOT_INIT_REWRITE) : 0) > > -#define EXT4_QUOTA_DEL_BLOCKS(sb) ((test_opt(sb, QUOTA) ||\ > - ext4_has_feature_quota(sb)) ?\ > +#define EXT4_QUOTA_DEL_BLOCKS(sb) ((ext4_any_quota_enabled(sb)) ?\ > (DQUOT_DEL_ALLOC*(EXT4_SINGLEDATA_TRANS_BLOCKS(sb)-3)\ > +3+DQUOT_DEL_REWRITE) : 0) > #else > diff --git a/fs/ext4/super.c b/fs/ext4/super.c > index 9d01318..a988cf3 100644 > --- a/fs/ext4/super.c > +++ b/fs/ext4/super.c > @@ -6158,11 +6158,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 { > -- > 2.7.4 > -- Jan Kara SUSE Labs, CR