[pve-devel] [PATCH zfsonlinux 3/3] move manpage arcstat(1) to arcstat(8).

2021-02-04 Thread Stoiko Ivanov
Adapted from debian upstream [0] commits: 1a3239e6b3b5604bb588c10912f57f32962b38c3 66b7241c965cdce730e76ca59c242fccc267b302 [0] https://salsa.debian.org/zfsonlinux-team/zfs/ Originally-By: Mo Zhou Originally-By: Antonio Russo Signed-off-by: Stoiko Ivanov ---

[pve-devel] [PATCH zfsonlinux 1/3] update submodule to zfs-2.0.0

2021-02-04 Thread Stoiko Ivanov
Signed-off-by: Stoiko Ivanov --- upstream | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upstream b/upstream index 32a78e57..d022406a 16 --- a/upstream +++ b/upstream @@ -1 +1 @@ -Subproject commit 32a78e579dd3395e122a451848cf88089f6b18ae +Subproject commit

[pve-devel] [PATCH zfsonlinux 2/3] zgenhostid is installed in /sbin

2021-02-04 Thread Stoiko Ivanov
Adapted from debian upstream [0] commits: 76f1cec519ce3bd126dbb3b9d63e3a76c1b7c89e [0] https://salsa.debian.org/zfsonlinux-team/zfs/ Originally-By: Antonio Russo Signed-off-by: Stoiko Ivanov --- debian/zfsutils-linux.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[pve-devel] [PATCH zfsonlinux 0/3] update to ZFS 2.0.2

2021-02-04 Thread Stoiko Ivanov
ZFS 2.0.2 got released recently. This patchset updates the submodule to the new tag, and adds 2 patches from salsa.d.o: * zgenhostid got moved from /usr/bin/ to /sbin * the arcstat manpage got moved to section 8 (to avoid conflicting with another package The first commit is necessary, I added

[pve-devel] [PATCH v2 qemu-server 3/4] savevm: show information about drives during snapshot

2021-02-04 Thread Stefan Reiter
Signed-off-by: Stefan Reiter --- v2: * use $device of course, really shouldn't do last-minute formatting without testing PVE/QemuConfig.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PVE/QemuConfig.pm b/PVE/QemuConfig.pm index 37db347..ae5f561 100644 --- a/PVE/QemuConfig.pm +++

[pve-devel] [PATCH qemu-server 3/4] savevm: show information about drives during snapshot

2021-02-04 Thread Stefan Reiter
Signed-off-by: Stefan Reiter --- I personally like this as well since it shows the order of operations, but might be too verbose... PVE/QemuConfig.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PVE/QemuConfig.pm b/PVE/QemuConfig.pm index 37db347..ae5f561 100644 ---

[pve-devel] [PATCH qemu-server 1/4] vzdump: use renderers from Tools instead of duplicating code

2021-02-04 Thread Stefan Reiter
CLIFormatter, though maybe not perfectly named, already has functions doing the same task - use those. Signed-off-by: Stefan Reiter --- Wanted to move these to a shared location to use in the next patch, found that we already had functions doing pretty much the same stuff...

[pve-devel] [PATCH manager 4/4] ui: snapshot: show task viewer for progress log

2021-02-04 Thread Stefan Reiter
Signed-off-by: Stefan Reiter --- www/manager6/window/Snapshot.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/manager6/window/Snapshot.js b/www/manager6/window/Snapshot.js index 2fa97041..a5fddd0f 100644 --- a/www/manager6/window/Snapshot.js +++

[pve-devel] [PATCH qemu-server 2/4] savevm: periodically print progress

2021-02-04 Thread Stefan Reiter
Signed-off-by: Stefan Reiter --- PVE/QemuConfig.pm | 13 + 1 file changed, 13 insertions(+) diff --git a/PVE/QemuConfig.pm b/PVE/QemuConfig.pm index 3f4605f..37db347 100644 --- a/PVE/QemuConfig.pm +++ b/PVE/QemuConfig.pm @@ -14,6 +14,7 @@ use PVE::QemuServer; use

[pve-devel] [PATCH storage] clone image: specify base format option with qemu-img

2021-02-04 Thread Fabian Ebner
and avoid a warning. It is deprecated to auto-detect the format of the base volume. See commit d9f059aa6cfccefaffa3532556e966df4a99ece2 in qemu for more information. Signed-off-by: Fabian Ebner --- PVE/Storage/GlusterfsPlugin.pm | 2 +- PVE/Storage/Plugin.pm | 2 +- 2 files changed, 2

Re: [pve-devel] [PATCH conntrack-tool v2 1/5] initial commit

2021-02-04 Thread Thomas Lamprecht
On 04.02.21 11:15, Mira Limbeck wrote: > On 2/4/21 9:07 AM, Thomas Lamprecht wrote: >> On 03.02.21 15:25, Mira Limbeck wrote: >>> Dumping conntrack information and importing conntrack information works >>> for IPv4 and IPv6. No filtering is supported for now. pve-conntrack-tool >>> will always

Re: [pve-devel] [PATCH conntrack-tool v2 1/5] initial commit

2021-02-04 Thread Mira Limbeck
Forgot to change this, it is actually the minimum of sysconf(_SC_PAGESIZE) and 8192. Will fix this in v3. On 2/3/21 3:25 PM, Mira Limbeck wrote: +pub const MNL_SOCKET_BUFFER_SIZE: libc::c_int = 8192; ___ pve-devel mailing list

Re: [pve-devel] [PATCH conntrack-tool v2 1/5] initial commit

2021-02-04 Thread Mira Limbeck
On 2/4/21 9:07 AM, Thomas Lamprecht wrote: On 03.02.21 15:25, Mira Limbeck wrote: Dumping conntrack information and importing conntrack information works for IPv4 and IPv6. No filtering is supported for now. pve-conntrack-tool will always return both IPv4 and IPv6 conntracks together.

Re: [pve-devel] [PATCH conntrack-tool v2 2/5] add packaging support

2021-02-04 Thread Mira Limbeck
On 2/4/21 8:08 AM, Thomas Lamprecht wrote: On 03.02.21 15:25, Mira Limbeck wrote: Signed-off-by: Mira Limbeck --- v2: - unchanged Some nits/comments inline. You probably adapted this from proxmox-backup so my comments may hold true there too. pmg-log-tracker actually .cargo/config

Re: [pve-devel] [PATCH conntrack-tool v2 1/5] initial commit

2021-02-04 Thread Thomas Lamprecht
On 03.02.21 15:25, Mira Limbeck wrote: > Dumping conntrack information and importing conntrack information works > for IPv4 and IPv6. No filtering is supported for now. pve-conntrack-tool > will always return both IPv4 and IPv6 conntracks together. > > Conntracks are serialized as JSON and

[pve-devel] [PATCH storage] NFS: avoid using obsolete rpcinfo option

2021-02-04 Thread Fabian Ebner
as suggested in the man page. Signed-off-by: Fabian Ebner --- PVE/Storage/NFSPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/NFSPlugin.pm b/PVE/Storage/NFSPlugin.pm index 72e06c2..cb16864 100644 --- a/PVE/Storage/NFSPlugin.pm +++