All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Monakhov <dmonakhov@openvz.org>
To: Jan Kara <jack@suse.cz>
Cc: linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH] quota: sb_quota state flags cleanup
Date: Tue, 02 Feb 2010 19:07:55 +0300	[thread overview]
Message-ID: <87hbpzk4dg.fsf@openvz.org> (raw)
In-Reply-To: <20100202154050.GG7056@quack.suse.cz> (Jan Kara's message of "Tue, 2 Feb 2010 16:40:50 +0100")

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()

>> -static inline int sb_any_quota_loaded(struct super_block *sb)
>> +static inline unsigned sb_any_quota_loaded(struct super_block *sb)
>>  {
>> -	return sb_has_quota_loaded(sb, USRQUOTA) ||
>> -		sb_has_quota_loaded(sb, GRPQUOTA);
>> +	unsigned type, tmsk = 0;
>> +	for (type = 0; type < MAXQUOTAS; type++)
>> +		tmsk |= sb_has_quota_loaded(sb, type) << type;
>> +	return	tmsk;
>>  }
>   And here as well...
>
>> -static inline int sb_any_quota_active(struct super_block *sb)
>> +static inline unsigned sb_any_quota_active(struct super_block *sb)
>>  {
>> -	return sb_has_quota_active(sb, USRQUOTA) ||
>> -	       sb_has_quota_active(sb, GRPQUOTA);
>> +	return sb_any_quota_loaded(sb);
>>  }
Opps, will redo.
>   This is wrong - quota is active if it is loaded and is not suspended...
>
> 									Honza

  reply	other threads:[~2010-02-02 16:08 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 [this message]
2010-02-02 16:15     ` Jan Kara

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=87hbpzk4dg.fsf@openvz.org \
    --to=dmonakhov@openvz.org \
    --cc=jack@suse.cz \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.