Re: [pve-devel] pve-kernel-4.4.10-1-pve woes

2016-07-04 Thread Michael Rasmussen
On Mon, 4 Jul 2016 07:42:51 +0200 Fabian Grünbichler wrote: > > could you give the 4.4.13 kernel from pve-no-subscription a try? More I have installed 4.4.13 on a node. 1) Created a Debian Jessie container and a Ubuntu-15-10 container on a IB NFS share 2) Installed bonnie++ on both 3) Run bonnie

[pve-devel] [PATCH kvm 1/2] buildsys: turned git-revert into patch; using --depth=1

2016-07-04 Thread Wolfgang Bumiller
Makes 'make download' much less of a waste of time, space and traffic. --- Note: applied together with Thomas L.'s qemu 2.6 patches Makefile | 5 +--- ...ert-target-i386-disable-LINT0-after-reset.patch | 34 ++ debian/patches/series

[pve-devel] [PATCH kvm 2/2] buildsys: add phony deb target, make ${DEBS} non-phony

2016-07-04 Thread Wolfgang Bumiller
--- Note: applied together with Thomas L.'s qemu 2.6 patches Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7bab7ab..9452c09 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,9 @@ download: git clone --depth=1 git://git.qemu-proje

Re: [pve-devel] [PATCH kvm v3 0/2] update to 2.6.0

2016-07-04 Thread Wolfgang Bumiller
applied both patches On Fri, Jul 01, 2016 at 05:26:00PM +0200, Thomas Lamprecht wrote: > Adressed comments by Wolfgang B. > > changes since v2: > * fix patch 0015-backup-modify-job-api.patch and > 0049-backup-bdrv_set_enable_write_cache-is-no-more.patch where I missed two > checks if target i

[pve-devel] [PATCH container] allow deleting of container hostname

2016-07-04 Thread Dominik Csapak
since we allow to create a container without hostname (we are using localhost by default then) and hostname is marked optional in the JSONSchema of the config we should be able to delete the hostname Signed-off-by: Dominik Csapak --- src/PVE/LXC/Config.pm | 4 +++- 1 file changed, 3 insertions(+

[pve-devel] [PATCH qemu-server v2] disable usb hotplug for now

2016-07-04 Thread Dominik Csapak
we have a few problems with hotplug at the moment: qemu may add usb hubs when adding usb devices but fails to remove them when removing the usb device (this is a qemu bug) also when starting a guest with a usb device we add ehci and uchi controllers, which we cannot hot unplug with those devices,

Re: [pve-devel] [RFC v2 container] added 'pct df'

2016-07-04 Thread Fabian Grünbichler
applied On Mon, Jul 04, 2016 at 02:55:41PM +0200, Wolfgang Bumiller wrote: > This works on both online and offline containers. Offline > containers get mounted (with a 'mounted' lock) during the > operation. > > The output is similar to 'df -h'. > > Example output: > MP Volume

[pve-devel] [RFC v2 container] added 'pct df'

2016-07-04 Thread Wolfgang Bumiller
This works on both online and offline containers. Offline containers get mounted (with a 'mounted' lock) during the operation. The output is similar to 'df -h'. Example output: MP Volume Size Used Avail Use% Path rootfs tank:subvol-400-disk-1 9.0G 184.9M 8.8G 0.0 / mp0

[pve-devel] [pve-manager] add ca-certificates as required depency

2016-07-04 Thread Emmanuel Kasper
ca-certificates provides the necessary root ca certificates to connect to the PVE enterprise repositories The package was always installed since pve-manager 3.1-13 as an indirect 'Depends:' via liblwp-protocol-https, but could have been missing in previous versions of pve. Adding this dependency

Re: [pve-devel] [PATCH common] df: untaint the result

2016-07-04 Thread Fabian Grünbichler
applied On Mon, Jul 04, 2016 at 12:59:51PM +0200, Wolfgang Bumiller wrote: > --- > src/PVE/Tools.pm | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/src/PVE/Tools.pm b/src/PVE/Tools.pm > index 039c9fb..68c4e68 100644 > --- a/src/PVE/Tools.pm > +++ b/src/PVE/Tools.pm

Re: [pve-devel] [PATCH manager] lxc/status: show disk usage on running containers

2016-07-04 Thread Fabian Grünbichler
applied On Mon, Jul 04, 2016 at 12:09:20PM +0200, Wolfgang Bumiller wrote: > --- > www/manager6/lxc/StatusView.js | 14 +- > 1 file changed, 13 insertions(+), 1 deletion(-) > > diff --git a/www/manager6/lxc/StatusView.js b/www/manager6/lxc/StatusView.js > index 426b4cc..11145b3 10064

[pve-devel] [RFC container] added 'pct df'

2016-07-04 Thread Wolfgang Bumiller
This works on both online and offline containers. Offline containers get mounted (with a 'mounted' lock) during the operation. The output is similar to 'df -h' and only shows size information for volumes and device mount points: Example output: MP Size Used Use% Path rootfs 9.0G 184.9M

Re: [pve-devel] [PATCH qemu-server] disable usb hotplug for now

2016-07-04 Thread Fabian Grünbichler
is there a specific reason for the mix of "disabling styles" here? first hunk adds a die and comments the original code, second replaces the orig. code completely with a die statement, and the last two add additional (final) die statements.. imho it would make more sense to stick to one way or th

[pve-devel] [PATCH manager] fix surviving update store

2016-07-04 Thread Dominik Csapak
when a load of an update store was ongoing and stopUpdate was called, the task could not be canceled, and the store would remain indefinitely this patch sets 'isStopped' of the store on stopUpdate and checks it on the next update and stopping it then Signed-off-by: Dominik Csapak --- www/manage

[pve-devel] [PATCH container] fix 1046: add non-snapshotted disks as unused

2016-07-04 Thread Fabian Grünbichler
--- Note: container part, apply together with common and qemu-server part src/PVE/LXC/Config.pm | 29 + 1 file changed, 29 insertions(+) diff --git a/src/PVE/LXC/Config.pm b/src/PVE/LXC/Config.pm index 0ad32f4..6b0ed4f 100644 --- a/src/PVE/LXC/Config.pm +++ b/src/PVE/

[pve-devel] [PATCH qemu-server] fix 1046: add non-snapshotted disks as unused

2016-07-04 Thread Fabian Grünbichler
--- Note: qemu-server part, apply together with common and container part PVE/QemuConfig.pm | 29 + 1 file changed, 29 insertions(+) diff --git a/PVE/QemuConfig.pm b/PVE/QemuConfig.pm index c9c5e60..3ce95ac 100644 --- a/PVE/QemuConfig.pm +++ b/PVE/QemuConfig.pm @@ -26

[pve-devel] [PATCH common] fix 1046: add non-snapshotted disks as unused

2016-07-04 Thread Fabian Grünbichler
--- Note: abstract part, apply together with container and qemu-server patch src/PVE/AbstractConfig.pm | 13 + 1 file changed, 13 insertions(+) diff --git a/src/PVE/AbstractConfig.pm b/src/PVE/AbstractConfig.pm index 0799c8b..ac12fd1 100644 --- a/src/PVE/AbstractConfig.pm +++ b/src/P

[pve-devel] [PATCH common] df: untaint the result

2016-07-04 Thread Wolfgang Bumiller
--- src/PVE/Tools.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/PVE/Tools.pm b/src/PVE/Tools.pm index 039c9fb..68c4e68 100644 --- a/src/PVE/Tools.pm +++ b/src/PVE/Tools.pm @@ -851,9 +851,9 @@ sub df { $pipe->reader(); my $readvalues = sub { - $r

[pve-devel] [PATCH manager] lxc/status: show disk usage on running containers

2016-07-04 Thread Wolfgang Bumiller
--- www/manager6/lxc/StatusView.js | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/www/manager6/lxc/StatusView.js b/www/manager6/lxc/StatusView.js index 426b4cc..11145b3 100644 --- a/www/manager6/lxc/StatusView.js +++ b/www/manager6/lxc/StatusView.js @@ -57,6 +57