blk-throttle: Only use seq_printf() in tg_prfill_limit()
authorJohn Garry <john.g.garry@oracle.com>
Wed, 27 Mar 2024 09:40:20 +0000 (09:40 +0000)
committerJens Axboe <axboe@kernel.dk>
Mon, 1 Apr 2024 17:53:37 +0000 (11:53 -0600)
commitd3a3a086ad57b8c05340c0a4ac97b26ea55a1119
tree7d1143b1b24b05296e0acef67ca537caa78951be
parenta46c27026da10a126dd870f7b65380010bd20db5
blk-throttle: Only use seq_printf() in tg_prfill_limit()

Currently tg_prfill_limit() uses a combination of snprintf() and strcpy()
to generate the values parts of the limits string, before passing them as
arguments to seq_printf().

Convert to use only a sequence of seq_printf() calls per argument, which is
simpler.

Suggested-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: John Garry <john.g.garry@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20240327094020.3505514-1-john.g.garry@oracle.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-throttle.c