On 4/27/22 20:50, Shinichiro Kawasaki wrote:
On Apr 27, 2022 / 14:31, Bart Van Assche wrote:
- local scheds
# shellcheck disable=SC2207
- scheds=($(sed 's/[][]//g' "${TEST_DEV_SYSFS}/queue/scheduler"))
+ local scheds=($(io_schedulers "${TEST_DEV_SYSFS}"))
I ran block/005 with this patch and observed it fails without failure message.
To fix it, the line above should be:
local scheds=($(io_schedulers "$(basename "${TEST_DEV}")"))
This is something I should have noticed myself. I will fix this.
Thanks,
Bart.