linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 2/2] nilfs2: fix issue with counting number of bio requests for BIO_EOPNOTSUPP error detection
@ 2013-08-13 13:50 Vyacheslav Dubeyko
  2013-08-14  4:52 ` Ryusuke Konishi
  0 siblings, 1 reply; 2+ messages in thread
From: Vyacheslav Dubeyko @ 2013-08-13 13:50 UTC (permalink / raw)
  To: Ryusuke Konishi
  Cc: DanCarpenter, linux-nilfs, Linux FS Devel, kernel-janitors, akpm

From: Vyacheslav Dubeyko <slava@dubeyko.com>
Subject: [PATCH v3 2/2] nilfs2: fix issue with counting number of bio requests for BIO_EOPNOTSUPP error detection

This patch fixes the issue with improper counting number of
flying bio requests for BIO_EOPNOTSUPP error detection case.

The sb_nbio must be incremented exactly the same number of times as
complete() function was called (or will be called) because
nilfs_segbuf_wait() will call wail_for_completion() for the number of
times set to sb_nbio:

do {
    wait_for_completion(&segbuf->sb_bio_event);
} while (--segbuf->sb_nbio > 0);

Two functions complete() and wait_for_completion() must be called the
same number of times for the same sb_bio_event. Otherwise,
wait_for_completion() will hang or leak.

Signed-off-by: Vyacheslav Dubeyko <slava@dubeyko.com>
CC: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
CC: Dan Carpenter <dan.carpenter@oracle.com>
---
 fs/nilfs2/segbuf.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/nilfs2/segbuf.c b/fs/nilfs2/segbuf.c
index 5bacf46..2d8be51 100644
--- a/fs/nilfs2/segbuf.c
+++ b/fs/nilfs2/segbuf.c
@@ -376,12 +376,12 @@ static int nilfs_segbuf_submit_bio(struct nilfs_segment_buffer *segbuf,
 	bio->bi_private = segbuf;
 	bio_get(bio);
 	submit_bio(mode, bio);
+	segbuf->sb_nbio++;
 	if (bio_flagged(bio, BIO_EOPNOTSUPP)) {
 		bio_put(bio);
 		err = -EOPNOTSUPP;
 		goto failed;
 	}
-	segbuf->sb_nbio++;
 	bio_put(bio);
 
 	wi->bio = NULL;
-- 
1.7.9.5




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

* Re: [PATCH v3 2/2] nilfs2: fix issue with counting number of bio requests for BIO_EOPNOTSUPP error detection
  2013-08-13 13:50 [PATCH v3 2/2] nilfs2: fix issue with counting number of bio requests for BIO_EOPNOTSUPP error detection Vyacheslav Dubeyko
@ 2013-08-14  4:52 ` Ryusuke Konishi
  0 siblings, 0 replies; 2+ messages in thread
From: Ryusuke Konishi @ 2013-08-14  4:52 UTC (permalink / raw)
  To: akpm, Vyacheslav Dubeyko
  Cc: DanCarpenter, linux-nilfs, Linux FS Devel, kernel-janitors

On Tue, 13 Aug 2013 17:50:51 +0400, Vyacheslav Dubeyko wrote:
> From: Vyacheslav Dubeyko <slava@dubeyko.com>
> Subject: [PATCH v3 2/2] nilfs2: fix issue with counting number of bio requests for BIO_EOPNOTSUPP error detection
> 
> This patch fixes the issue with improper counting number of
> flying bio requests for BIO_EOPNOTSUPP error detection case.
> 
> The sb_nbio must be incremented exactly the same number of times as
> complete() function was called (or will be called) because
> nilfs_segbuf_wait() will call wail_for_completion() for the number of
> times set to sb_nbio:
> 
> do {
>     wait_for_completion(&segbuf->sb_bio_event);
> } while (--segbuf->sb_nbio > 0);
> 
> Two functions complete() and wait_for_completion() must be called the
> same number of times for the same sb_bio_event. Otherwise,
> wait_for_completion() will hang or leak.
> 
> Signed-off-by: Vyacheslav Dubeyko <slava@dubeyko.com>
> CC: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>

Acked-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Tested-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>

I confirmed that this fixes the leak of wait_for_completion() for the
BIO_EOPNOTSUPP error detection case.

Andrew, please send this upstream along with the companion patch
titled "nilfs2: remove double bio_put() in nilfs_end_bio_write() for
BIO_EOPNOTSUPP error".


Thanks,
Ryusuke Konishi


> CC: Dan Carpenter <dan.carpenter@oracle.com>
> ---
>  fs/nilfs2/segbuf.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/nilfs2/segbuf.c b/fs/nilfs2/segbuf.c
> index 5bacf46..2d8be51 100644
> --- a/fs/nilfs2/segbuf.c
> +++ b/fs/nilfs2/segbuf.c
> @@ -376,12 +376,12 @@ static int nilfs_segbuf_submit_bio(struct nilfs_segment_buffer *segbuf,
>  	bio->bi_private = segbuf;
>  	bio_get(bio);
>  	submit_bio(mode, bio);
> +	segbuf->sb_nbio++;
>  	if (bio_flagged(bio, BIO_EOPNOTSUPP)) {
>  		bio_put(bio);
>  		err = -EOPNOTSUPP;
>  		goto failed;
>  	}
> -	segbuf->sb_nbio++;
>  	bio_put(bio);
>  
>  	wi->bio = NULL;
> -- 
> 1.7.9.5
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2013-08-14  4:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-13 13:50 [PATCH v3 2/2] nilfs2: fix issue with counting number of bio requests for BIO_EOPNOTSUPP error detection Vyacheslav Dubeyko
2013-08-14  4:52 ` Ryusuke Konishi

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).