All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] bio: Remove the incorrect test for idx in __bio_clone_fast
@ 2015-12-18 15:02 Minfei Huang
  2015-12-18 15:02 ` [PATCH 2/2] bio: Free own bvec before assigning the source bio's bvec Minfei Huang
  2015-12-18 15:31 ` [PATCH 1/2] bio: Remove the incorrect test for idx in __bio_clone_fast Minfei Huang
  0 siblings, 2 replies; 4+ messages in thread
From: Minfei Huang @ 2015-12-18 15:02 UTC (permalink / raw)
  To: axboe; +Cc: linux-block, linux-kernel, mhuang, Minfei Huang

It is more lucky that kernel crash does not happen, since we test the
bi_pool in function __bio_clone_fast. Now bi_flags is used to flag the
idx, so it is incorrect to test the bi_pool.

For now, the bio in function __bio_clone_fast may have its own bvec, if
the caller is bio_clone_fast.

Removing the test to fix this issue.

Signed-off-by: Minfei Huang <mnfhuang@gmail.com>
---
 block/bio.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/block/bio.c b/block/bio.c
index 4f184d9..70d9814 100644
--- a/block/bio.c
+++ b/block/bio.c
@@ -573,8 +573,6 @@ EXPORT_SYMBOL(bio_phys_segments);
  */
 void __bio_clone_fast(struct bio *bio, struct bio *bio_src)
 {
-	BUG_ON(bio->bi_pool && BIO_POOL_IDX(bio) != BIO_POOL_NONE);
-
 	/*
 	 * most users will be overriding ->bi_bdev with a new target,
 	 * so we don't set nor calculate new physical/hw segment counts here
-- 
2.6.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] bio: Free own bvec before assigning the source bio's bvec
  2015-12-18 15:02 [PATCH 1/2] bio: Remove the incorrect test for idx in __bio_clone_fast Minfei Huang
@ 2015-12-18 15:02 ` Minfei Huang
  2015-12-18 15:29   ` Minfei Huang
  2015-12-18 15:31 ` [PATCH 1/2] bio: Remove the incorrect test for idx in __bio_clone_fast Minfei Huang
  1 sibling, 1 reply; 4+ messages in thread
From: Minfei Huang @ 2015-12-18 15:02 UTC (permalink / raw)
  To: axboe; +Cc: linux-block, linux-kernel, mhuang, Minfei Huang

This is a memory leaking during splitting the bio by the caller
bio_clone_fast.

Clone bio may allocate its own bvec, if demanding bvec is more than
inline bvec in function bio_alloc_bioset.

bi_io_vec is assigned to the source bio's bvec directly without freeing
it firstly in function __bio_clone_fast.

To fix it, freeing the own bvec firstly before assigning the source
bio's bvec.

Signed-off-by: Minfei Huang <mnfhuang@gmail.com>
---
 block/bio.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/block/bio.c b/block/bio.c
index 70d9814..b24fd6e 100644
--- a/block/bio.c
+++ b/block/bio.c
@@ -581,6 +581,10 @@ void __bio_clone_fast(struct bio *bio, struct bio *bio_src)
 	bio_set_flag(bio, BIO_CLONED);
 	bio->bi_rw = bio_src->bi_rw;
 	bio->bi_iter = bio_src->bi_iter;
+
+	if (bio_flagged(bio, BIO_OWNS_VEC))
+		bvec_free(bio->bi_pool->bvec_pool,
+				bio->bi_io_vec, BIO_POOL_IDX(bio));
 	bio->bi_io_vec = bio_src->bi_io_vec;
 }
 EXPORT_SYMBOL(__bio_clone_fast);
-- 
2.6.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] bio: Free own bvec before assigning the source bio's bvec
  2015-12-18 15:02 ` [PATCH 2/2] bio: Free own bvec before assigning the source bio's bvec Minfei Huang
@ 2015-12-18 15:29   ` Minfei Huang
  0 siblings, 0 replies; 4+ messages in thread
From: Minfei Huang @ 2015-12-18 15:29 UTC (permalink / raw)
  To: axboe; +Cc: linux-block, linux-kernel, mhuang

Sorry to bother you, since I have missed the nr_iovecs in
bio_clone_fast.

Nacked this patch.

Thanks
Minfei

On 12/18/15 at 11:02P, Minfei Huang wrote:
> This is a memory leaking during splitting the bio by the caller
> bio_clone_fast.
> 
> Clone bio may allocate its own bvec, if demanding bvec is more than
> inline bvec in function bio_alloc_bioset.
> 
> bi_io_vec is assigned to the source bio's bvec directly without freeing
> it firstly in function __bio_clone_fast.
> 
> To fix it, freeing the own bvec firstly before assigning the source
> bio's bvec.
> 
> Signed-off-by: Minfei Huang <mnfhuang@gmail.com>
> ---
>  block/bio.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/block/bio.c b/block/bio.c
> index 70d9814..b24fd6e 100644
> --- a/block/bio.c
> +++ b/block/bio.c
> @@ -581,6 +581,10 @@ void __bio_clone_fast(struct bio *bio, struct bio *bio_src)
>  	bio_set_flag(bio, BIO_CLONED);
>  	bio->bi_rw = bio_src->bi_rw;
>  	bio->bi_iter = bio_src->bi_iter;
> +
> +	if (bio_flagged(bio, BIO_OWNS_VEC))
> +		bvec_free(bio->bi_pool->bvec_pool,
> +				bio->bi_io_vec, BIO_POOL_IDX(bio));
>  	bio->bi_io_vec = bio_src->bi_io_vec;
>  }
>  EXPORT_SYMBOL(__bio_clone_fast);
> -- 
> 2.6.3
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] bio: Remove the incorrect test for idx in __bio_clone_fast
  2015-12-18 15:02 [PATCH 1/2] bio: Remove the incorrect test for idx in __bio_clone_fast Minfei Huang
  2015-12-18 15:02 ` [PATCH 2/2] bio: Free own bvec before assigning the source bio's bvec Minfei Huang
@ 2015-12-18 15:31 ` Minfei Huang
  1 sibling, 0 replies; 4+ messages in thread
From: Minfei Huang @ 2015-12-18 15:31 UTC (permalink / raw)
  To: axboe; +Cc: linux-block, linux-kernel, mhuang

On 12/18/15 at 11:02P, Minfei Huang wrote:
> It is more lucky that kernel crash does not happen, since we test the
> bi_pool in function __bio_clone_fast. Now bi_flags is used to flag the
> idx, so it is incorrect to test the bi_pool.
> 
> For now, the bio in function __bio_clone_fast may have its own bvec, if
> the caller is bio_clone_fast.
> 
> Removing the test to fix this issue.
> 
> Signed-off-by: Minfei Huang <mnfhuang@gmail.com>
> ---
>  block/bio.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/block/bio.c b/block/bio.c
> index 4f184d9..70d9814 100644
> --- a/block/bio.c
> +++ b/block/bio.c
> @@ -573,8 +573,6 @@ EXPORT_SYMBOL(bio_phys_segments);
>   */
>  void __bio_clone_fast(struct bio *bio, struct bio *bio_src)
>  {
> -	BUG_ON(bio->bi_pool && BIO_POOL_IDX(bio) != BIO_POOL_NONE);
> -

Sorry to bother you, since I have missed the nr_iovecs in function
bio_clone_fast.

Will update this patch to make test correct, instead of removing it.

Thanks
Minfei
	
>  	/*
>  	 * most users will be overriding ->bi_bdev with a new target,
>  	 * so we don't set nor calculate new physical/hw segment counts here
> -- 
> 2.6.3
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-12-18 15:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-18 15:02 [PATCH 1/2] bio: Remove the incorrect test for idx in __bio_clone_fast Minfei Huang
2015-12-18 15:02 ` [PATCH 2/2] bio: Free own bvec before assigning the source bio's bvec Minfei Huang
2015-12-18 15:29   ` Minfei Huang
2015-12-18 15:31 ` [PATCH 1/2] bio: Remove the incorrect test for idx in __bio_clone_fast Minfei Huang

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.