Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5385fa47 authored by Jens Axboe's avatar Jens Axboe
Browse files

blk-mq-tag: kill unused tag enums



We don't have any notion of a tagging cache anymore, and haven't
for a long time. Kill off the unused enums.

Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 54724873
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -43,14 +43,9 @@ static inline struct sbq_wait_state *bt_wait_ptr(struct sbitmap_queue *bt,
	return sbq_wait_ptr(bt, &hctx->wait_index);
}

enum {
	BLK_MQ_TAG_CACHE_MIN	= 1,
	BLK_MQ_TAG_CACHE_MAX	= 64,
};

enum {
	BLK_MQ_TAG_FAIL		= -1U,
	BLK_MQ_TAG_MIN		= BLK_MQ_TAG_CACHE_MIN,
	BLK_MQ_TAG_MIN		= 1,
	BLK_MQ_TAG_MAX		= BLK_MQ_TAG_FAIL - 1,
};