aboutsummaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
Diffstat (limited to 'block')
-rw-r--r--block/blk-mq-tag.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/block/blk-mq-tag.c b/block/blk-mq-tag.c
index bab4bff15f42..0f5e22a7971f 100644
--- a/block/blk-mq-tag.c
+++ b/block/blk-mq-tag.c
@@ -137,6 +137,7 @@ static inline bool hctx_may_queue(struct blk_mq_hw_ctx *hctx,
137static int __bt_get_word(struct blk_align_bitmap *bm, unsigned int last_tag) 137static int __bt_get_word(struct blk_align_bitmap *bm, unsigned int last_tag)
138{ 138{
139 int tag, org_last_tag, end; 139 int tag, org_last_tag, end;
140 bool wrap = last_tag != 0;
140 141
141 org_last_tag = last_tag; 142 org_last_tag = last_tag;
142 end = bm->depth; 143 end = bm->depth;
@@ -148,8 +149,9 @@ restart:
148 * We started with an offset, start from 0 to 149 * We started with an offset, start from 0 to
149 * exhaust the map. 150 * exhaust the map.
150 */ 151 */
151 if (org_last_tag && last_tag) { 152 if (wrap) {
152 end = last_tag; 153 wrap = false;
154 end = org_last_tag;
153 last_tag = 0; 155 last_tag = 0;
154 goto restart; 156 goto restart;
155 } 157 }