linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: Dmitry Monakhov <dmonakhov@openvz.org>
Cc: Jan Kara <jack@suse.cz>, linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH] quota: sb_quota state flags cleanup
Date: Tue, 2 Feb 2010 17:15:38 +0100	[thread overview]
Message-ID: <20100202161538.GK7056@quack.suse.cz> (raw)
In-Reply-To: <87hbpzk4dg.fsf@openvz.org>

On Tue 02-02-10 19:07:55, Dmitry Monakhov wrote:
> Jan Kara <jack@suse.cz> writes:
> 
> > On Tue 02-02-10 17:07:49, Dmitry Monakhov wrote:
> >> - remove hardcoded USRQUOTA/GRPQUOTA flags
> >> - convert int to bool for appropriate functions
> >> 
> >> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> >> ---
> > ...
> >> -static inline int sb_any_quota_suspended(struct super_block *sb)
> >> +static inline unsigned sb_any_quota_suspended(struct super_block *sb)
> >>  {
> >> -	return sb_has_quota_suspended(sb, USRQUOTA) ||
> >> -		sb_has_quota_suspended(sb, GRPQUOTA);
> >> +	unsigned type, tmsk = 0;
> >> +	for (type = 0; type < MAXQUOTAS; type++)
> >> +		tmsk |= sb_has_quota_suspended(sb, type) << type;
> >> +	return tmsk;
> >>  }
> >   Any particular reason for returning the mask instead of a simple bool?
> > Are you going to use the mask in future?
> >
> Actually i've not use this yet, but it is reasonable to
> pass this mask in some places for example:
> vfs_dq_init() {
>  mask = sb_any_quota_active(inode->sb)
>  dq_op->initialize(inode, mask)
> }
> in order to avoid checks for the same value inside ->initialize()
  OK, but we usually have to recheck with dqptr_sem held anyway
to make the check reliable... The sb_any_quota_* checks are there usually
to optimize the common case where no quota is enabled on the filesystem.
But it's not a big deal either way... I was just curious...

								Honza
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

      reply	other threads:[~2010-02-02 16:15 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-02-02 14:07 [PATCH] quota: sb_quota state flags cleanup Dmitry Monakhov
2010-02-02 15:40 ` Jan Kara
2010-02-02 16:07   ` Dmitry Monakhov
2010-02-02 16:15     ` Jan Kara [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100202161538.GK7056@quack.suse.cz \
    --to=jack@suse.cz \
    --cc=dmonakhov@openvz.org \
    --cc=linux-fsdevel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).