On 2021/06/09 8:07, Bart Van Assche wrote: > rq_qos_id_to_name() is not in the hot path so move it from a .h into a .c > file. > > Cc: Damien Le Moal <damien.lemoal@xxxxxxx> > Cc: Hannes Reinecke <hare@xxxxxxx> > Cc: Christoph Hellwig <hch@xxxxxx> > Cc: Ming Lei <ming.lei@xxxxxxxxxx> > Cc: Johannes Thumshirn <johannes.thumshirn@xxxxxxx> > Cc: Himanshu Madhani <himanshu.madhani@xxxxxxxxxx> > Signed-off-by: Bart Van Assche <bvanassche@xxxxxxx> > --- > block/blk-rq-qos.c | 13 +++++++++++++ > block/blk-rq-qos.h | 13 +------------ > 2 files changed, 14 insertions(+), 12 deletions(-) > > diff --git a/block/blk-rq-qos.c b/block/blk-rq-qos.c > index 656460636ad3..61dccf584c68 100644 > --- a/block/blk-rq-qos.c > +++ b/block/blk-rq-qos.c > @@ -2,6 +2,19 @@ > > #include "blk-rq-qos.h" > > +const char *rq_qos_id_to_name(enum rq_qos_id id) > +{ > + switch (id) { > + case RQ_QOS_WBT: > + return "wbt"; > + case RQ_QOS_LATENCY: > + return "latency"; > + case RQ_QOS_COST: > + return "cost"; > + } > + return "unknown"; > +} > + > /* > * Increment 'v', if 'v' is below 'below'. Returns true if we succeeded, > * false if 'v' + 1 would be bigger than 'below'. > diff --git a/block/blk-rq-qos.h b/block/blk-rq-qos.h > index 2bc43e94f4c4..6b5f9ae69883 100644 > --- a/block/blk-rq-qos.h > +++ b/block/blk-rq-qos.h > @@ -78,18 +78,7 @@ static inline struct rq_qos *blkcg_rq_qos(struct request_queue *q) > return rq_qos_id(q, RQ_QOS_LATENCY); > } > > -static inline const char *rq_qos_id_to_name(enum rq_qos_id id) > -{ > - switch (id) { > - case RQ_QOS_WBT: > - return "wbt"; > - case RQ_QOS_LATENCY: > - return "latency"; > - case RQ_QOS_COST: > - return "cost"; > - } > - return "unknown"; > -} > +const char *rq_qos_id_to_name(enum rq_qos_id id); > > static inline void rq_wait_init(struct rq_wait *rq_wait) > { > Looks OK, but since the only caller is in blk-mq-debugfs.c, the function could be moved there and be static, no ? Anyway, Reviewed-by: Damien Le Moal <damien.lemoal@xxxxxxx> -- Damien Le Moal Western Digital Research