diff mbox series

[v2] ext2: don't set *count in the case of failure in ext2_try_to_allocate()

Message ID 20191026090721.23794-1-cgxu519@mykernel.net
State Not Applicable
Headers show
Series [v2] ext2: don't set *count in the case of failure in ext2_try_to_allocate() | expand

Commit Message

Chengguang Xu Oct. 26, 2019, 9:07 a.m. UTC
Currently we set *count to num(value 0) in the failure
of block allocation in ext2_try_to_allocate(). Without
reservation, we reuse *count(value 0) to retry block
allocation and wrong *count will cause only allocating
maximum 1 block even though having sufficent free blocks
in that block group. Finally, it probably cause significant
fragmentation.

Signed-off-by: Chengguang Xu <cgxu519@mykernel.net>
---
v1->v2:
- Add detail explanation of effect to changelog.

 fs/ext2/balloc.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Jan Kara Oct. 30, 2019, 10:15 a.m. UTC | #1
On Sat 26-10-19 17:07:21, Chengguang Xu wrote:
> Currently we set *count to num(value 0) in the failure
> of block allocation in ext2_try_to_allocate(). Without
> reservation, we reuse *count(value 0) to retry block
> allocation and wrong *count will cause only allocating
> maximum 1 block even though having sufficent free blocks
> in that block group. Finally, it probably cause significant
> fragmentation.
> 
> Signed-off-by: Chengguang Xu <cgxu519@mykernel.net>

Thanks! Patch applied.

								Honza

> ---
> v1->v2:
> - Add detail explanation of effect to changelog.
> 
>  fs/ext2/balloc.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/fs/ext2/balloc.c b/fs/ext2/balloc.c
> index e0cc55164505..29fc3a5054f8 100644
> --- a/fs/ext2/balloc.c
> +++ b/fs/ext2/balloc.c
> @@ -736,7 +736,6 @@ ext2_try_to_allocate(struct super_block *sb, int group,
>  	*count = num;
>  	return grp_goal - num;
>  fail_access:
> -	*count = num;
>  	return -1;
>  }
>  
> -- 
> 2.21.0
> 
> 
>
diff mbox series

Patch

diff --git a/fs/ext2/balloc.c b/fs/ext2/balloc.c
index e0cc55164505..29fc3a5054f8 100644
--- a/fs/ext2/balloc.c
+++ b/fs/ext2/balloc.c
@@ -736,7 +736,6 @@  ext2_try_to_allocate(struct super_block *sb, int group,
 	*count = num;
 	return grp_goal - num;
 fail_access:
-	*count = num;
 	return -1;
 }