Re: [pve-devel] [RFC manager 2/2] ui: dc: backup: Add detail dialog, disks included

2019-12-20 Thread Thomas Lamprecht
Am 12/12/19 um 11:27 AM schrieb Aaron Lauterer: > Adds a 'Detail' button which opens a new dialog to show which disks > and mountpoints will be included the selected backup job. > > Signed-off-by: Aaron Lauterer > --- > > For this RFC the new detail dialog is a bit bare and only shows the > tree

[pve-devel] [PATCH doc] backup restore: Fix syntax for bwlimit example

2019-12-20 Thread Dominic Jäger
Signed-off-by: Dominic Jäger --- vzdump.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vzdump.adoc b/vzdump.adoc index fd7f13f..404ad09 100644 --- a/vzdump.adoc +++ b/vzdump.adoc @@ -200,7 +200,7 @@ time, thus we implemented the possibility to set a default bandwidth li

[pve-devel] [PATCH storage] cifs-plugin: Add bwlimit storage option

2019-12-20 Thread Dominic Jäger
This is already implemented in all other storage plugins. Signed-off-by: Dominic Jäger --- PVE/Storage/CIFSPlugin.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/Storage/CIFSPlugin.pm b/PVE/Storage/CIFSPlugin.pm index 582f99b..6115a96 100644 --- a/PVE/Storage/CIFSPlugin.pm +++ b/PVE/S

[pve-devel] applied: [PATCH storage] cifs-plugin: Add bwlimit storage option

2019-12-20 Thread Thomas Lamprecht
Am 12/20/19 um 10:12 AM schrieb Dominic Jäger: > This is already implemented in all other storage plugins. > > Signed-off-by: Dominic Jäger > --- > PVE/Storage/CIFSPlugin.pm | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/PVE/Storage/CIFSPlugin.pm b/PVE/Storage/CIFSPlugin.pm > index 58

[pve-devel] applied: [PATCH doc] backup restore: Fix syntax for bwlimit example

2019-12-20 Thread Thomas Lamprecht
Am 12/20/19 um 10:09 AM schrieb Dominic Jäger: > Signed-off-by: Dominic Jäger > --- > vzdump.adoc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/vzdump.adoc b/vzdump.adoc > index fd7f13f..404ad09 100644 > --- a/vzdump.adoc > +++ b/vzdump.adoc > @@ -200,7 +200,7 @@ time,

Re: [pve-devel] [PATCH v2 qemu-server 2/3] add error handling to vmconfig_apply_pending

2019-12-20 Thread Thomas Lamprecht
Am 12/13/19 um 12:41 PM schrieb Oguz Bektas: > --- > PVE/API2/Qemu.pm | 6 +++--- > PVE/QemuServer.pm | 9 - > 2 files changed, 11 insertions(+), 4 deletions(-) > > diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm > index 3c7ef30..baa96f2 100644 > --- a/PVE/API2/Qemu.pm > +++ b/PVE/API2/

[pve-devel] applied: [PATCH v2 qemu-server 1/3] hotplug_pending: remove redundant write/load config calls

2019-12-20 Thread Thomas Lamprecht
Am 12/13/19 um 12:41 PM schrieb Oguz Bektas: > instead of writing the config after every change, we can do it once for > all the changes in the end to avoid redundant i/o. > > we also don't need to load_config after writing fastplug changes. > > Signed-off-by: Oguz Bektas > --- > PVE/QemuServer