* [PATCH manager 1/3] report: adapt to zarcstat renaming
2026-03-10 13:56 [PATCH manager/backup/datacenter-manager 0/3] report: adapt to zarcstat renaming Stoiko Ivanov
@ 2026-03-10 13:56 ` Stoiko Ivanov
2026-03-10 13:56 ` [PATCH proxmox-backup 2/3] " Stoiko Ivanov
2026-03-10 13:56 ` [PATCH proxmox-datacenter-manager 3/3] " Stoiko Ivanov
2 siblings, 0 replies; 4+ messages in thread
From: Stoiko Ivanov @ 2026-03-10 13:56 UTC (permalink / raw)
To: pve-devel, pdm-devel, pbs-devel
With ZFS 2.4.0 `arcstat` was renamed to `zarcstat`, without providing
a symlink for backward compatibility [0].
This patch fixes the invocation in pvereport.
[0] https://git.proxmox.com/?p=zfsonlinux.git;a=commit;h=b52bb3caa4e4c7fab516c3aa828caa7b48b5ed7f
Reported-by: Friedrich Weber <f.weber@proxmox.com>
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
---
PVE/Report.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/PVE/Report.pm b/PVE/Report.pm
index 549a5d23..29433d4a 100644
--- a/PVE/Report.pm
+++ b/PVE/Report.pm
@@ -147,7 +147,7 @@ my $init_report_cmds = sub {
'zpool status',
'zpool list -v',
'zfs list',
- 'arcstat',
+ 'zarcstat',
;
}
--
2.47.3
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH proxmox-backup 2/3] report: adapt to zarcstat renaming
2026-03-10 13:56 [PATCH manager/backup/datacenter-manager 0/3] report: adapt to zarcstat renaming Stoiko Ivanov
2026-03-10 13:56 ` [PATCH manager 1/3] " Stoiko Ivanov
@ 2026-03-10 13:56 ` Stoiko Ivanov
2026-03-10 13:56 ` [PATCH proxmox-datacenter-manager 3/3] " Stoiko Ivanov
2 siblings, 0 replies; 4+ messages in thread
From: Stoiko Ivanov @ 2026-03-10 13:56 UTC (permalink / raw)
To: pve-devel, pdm-devel, pbs-devel
With ZFS 2.4.0 `arcstat` was renamed to `zarcstat`, without providing
a symlink for backward compatibility [0].
This patch fixes the invocation in proxmox-backup-manager report.
[0] https://git.proxmox.com/?p=zfsonlinux.git;a=commit;h=b52bb3caa4e4c7fab516c3aa828caa7b48b5ed7f
Reported-by: Friedrich Weber <f.weber@proxmox.com>
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
---
src/server/report.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/server/report.rs b/src/server/report.rs
index 546555fb..e4c761cd 100644
--- a/src/server/report.rs
+++ b/src/server/report.rs
@@ -85,7 +85,7 @@ fn commands() -> Vec<(&'static str, Vec<&'static str>)> {
("bash", vec!["-c", "ls -l /dev/disk/by-*/"]),
("zpool", vec!["status"]),
("zfs", vec!["list"]),
- ("arcstat", vec![]),
+ ("zarcstat", vec![]),
("dmidecode", vec!["-t", "bios"]),
("lscpu", vec![]),
("lspci", vec!["-nnk"]),
--
2.47.3
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH proxmox-datacenter-manager 3/3] report: adapt to zarcstat renaming
2026-03-10 13:56 [PATCH manager/backup/datacenter-manager 0/3] report: adapt to zarcstat renaming Stoiko Ivanov
2026-03-10 13:56 ` [PATCH manager 1/3] " Stoiko Ivanov
2026-03-10 13:56 ` [PATCH proxmox-backup 2/3] " Stoiko Ivanov
@ 2026-03-10 13:56 ` Stoiko Ivanov
2 siblings, 0 replies; 4+ messages in thread
From: Stoiko Ivanov @ 2026-03-10 13:56 UTC (permalink / raw)
To: pve-devel, pdm-devel, pbs-devel
With ZFS 2.4.0 `arcstat` was renamed to `zarcstat`, without providing
a symlink for backward compatibility [0].
This patch fixes the invocation in
proxmox-datacenter-manager-admin report.
[0] https://git.proxmox.com/?p=zfsonlinux.git;a=commit;h=b52bb3caa4e4c7fab516c3aa828caa7b48b5ed7f
Reported-by: Friedrich Weber <f.weber@proxmox.com>
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
---
server/src/report.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server/src/report.rs b/server/src/report.rs
index 9da6b42..371d8cf 100644
--- a/server/src/report.rs
+++ b/server/src/report.rs
@@ -77,7 +77,7 @@ fn commands() -> Vec<(&'static str, Vec<&'static str>)> {
("ls", vec!["-l", "/dev/disk/by-id", "/dev/disk/by-path"]),
("zpool", vec!["status"]),
("zfs", vec!["list"]),
- ("arcstat", vec![]),
+ ("zarcstat", vec![]),
("ip", vec!["-details", "-statistics", "address"]),
("ip", vec!["-4", "route", "show"]),
("ip", vec!["-6", "route", "show"]),
--
2.47.3
^ permalink raw reply [flat|nested] 4+ messages in thread