]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
block: Simplify definition of RQF_NAME()
authorJohn Garry <john.g.garry@oracle.com>
Fri, 19 Jul 2024 11:29:11 +0000 (11:29 +0000)
committerJens Axboe <axboe@kernel.dk>
Fri, 19 Jul 2024 15:32:49 +0000 (09:32 -0600)
Now that we have a bit index for RQF_x in __RQF_x, use __RQF_x to simplify
the definition of RQF_NAME() by not using ilog2((__force u32()).

Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: John Garry <john.g.garry@oracle.com>
Link: https://lore.kernel.org/r/20240719112912.3830443-15-john.g.garry@oracle.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-mq-debugfs.c

index a4accd79c225e9e1946df1045800fbad7373563e..34ed099c34291f135ca1ad00ddf83967f44552a5 100644 (file)
@@ -240,7 +240,7 @@ static const char *const cmd_flag_name[] = {
 };
 #undef CMD_FLAG_NAME
 
-#define RQF_NAME(name) [ilog2((__force u32)RQF_##name)] = #name
+#define RQF_NAME(name) [__RQF_##name] = #name
 static const char *const rqf_name[] = {
        RQF_NAME(STARTED),
        RQF_NAME(FLUSH_SEQ),