mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-04-28 12:50:53 +00:00
file-restore: add zfs. prefix to arc_min/max settings
Currently the values set for zfs_arc_min and zfs_arc_max are ignored by the kernel: ``` Unknown kernel command line parameters... will be passed to user space ``` module parameters provided on the commandline usually need to be prefixed with the modulename (e.g. zfs.zfs_arc_min, see [0] for a bit on related information (the issue itself is not related)). Paradoxically currently ZFS will print spurious warnings about settings being ignored when they are actually set - see [1]. Booting the debug image and connecting the shell on the serial console confirmed that the values did not seem to be set: `grep '^c_' /proc/spl/kstat/zfs/arcstats` showed half of the memory for c_max. [0] https://github.com/openzfs/zfs/issues/698 [1] https://github.com/openzfs/zfs/issues/12504 Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
This commit is contained in:
parent
038b0c48b4
commit
18844d6e3c
@ -260,7 +260,7 @@ pub async fn start_vm(
|
||||
// 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!(
|
||||
"{} panic=1 zfs_arc_min=16777216 zfs_arc_max=67108864 memhp_default_state=online_kernel",
|
||||
"{} panic=1 zfs.zfs_arc_min=16777216 zfs.zfs_arc_max=67108864 memhp_default_state=online_kernel",
|
||||
if debug { "debug" } else { "quiet" }
|
||||
),
|
||||
"-daemonize",
|
||||
|
Loading…
Reference in New Issue
Block a user