diff options
author | наб <[email protected]> | 2021-12-11 01:21:46 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2021-12-21 12:05:11 -0800 |
commit | d6fccfe62ed338aef3a4c906b1cddaf3e501290e (patch) | |
tree | 497df59ebc67a66c33a4c4d1019adcb201e87dd1 /cmd/zed | |
parent | 491165c079adc1f8e6970fda7968da09d4f4841b (diff) |
zed: agents: zfs_retire: fix unused, remove argsused
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #12835
Diffstat (limited to 'cmd/zed')
-rw-r--r-- | cmd/zed/agents/zfs_retire.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/zed/agents/zfs_retire.c b/cmd/zed/agents/zfs_retire.c index 5fb7b4e84..8f12bb82e 100644 --- a/cmd/zed/agents/zfs_retire.c +++ b/cmd/zed/agents/zfs_retire.c @@ -263,7 +263,6 @@ replace_with_spare(fmd_hdl_t *hdl, zpool_handle_t *zhp, nvlist_t *vdev) * ASRU is now usable. ZFS has found the device to be present and * functioning. */ -/*ARGSUSED*/ static void zfs_vdev_repair(fmd_hdl_t *hdl, nvlist_t *nvl) { @@ -302,11 +301,11 @@ zfs_vdev_repair(fmd_hdl_t *hdl, nvlist_t *nvl) vdev_guid, pool_guid); } -/*ARGSUSED*/ static void zfs_retire_recv(fmd_hdl_t *hdl, fmd_event_t *ep, nvlist_t *nvl, const char *class) { + (void) ep; uint64_t pool_guid, vdev_guid; zpool_handle_t *zhp; nvlist_t *resource, *fault; |