Skip to content

Commit

Permalink
arc_default_max on Linux should match FreeBSD
Browse files Browse the repository at this point in the history
Commits 518b487 and 23bdb07 changed the default ARC size limit on
Linux systems to 1/2 of physical memory, which has become too
strict for modern systems with large amounts of RAM. This patch
changes the default limit to match that of FreeBSD, so ZFS may
have a unified value on both platforms.

Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Edmund Nadolski <[email protected]>
Closes #15437
  • Loading branch information
ednadolski-ix authored Oct 26, 2023
1 parent 3afdc97 commit 6a629f3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 1 addition & 4 deletions man/man4/zfs.4
Original file line number Diff line number Diff line change
Expand Up @@ -644,10 +644,7 @@ Max size of ARC in bytes.
If
.Sy 0 ,
then the max size of ARC is determined by the amount of system memory installed.
Under Linux, half of system memory will be used as the limit.
Under
.Fx ,
the larger of
The larger of
.Sy all_system_memory No \- Sy 1 GiB
and
.Sy 5/8 No \(mu Sy all_system_memory
Expand Down
10 changes: 8 additions & 2 deletions module/os/linux/zfs/arc_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,18 @@ static struct notifier_block arc_hotplug_callback_mem_nb;

/*
* Return a default max arc size based on the amount of physical memory.
* This may be overridden by tuning the zfs_arc_max module parameter.
*/
uint64_t
arc_default_max(uint64_t min, uint64_t allmem)
{
/* Default to 1/2 of all memory. */
return (MAX(allmem / 2, min));
uint64_t size;

if (allmem >= 1 << 30)
size = allmem - (1 << 30);
else
size = min;
return (MAX(allmem * 5 / 8, size));
}

#ifdef _KERNEL
Expand Down

0 comments on commit 6a629f3

Please sign in to comment.