Skip to content

Commit

Permalink
ZTS: Disable io_uring test on CentOS 9
Browse files Browse the repository at this point in the history
The io_uring test fails on CentOS 9 with the following fio error.
Disable the test for the benefit of the CI until this can be fully
investigated.  This basic test passes as expected on newer kernels.

Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes openzfs#15636
  • Loading branch information
behlendorf committed Dec 22, 2023
1 parent e1bc32f commit 986a0ac
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/zfs-tests/tests/functional/io/io_uring.ksh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ if ! $(grep -q "CONFIG_IO_URING=y" /boot/config-$(uname -r)); then
log_unsupported "Requires io_uring support"
fi

if [ -e /etc/os-release ] ; then
source /etc/os-release
if [ -n "$REDHAT_SUPPORT_PRODUCT_VERSION" ] && ((floor($REDHAT_SUPPORT_PRODUCT_VERSION) == 9)) ; then
log_unsupported "Disabled on CentOS 9, fails with 'Operation not permitted'"
fi
fi

fio --ioengine=io_uring --parse-only || log_unsupported "io_uring support required"

function cleanup
Expand Down

0 comments on commit 986a0ac

Please sign in to comment.