]> git.itanic.dy.fi Git - linux-stable/commit
block/iocost: silence warning on 'last_period' potentially being unused
authorJens Axboe <axboe@kernel.dk>
Wed, 10 Jan 2024 15:29:53 +0000 (08:29 -0700)
committerJens Axboe <axboe@kernel.dk>
Wed, 10 Jan 2024 15:43:06 +0000 (08:43 -0700)
commit742e324a0679ce271f7475a40056bac6917a950c
tree918936abf759e183523cdb647ef0ba771dbefca3
parentc8300953ba8e4c8e506ceea1b4e3c6acb4638a05
block/iocost: silence warning on 'last_period' potentially being unused

If CONFIG_TRACEPOINTS isn't enabled, we assign this variable but then
never use it. This can cause the compiler to complain about that:

block/blk-iocost.c:1264:6: warning: variable 'last_period' set but not used [-Wunused-but-set-variable]
 1264 |         u64 last_period, cur_period;
      |             ^

Rather than add ifdefs to guard this, just mark it __maybe_unused.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202401102335.GiWdeIo9-lkp@intel.com/
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-iocost.c