diff options
author | Seth Hoffert <[email protected]> | 2024-09-03 19:52:33 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-03 17:52:33 -0700 |
commit | bf8c61f489e07ddcfed246768059b37808b7f6e5 (patch) | |
tree | 844c36b776e16542e13f5dc1ccfbdbaf385865cd | |
parent | b3b7491615308d80e363854e977387f633ad9327 (diff) |
Remove unused sysctl node
PR #14953 removed vdev-level read cache but accidentally left this
sysctl node behind.
Reviewed-by: Rich Ercolani <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Alexander Motin <[email protected]>
Signed-off-by: Seth Hoffert <[email protected]>
Closes #16493
-rw-r--r-- | module/os/freebsd/zfs/sysctl_os.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/module/os/freebsd/zfs/sysctl_os.c b/module/os/freebsd/zfs/sysctl_os.c index 30983b13f..c84cb7407 100644 --- a/module/os/freebsd/zfs/sysctl_os.c +++ b/module/os/freebsd/zfs/sysctl_os.c @@ -124,7 +124,6 @@ SYSCTL_NODE(_vfs_zfs, OID_AUTO, zio, CTLFLAG_RW, 0, "ZFS ZIO"); SYSCTL_NODE(_vfs_zfs_livelist, OID_AUTO, condense, CTLFLAG_RW, 0, "ZFS livelist condense"); -SYSCTL_NODE(_vfs_zfs_vdev, OID_AUTO, cache, CTLFLAG_RW, 0, "ZFS VDEV Cache"); SYSCTL_NODE(_vfs_zfs_vdev, OID_AUTO, file, CTLFLAG_RW, 0, "ZFS VDEV file"); SYSCTL_NODE(_vfs_zfs_vdev, OID_AUTO, mirror, CTLFLAG_RD, 0, "ZFS VDEV mirror"); |