block: use dedicated list iterator variable
authorJakob Koschel <jakobkoschel@gmail.com>
Thu, 31 Mar 2022 09:12:18 +0000 (11:12 +0200)
committerJens Axboe <axboe@kernel.dk>
Thu, 31 Mar 2022 12:05:15 +0000 (06:05 -0600)
commit4a3b666e0ea977dd40adb56c37a91370f76fa19e
treef2a21bfe79fba98ff47b6daa463afa7581696714
parentd1868328dec5ae2cf210111025fcbc71f78dd5ca
block: use dedicated list iterator variable

To move the list iterator variable into the list_for_each_entry_*()
macro in the future it should be avoided to use the list iterator
variable after the loop body.

To *never* use the list iterator variable after the loop it was
concluded to use a separate iterator variable instead of a
found boolean [1].

Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/
Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com>
Link: https://lore.kernel.org/r/20220331091218.641532-1-jakobkoschel@gmail.com
[axboe: move lookup to where return value is checked]
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-mq.c