diff options
author | Ameer Hamza <[email protected]> | 2023-01-10 01:43:03 +0500 |
---|---|---|
committer | GitHub <[email protected]> | 2023-01-09 12:43:03 -0800 |
commit | 5091867ee66489012473626c5f58f3c4d66ea5f0 (patch) | |
tree | 2d62f29419646c9ec3a28d9411f4950d8f8075a3 /include/sys/fs | |
parent | 289f7e6adb58336281e87bffe853b280fc8ee498 (diff) |
zed: add hotplug support for spare vdevs
This commit supports for spare vdev hotplug. The
spare vdev associated with all the pools will be
marked as "Removed" when the driveĀ is physically
detached and will become "Available" when the
drive is reattached. Currently, the spare vdev
status does not change on the drive removal and
the same is the case with reattachment.
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Ryan Moeller <[email protected]>
Reviewed-by: Alexander Motin <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ameer Hamza <[email protected]>
Closes #14295
Diffstat (limited to 'include/sys/fs')
-rw-r--r-- | include/sys/fs/zfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/fs/zfs.h b/include/sys/fs/zfs.h index 1124604e8..993222e28 100644 --- a/include/sys/fs/zfs.h +++ b/include/sys/fs/zfs.h @@ -1657,6 +1657,7 @@ typedef enum { #define ZFS_ONLINE_UNSPARE 0x2 #define ZFS_ONLINE_FORCEFAULT 0x4 #define ZFS_ONLINE_EXPAND 0x8 +#define ZFS_ONLINE_SPARE 0x10 #define ZFS_OFFLINE_TEMPORARY 0x1 /* |