diff options
author | Mariusz Zaborski <[email protected]> | 2022-11-10 22:37:12 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-10 13:37:12 -0800 |
commit | 16f0fdadddcc7562ddf475f496a434b9ac94b0f7 (patch) | |
tree | 79bdd273de7140b74a55a1425bdfd55abf51c3a1 /lib/libzfs | |
parent | 945b407486a0072ec7dd117a0bde2f72d52eb445 (diff) |
Allow to control failfast
Linux defaults to setting "failfast" on BIOs, so that the OS will not
retry IOs that fail, and instead report the error to ZFS.
In some cases, such as errors reported by the HBA driver, not
the device itself, we would wish to retry rather than generating
vdev errors in ZFS. This new property allows that.
This introduces a per vdev option to disable the failfast option.
This also introduces a global module parameter to define the failfast
mask value.
Reviewed-by: Brian Behlendorf <[email protected]>
Co-authored-by: Allan Jude <[email protected]>
Signed-off-by: Allan Jude <[email protected]>
Signed-off-by: Mariusz Zaborski <[email protected]>
Sponsored-by: Seagate Technology LLC
Submitted-by: Klara, Inc.
Closes #14056
Diffstat (limited to 'lib/libzfs')
-rw-r--r-- | lib/libzfs/libzfs.abi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libzfs/libzfs.abi b/lib/libzfs/libzfs.abi index 061a060b6..98873784e 100644 --- a/lib/libzfs/libzfs.abi +++ b/lib/libzfs/libzfs.abi @@ -3214,7 +3214,8 @@ <enumerator name='VDEV_PROP_BYTES_TRIM' value='38'/> <enumerator name='VDEV_PROP_REMOVING' value='39'/> <enumerator name='VDEV_PROP_ALLOCATING' value='40'/> - <enumerator name='VDEV_NUM_PROPS' value='41'/> + <enumerator name='VDEV_PROP_FAILFAST' value='41'/> + <enumerator name='VDEV_NUM_PROPS' value='42'/> </enum-decl> <typedef-decl name='vdev_prop_t' type-id='1573bec8' id='5aa5c90c'/> <enum-decl name='vdev_state' id='21566197'> |