diff --git a/module/zfs/arc.c b/module/zfs/arc.c index 40a93107d9..d73d6ffcc1 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -7282,7 +7282,7 @@ arc_tuning_update(void) /* Valid range: 64M - */ if ((zfs_arc_max) && (zfs_arc_max != arc_c_max) && - (zfs_arc_max > 64 << 20) && (zfs_arc_max < allmem) && + (zfs_arc_max >= 64 << 20) && (zfs_arc_max < allmem) && (zfs_arc_max > arc_c_min)) { arc_c_max = zfs_arc_max; arc_c = arc_c_max;