* If we're using an MQ scheduler, just update the scheduler
                 * queue depth. This is similar to what the old code would do.
                 */
-               if (!hctx->sched_tags) {
-                       ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
-                                                       false);
-               } else {
+               if (hctx->sched_tags) {
                        ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
-                                                       nr, true);
+                                                     nr, true);
                        if (blk_mq_is_sbitmap_shared(set->flags)) {
                                hctx->sched_tags->bitmap_tags =
                                        &q->sched_bitmap_tags;
                                hctx->sched_tags->breserved_tags =
                                        &q->sched_breserved_tags;
                        }
+               } else {
+                       ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
+                                                     false);
                }
                if (ret)
                        break;