From: Mingming Cao <cmm@us.ibm.com>
To: Eric Sandeen <sandeen@redhat.com>
Cc: ext4 development <linux-ext4@vger.kernel.org>,
Eric Paris <eparis@redhat.com>
Subject: Re: [PATCH 1/2] merge ext4_claim_free_blocks & ext4_has_free_blocks
Date: Fri, 24 Oct 2008 13:45:38 -0700 [thread overview]
Message-ID: <1224881138.6379.5.camel@mingming-laptop> (raw)
In-Reply-To: <49022FB3.7080002@redhat.com>
在 2008-10-24五的 15:27 -0500,Eric Sandeen写道:
> Mingming pointed out that ext4_claim_free_blocks & ext4_has_free_blocks
> are largely cut & pasted; they can be collapsed/merged as follows.
>
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---
>
Reviewed-by: Mingming Cao <cmm@us.ibm.com>
> Index: linux-2.6/fs/ext4/balloc.c
> ===================================================================
> --- linux-2.6.orig/fs/ext4/balloc.c 2008-10-24 15:04:51.672001367 -0500
> +++ linux-2.6/fs/ext4/balloc.c 2008-10-24 15:07:28.369001684 -0500
> @@ -589,8 +589,15 @@ void ext4_free_blocks(handle_t *handle,
> return;
> }
>
> -int ext4_claim_free_blocks(struct ext4_sb_info *sbi,
> - s64 nblocks)
> +/**
> + * ext4_has_free_blocks()
> + * @sbi: in-core super block structure.
> + * @nblocks: number of needed blocks
> + *
> + * Check if filesystem has nblocks free & available for allocation.
> + * On success return 1, return 0 on failure.
> + */
> +int ext4_has_free_blocks(struct ext4_sb_info *sbi, s64 nblocks)
> {
> s64 free_blocks, dirty_blocks;
> s64 root_blocks = 0;
> @@ -620,53 +627,21 @@ int ext4_claim_free_blocks(struct ext4_s
> */
> if (free_blocks < ((root_blocks + nblocks) + dirty_blocks))
> /* we don't have free space */
> - return -ENOSPC;
> + return 0;
>
> - /* Add the blocks to nblocks */
> - percpu_counter_add(dbc, nblocks);
> - return 0;
> + return 1;
> }
>
> -/**
> - * ext4_has_free_blocks()
> - * @sbi: in-core super block structure.
> - * @nblocks: number of neeed blocks
> - *
> - * Check if filesystem has free blocks available for allocation.
> - * Return the number of blocks avaible for allocation for this request
> - * On success, return nblocks
> - */
> -ext4_fsblk_t ext4_has_free_blocks(struct ext4_sb_info *sbi,
> +int ext4_claim_free_blocks(struct ext4_sb_info *sbi,
> s64 nblocks)
> {
> - s64 free_blocks, dirty_blocks;
> - s64 root_blocks = 0;
> - struct percpu_counter *fbc = &sbi->s_freeblocks_counter;
> - struct percpu_counter *dbc = &sbi->s_dirtyblocks_counter;
> -
> - free_blocks = percpu_counter_read_positive(fbc);
> - dirty_blocks = percpu_counter_read_positive(dbc);
> -
> - if (!capable(CAP_SYS_RESOURCE) &&
> - sbi->s_resuid != current->fsuid &&
> - (sbi->s_resgid == 0 || !in_group_p(sbi->s_resgid)))
> - root_blocks = ext4_r_blocks_count(sbi->s_es);
> -
> - if (free_blocks - (nblocks + root_blocks + dirty_blocks) <
> - EXT4_FREEBLOCKS_WATERMARK) {
> - free_blocks = percpu_counter_sum(fbc);
> - dirty_blocks = percpu_counter_sum(dbc);
> - }
> - if (free_blocks <= (root_blocks + dirty_blocks))
> - /* we don't have free space */
> + if (ext4_has_free_blocks(sbi, nblocks)) {
> + percpu_counter_add(&sbi->s_dirtyblocks_counter, nblocks);
> return 0;
> -
> - if (free_blocks - (root_blocks + dirty_blocks) < nblocks)
> - return free_blocks - (root_blocks + dirty_blocks);
> - return nblocks;
> + } else
> + return -ENOSPC;
> }
>
> -
> /**
> * ext4_should_retry_alloc()
> * @sb: super block
> Index: linux-2.6/fs/ext4/ext4.h
> ===================================================================
> --- linux-2.6.orig/fs/ext4/ext4.h 2008-10-24 14:45:07.000000000 -0500
> +++ linux-2.6/fs/ext4/ext4.h 2008-10-24 15:05:22.227064688 -0500
> @@ -1003,8 +1003,7 @@ extern ext4_fsblk_t ext4_new_blocks(hand
> ext4_lblk_t iblock, ext4_fsblk_t goal,
> unsigned long *count, int *errp);
> extern int ext4_claim_free_blocks(struct ext4_sb_info *sbi, s64 nblocks);
> -extern ext4_fsblk_t ext4_has_free_blocks(struct ext4_sb_info *sbi,
> - s64 nblocks);
> +extern int ext4_has_free_blocks(struct ext4_sb_info *sbi, s64 nblocks);
> extern void ext4_free_blocks(handle_t *handle, struct inode *inode,
> ext4_fsblk_t block, unsigned long count, int metadata);
> extern void ext4_free_blocks_sb(handle_t *handle, struct super_block *sb,
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2008-10-24 20:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-24 20:27 [PATCH 1/2] merge ext4_claim_free_blocks & ext4_has_free_blocks Eric Sandeen
2008-10-24 20:40 ` [PATCH 1/2 v2] " Eric Sandeen
2008-10-24 20:45 ` Mingming Cao [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=1224881138.6379.5.camel@mingming-laptop \
--to=cmm@us.ibm.com \
--cc=eparis@redhat.com \
--cc=linux-ext4@vger.kernel.org \
--cc=sandeen@redhat.com \
/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