diff options
author | Chengguang Xu <cgxu519@gmx.com> | 2019-03-20 13:03:59 +0800 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2019-03-26 11:21:23 +0100 |
commit | df15a2a59d0b29d86e17140b83ed231adaded12f (patch) | |
tree | 205eee37333832a0ca306ee379312a07981c1099 /fs/quota/dquot.c | |
parent | 1206d028b2c8f159506e0efd6dad66aca82e8de8 (diff) | |
download | linux-df15a2a59d0b29d86e17140b83ed231adaded12f.tar.bz2 |
quota: code cleanup for __dquot_alloc_space()
Replace (flags & DQUOT_SPACE_RESERVE) with
variable reserve.
Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota/dquot.c')
-rw-r--r-- | fs/quota/dquot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c index fc20e06c56ba..00de508f9d2e 100644 --- a/fs/quota/dquot.c +++ b/fs/quota/dquot.c @@ -1663,7 +1663,7 @@ int __dquot_alloc_space(struct inode *inode, qsize_t number, int flags) for (cnt = 0; cnt < MAXQUOTAS; cnt++) { if (!dquots[cnt]) continue; - if (flags & DQUOT_SPACE_RESERVE) { + if (reserve) { ret = dquot_add_space(dquots[cnt], 0, number, flags, &warn[cnt]); } else { @@ -1676,7 +1676,7 @@ int __dquot_alloc_space(struct inode *inode, qsize_t number, int flags) if (!dquots[cnt]) continue; spin_lock(&dquots[cnt]->dq_dqb_lock); - if (flags & DQUOT_SPACE_RESERVE) { + if (reserve) { dquots[cnt]->dq_dqb.dqb_rsvspace -= number; } else { |