diff options
-rw-r--r-- | block/ll_rw_blk.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c index f757ed413214..83425fb3c8db 100644 --- a/block/ll_rw_blk.c +++ b/block/ll_rw_blk.c | |||
@@ -1171,11 +1171,16 @@ int blk_queue_start_tag(request_queue_t *q, struct request *rq) | |||
1171 | BUG(); | 1171 | BUG(); |
1172 | } | 1172 | } |
1173 | 1173 | ||
1174 | tag = find_first_zero_bit(bqt->tag_map, bqt->max_depth); | 1174 | /* |
1175 | if (tag >= bqt->max_depth) | 1175 | * Protect against shared tag maps, as we may not have exclusive |
1176 | return 1; | 1176 | * access to the tag map. |
1177 | */ | ||
1178 | do { | ||
1179 | tag = find_first_zero_bit(bqt->tag_map, bqt->max_depth); | ||
1180 | if (tag >= bqt->max_depth) | ||
1181 | return 1; | ||
1177 | 1182 | ||
1178 | __set_bit(tag, bqt->tag_map); | 1183 | } while (test_and_set_bit(tag, bqt->tag_map)); |
1179 | 1184 | ||
1180 | rq->cmd_flags |= REQ_QUEUED; | 1185 | rq->cmd_flags |= REQ_QUEUED; |
1181 | rq->tag = tag; | 1186 | rq->tag = tag; |