linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: Theodore Ts'o <tytso@mit.edu>
Cc: Ext4 Developers List <linux-ext4@vger.kernel.org>
Subject: Re: [PATCH 2/3] ext4: prepare to drop EXT4_STATE_DELALLOC_RESERVED
Date: Wed, 3 Sep 2014 18:26:15 +0200	[thread overview]
Message-ID: <20140903162614.GE17066@quack.suse.cz> (raw)
In-Reply-To: <1409695549-18605-3-git-send-email-tytso@mit.edu>

On Tue 02-09-14 18:05:48, Ted Tso wrote:
> The EXT4_STATE_DELALLOC_RESERVED flag was originally implemented
> because it was too hard to make sure mballoc and get_block flags could
> be reliably passed down through all of the codepaths that end up
> calling ext4_mb_new_blocks().
> 
> Since then, we have mb_flags passed down through most of the code
> paths, so getting rid of EXT4_STATE_DELALLOC_RESERVED isn't as tricky
> as it used to.
> 
> This commit plumbs in the last of what is required, and then adds a
> WARN_ON check to make sure we haven't missed anything.  If this passes
> a full regression test run, we can then drop
> EXT4_STATE_DELALLOC_RESERVED.
  Looks good. You can add:
Reviewed-by: Jan Kara <jack@suse.cz>

								Honza

> 
> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
> ---
>  fs/ext4/balloc.c   |  3 +--
>  fs/ext4/extents.c  |  6 +++++-
>  fs/ext4/indirect.c |  6 +++++-
>  fs/ext4/mballoc.c  | 10 ++++++----
>  fs/ext4/xattr.c    |  6 ------
>  5 files changed, 17 insertions(+), 14 deletions(-)
> 
> diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c
> index 581ef40..d70f154 100644
> --- a/fs/ext4/balloc.c
> +++ b/fs/ext4/balloc.c
> @@ -636,8 +636,7 @@ ext4_fsblk_t ext4_new_meta_blocks(handle_t *handle, struct inode *inode,
>  	 * Account for the allocated meta blocks.  We will never
>  	 * fail EDQUOT for metdata, but we do account for it.
>  	 */
> -	if (!(*errp) &&
> -	    ext4_test_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED)) {
> +	if (!(*errp) && (flags & EXT4_MB_DELALLOC_RESERVED)) {
>  		spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
>  		spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
>  		dquot_alloc_block_nofail(inode,
> diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
> index 3ac1686..8170b32 100644
> --- a/fs/ext4/extents.c
> +++ b/fs/ext4/extents.c
> @@ -1933,6 +1933,8 @@ int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
>  	ext4_lblk_t next;
>  	int mb_flags = 0, unwritten;
>  
> +	if (gb_flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
> +		mb_flags |= EXT4_MB_DELALLOC_RESERVED;
>  	if (unlikely(ext4_ext_get_actual_len(newext) == 0)) {
>  		EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0");
>  		return -EIO;
> @@ -2054,7 +2056,7 @@ prepend:
>  	 * We're gonna add a new leaf in the tree.
>  	 */
>  	if (gb_flags & EXT4_GET_BLOCKS_METADATA_NOFAIL)
> -		mb_flags = EXT4_MB_USE_RESERVED;
> +		mb_flags |= EXT4_MB_USE_RESERVED;
>  	err = ext4_ext_create_new_leaf(handle, inode, mb_flags, gb_flags,
>  				       ppath, newext);
>  	if (err)
> @@ -4438,6 +4440,8 @@ int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
>  		ar.flags = 0;
>  	if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE)
>  		ar.flags |= EXT4_MB_HINT_NOPREALLOC;
> +	if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
> +		ar.flags |= EXT4_MB_DELALLOC_RESERVED;
>  	newblock = ext4_mb_new_blocks(handle, &ar, &err);
>  	if (!newblock)
>  		goto out2;
> diff --git a/fs/ext4/indirect.c b/fs/ext4/indirect.c
> index 69af0cd..36b3696 100644
> --- a/fs/ext4/indirect.c
> +++ b/fs/ext4/indirect.c
> @@ -333,7 +333,9 @@ static int ext4_alloc_branch(handle_t *handle,
>  			new_blocks[i] = ext4_mb_new_blocks(handle, ar, &err);
>  		} else
>  			ar->goal = new_blocks[i] = ext4_new_meta_blocks(handle,
> -				    ar->inode, ar->goal, 0, NULL, &err);
> +					ar->inode, ar->goal,
> +					ar->flags & EXT4_MB_DELALLOC_RESERVED,
> +					NULL, &err);
>  		if (err) {
>  			i--;
>  			goto failed;
> @@ -572,6 +574,8 @@ int ext4_ind_map_blocks(handle_t *handle, struct inode *inode,
>  	ar.logical = map->m_lblk;
>  	if (S_ISREG(inode->i_mode))
>  		ar.flags = EXT4_MB_HINT_DATA;
> +	if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
> +		ar.flags |= EXT4_MB_DELALLOC_RESERVED;
>  
>  	ar.goal = ext4_find_goal(inode, map->m_lblk, partial);
>  
> diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
> index 8b0f9ef..15dffda 100644
> --- a/fs/ext4/mballoc.c
> +++ b/fs/ext4/mballoc.c
> @@ -4415,9 +4415,12 @@ ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
>  	 * EDQUOT check, as blocks and quotas have been already
>  	 * reserved when data being copied into pagecache.
>  	 */
> -	if (ext4_test_inode_state(ar->inode, EXT4_STATE_DELALLOC_RESERVED))
> +	if (ext4_test_inode_state(ar->inode, EXT4_STATE_DELALLOC_RESERVED)) {
> +		WARN_ON((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0);
>  		ar->flags |= EXT4_MB_DELALLOC_RESERVED;
> -	else {
> +	}
> +
> +	if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0) {
>  		/* Without delayed allocation we need to verify
>  		 * there is enough free blocks to do block allocation
>  		 * and verify allocation doesn't exceed the quota limits.
> @@ -4528,8 +4531,7 @@ out:
>  	if (inquota && ar->len < inquota)
>  		dquot_free_block(ar->inode, EXT4_C2B(sbi, inquota - ar->len));
>  	if (!ar->len) {
> -		if (!ext4_test_inode_state(ar->inode,
> -					   EXT4_STATE_DELALLOC_RESERVED))
> +		if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0)
>  			/* release all the reserved blocks if non delalloc */
>  			percpu_counter_sub(&sbi->s_dirtyclusters_counter,
>  						reserv_clstrs);
> diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c
> index e738733..da4df70 100644
> --- a/fs/ext4/xattr.c
> +++ b/fs/ext4/xattr.c
> @@ -899,14 +899,8 @@ inserted:
>  			if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
>  				goal = goal & EXT4_MAX_BLOCK_FILE_PHYS;
>  
> -			/*
> -			 * take i_data_sem because we will test
> -			 * i_delalloc_reserved_flag in ext4_mb_new_blocks
> -			 */
> -			down_read(&EXT4_I(inode)->i_data_sem);
>  			block = ext4_new_meta_blocks(handle, inode, goal, 0,
>  						     NULL, &error);
> -			up_read((&EXT4_I(inode)->i_data_sem));
>  			if (error)
>  				goto cleanup;
>  
> -- 
> 2.1.0
> 
> --
> 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
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

  reply	other threads:[~2014-09-03 16:26 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-02 22:05 [PATCH 0/3] Clean up the EXT4_STATE_DELALLOC_RESERVED state flag Theodore Ts'o
2014-09-02 22:05 ` [PATCH 1/3] ext4: pass allocation_request struct to ext4_(alloc,splice)_branch Theodore Ts'o
2014-09-03 16:25   ` Jan Kara
2014-09-03 17:17     ` Theodore Ts'o
2014-09-02 22:05 ` [PATCH 2/3] ext4: prepare to drop EXT4_STATE_DELALLOC_RESERVED Theodore Ts'o
2014-09-03 16:26   ` Jan Kara [this message]
2014-09-02 22:05 ` [PATCH 3/3] ext4: drop the EXT4_STATE_DELALLOC_RESERVED flag Theodore Ts'o
2014-09-03 16:26   ` 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=20140903162614.GE17066@quack.suse.cz \
    --to=jack@suse.cz \
    --cc=linux-ext4@vger.kernel.org \
    --cc=tytso@mit.edu \
    /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).