From ac09be50a129e86d21eecf8582bb3df555973dff Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Sun, 2 Oct 2022 20:02:43 +0800 Subject: [PATCH] Fixed order of code Signed-off-by: Andrew Innes --- module/zfs/arc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/zfs/arc.c b/module/zfs/arc.c index eeff7e643f05..1d5c3d12b59b 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -419,12 +419,12 @@ boolean_t arc_warm; /* * These tunables are for performance analysis. */ +unsigned long zfs_arc_max = 0; +unsigned long zfs_arc_min = 0; ZFS_MODULE_ULONG zfs_arc_meta_limit = 0; ZFS_MODULE_ULONG zfs_arc_meta_min = 0; static ZFS_MODULE_ULONG zfs_arc_dnode_limit = 0; static ZFS_MODULE_ULONG zfs_arc_dnode_reduce_percent = 10; -unsigned long zfs_arc_max = 0; -unsigned long zfs_arc_min = 0; static uint_t zfs_arc_grow_retry = 0; static uint_t zfs_arc_shrink_shift = 0; static uint_t zfs_arc_p_min_shift = 0;