md/raid10: fix the condition to call bio_end_io_acct()
authorLi Nan <linan122@huawei.com>
Fri, 9 Jun 2023 09:43:20 +0000 (17:43 +0800)
committerSong Liu <song@kernel.org>
Fri, 23 Jun 2023 16:33:16 +0000 (09:33 -0700)
commit125bfc7cd750e68c99f1d446e2c22abea08c237f
treef9bcd0a0587c9eb73ed41a092b40cdef721dd5fb
parentfcaa174a9c995cf0af3967e55644a1543ea07e36
md/raid10: fix the condition to call bio_end_io_acct()

/sys/block/[device]/queue/iostats is used to control whether to count io
stat. Write 0 to it will clear queue_flags QUEUE_FLAG_IO_STAT which means
iostats is disabled. If we disable iostats and later endable it, the io
issued during this period will be counted incorrectly, inflight will be
decreased to -1.

  //T1 set iostats
  echo 0 > /sys/block/md0/queue/iostats
   clear QUEUE_FLAG_IO_STAT

//T2 issue io
if (QUEUE_FLAG_IO_STAT) -> false
 bio_start_io_acct
  inflight++

  echo 1 > /sys/block/md0/queue/iostats
   set QUEUE_FLAG_IO_STAT

//T3 io end
if (QUEUE_FLAG_IO_STAT) -> true
 bio_end_io_acct
  inflight-- -> -1

Also, if iostats is enabled while issuing io but disabled while io end,
inflight will never be decreased.

Fix it by checking start_time when io end. If start_time is not 0, call
bio_end_io_acct().

Fixes: 528bc2cf2fcc ("md/raid10: enable io accounting")
Signed-off-by: Li Nan <linan122@huawei.com>
Signed-off-by: Song Liu <song@kernel.org>
Link: https://lore.kernel.org/r/20230609094320.2397604-1-linan666@huaweicloud.com
drivers/md/raid10.c