mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-02-25 17:57:35 +03:00
limit ZFS Arc to more smalles possible value
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
c190a32cb1
commit
a6c07eb9c2
@ -235,9 +235,10 @@ pub async fn start_vm(
|
|||||||
"-initrd",
|
"-initrd",
|
||||||
&ramfs_path,
|
&ramfs_path,
|
||||||
"-append",
|
"-append",
|
||||||
|
// NOTE: ZFS requires that the ARC can at least grow to the max transaction size of 64MB
|
||||||
|
// also: setting any of min/max to zero will rather do the opposite of what one wants here
|
||||||
&format!(
|
&format!(
|
||||||
"{} panic=1 zfs_arc_min=0 zfs_arc_max=0 memhp_default_state=online_kernel
|
"{} panic=1 zfs_arc_min=16777216 zfs_arc_max=67108864 memhp_default_state=online_kernel",
|
||||||
",
|
|
||||||
if debug { "debug" } else { "quiet" }
|
if debug { "debug" } else { "quiet" }
|
||||||
),
|
),
|
||||||
"-daemonize",
|
"-daemonize",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user