* [PATCH] blk-mq: Use non-atomic operations to manipulate the sw-ctx busy bits
@ 2016-08-31 22:03 Bart Van Assche
2016-09-01 1:18 ` Omar Sandoval
0 siblings, 1 reply; 3+ messages in thread
From: Bart Van Assche @ 2016-08-31 22:03 UTC (permalink / raw)
To: Jens Axboe; +Cc: Christoph Hellwig, Sagi Grimberg, linux-block@vger.kernel.org
Protect sw-ctx busy bit manipulations via the sw queue lock.
This allows to convert the atomic bit operations into slightly
faster non-atomic operations. Document that blk_mq_run_hw_queues()
tests these bits without holding the sw queue lock.
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Sagi Grimberg <sagi@grimberg.me>
---
block/blk-mq.c | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/block/blk-mq.c b/block/blk-mq.c
index 13f5a6c..0dcafa6 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -66,8 +66,9 @@ static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
{
struct blk_align_bitmap *bm = get_bm(hctx, ctx);
+ lockdep_assert_held(&ctx->lock);
if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
- set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
+ __set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
}
static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
@@ -75,7 +76,8 @@ static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
{
struct blk_align_bitmap *bm = get_bm(hctx, ctx);
- clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
+ lockdep_assert_held(&ctx->lock);
+ __clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
}
void blk_mq_freeze_queue_start(struct request_queue *q)
@@ -768,8 +770,8 @@ static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
break;
ctx = hctx->ctxs[bit + off];
- clear_bit(bit, &bm->word);
spin_lock(&ctx->lock);
+ __clear_bit(bit, &bm->word);
list_splice_tail_init(&ctx->rq_list, list);
spin_unlock(&ctx->lock);
@@ -940,6 +942,13 @@ void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
&hctx->run_work, 0);
}
+/**
+ * blk_mq_run_hw_queues - run all hardware queues
+ *
+ * Note: this function checks the SW and HW busy status without serialization
+ * against the functions that modify that status information. The caller is
+ * responsible for realizing that serialization.
+ */
void blk_mq_run_hw_queues(struct request_queue *q, bool async)
{
struct blk_mq_hw_ctx *hctx;
@@ -1055,6 +1064,7 @@ static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
{
struct blk_mq_ctx *ctx = rq->mq_ctx;
+ lockdep_assert_held(&ctx->lock);
__blk_mq_insert_req_list(hctx, rq, at_head);
blk_mq_hctx_mark_pending(hctx, ctx);
}
--
2.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] blk-mq: Use non-atomic operations to manipulate the sw-ctx busy bits
2016-08-31 22:03 [PATCH] blk-mq: Use non-atomic operations to manipulate the sw-ctx busy bits Bart Van Assche
@ 2016-09-01 1:18 ` Omar Sandoval
2016-09-01 3:13 ` Bart Van Assche
0 siblings, 1 reply; 3+ messages in thread
From: Omar Sandoval @ 2016-09-01 1:18 UTC (permalink / raw)
To: Bart Van Assche
Cc: Jens Axboe, Christoph Hellwig, Sagi Grimberg,
linux-block@vger.kernel.org
On Wed, Aug 31, 2016 at 03:03:24PM -0700, Bart Van Assche wrote:
> Protect sw-ctx busy bit manipulations via the sw queue lock.
> This allows to convert the atomic bit operations into slightly
> faster non-atomic operations. Document that blk_mq_run_hw_queues()
> tests these bits without holding the sw queue lock.
>
> Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
> Cc: Christoph Hellwig <hch@lst.de>
> Cc: Sagi Grimberg <sagi@grimberg.me>
> ---
> block/blk-mq.c | 16 +++++++++++++---
> 1 file changed, 13 insertions(+), 3 deletions(-)
>
> diff --git a/block/blk-mq.c b/block/blk-mq.c
> index 13f5a6c..0dcafa6 100644
> --- a/block/blk-mq.c
> +++ b/block/blk-mq.c
> @@ -66,8 +66,9 @@ static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
> {
> struct blk_align_bitmap *bm = get_bm(hctx, ctx);
>
> + lockdep_assert_held(&ctx->lock);
> if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
> - set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
> + __set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
> }
>
> static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
> @@ -75,7 +76,8 @@ static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
> {
> struct blk_align_bitmap *bm = get_bm(hctx, ctx);
>
> - clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
> + lockdep_assert_held(&ctx->lock);
> + __clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
> }
NAK, we can't protect each bit with a separate lock, multiple software
queues share the bitmap. There's a race if we do non-atomic bit
operations on two software queues with bits in the same word.
--
Omar
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] blk-mq: Use non-atomic operations to manipulate the sw-ctx busy bits
2016-09-01 1:18 ` Omar Sandoval
@ 2016-09-01 3:13 ` Bart Van Assche
0 siblings, 0 replies; 3+ messages in thread
From: Bart Van Assche @ 2016-09-01 3:13 UTC (permalink / raw)
To: Omar Sandoval
Cc: Jens Axboe, Christoph Hellwig, Sagi Grimberg,
linux-block@vger.kernel.org
On 08/31/16 18:18, Omar Sandoval wrote:=0A=
> NAK, we can't protect each bit with a separate lock, multiple software=0A=
> queues share the bitmap. There's a race if we do non-atomic bit=0A=
> operations on two software queues with bits in the same word.=0A=
=0A=
Hi Omar,=0A=
=0A=
You are right of course. This is something I should have realized =0A=
myself. Jens, please ignore this patch.=0A=
=0A=
Bart.=0A=
=0A=
=0A=
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-09-01 3:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-31 22:03 [PATCH] blk-mq: Use non-atomic operations to manipulate the sw-ctx busy bits Bart Van Assche
2016-09-01 1:18 ` Omar Sandoval
2016-09-01 3:13 ` Bart Van Assche
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.