Re: [pve-devel] renaming of disks at cloning VM (patch)

2016-07-21 Thread Fabian Grünbichler
On Thu, Jul 21, 2016 at 08:26:16PM +0800, p...@spichka.info wrote: > Hello! > > Testing: > qemu-server: 4.0-85 > > Problem: > #qm clone 106 117 -storage local -full > create full clone of drive ide1 (iso:106/vm-106-disk-1.qcow2) > Formatting '/var/lib/vz/images/117/vm-117-disk-2.qcow2', fmt=qcow2

[pve-devel] [PATCH qemu-server] add lock check for move_disk API call

2016-07-21 Thread Fabian Grünbichler
this API call changes the config quite drastically, and as such should not be possible while an operation that holds a lock is ongoing (e.g., migration, backup, snapshot). --- PVE/API2/Qemu.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm index df0518d..

[pve-devel] renaming of disks at cloning VM (patch)

2016-07-21 Thread pve
Hello! Testing: qemu-server: 4.0-85 Problem: #qm clone 106 117 -storage local -full create full clone of drive ide1 (iso:106/vm-106-disk-1.qcow2) Formatting '/var/lib/vz/images/117/vm-117-disk-2.qcow2', fmt=qcow2 size=1073664 encryption=off cluster_size=65536 preallocation=metadata lazy_refcount

Re: [pve-devel] Speed up PVE Backup

2016-07-21 Thread Eneko Lacunza
Hi, El 21/07/16 a las 09:34, Dietmar Maurer escribió: But you can try to assemble larger blocks, and write them once you get an out of order block... Yes, this is the plan. I always thought the ceph libraries does (or should do) that anyways? (write combining) Reading the docs: http://docs.

Re: [pve-devel] [RFC manager] open vm console on doubleclick in tree

2016-07-21 Thread Dietmar Maurer
applied. We will see if people like this ... ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] Set VirIO as default devices for Linux VMs (with patches)

2016-07-21 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] Set VirIO as default devices for Linux VMs (with patches)

2016-07-21 Thread Dominik Csapak
On 07/21/2016 11:10 AM, Emmanuel Kasper wrote: (resending as the patch serie was missing from previous mail) This patch series adds capabilities to store Qemu Wizard Defaults, and use these capabilities to set virtio by default for Linux machines. Changes since V2: * listen to 'radiogroup' eve

Re: [pve-devel] [PATCH kernel] add scheduler fix for ceph on numa hosts

2016-07-21 Thread Wolfgang Bumiller
applied On Thu, Jul 14, 2016 at 04:00:19PM +0200, Fabian Grünbichler wrote: > see https://forum.proxmox.com/threads/ceph-kernel-4-4-8-bug.28196/ > and https://lkml.org/lkml/2016/3/17/570 for background > --- > Makefile | 1 + > ceph-scheduler-fix.patch | 137 > +

[pve-devel] [RFC manager] open vm console on doubleclick in tree

2016-07-21 Thread Dominik Csapak
with this patch you can open the console of a guest with a simple doubleclick in the tree Signed-off-by: Dominik Csapak --- i find this very convenient, because on several occasions, i instinctively double-clicked on the tree items and expected the console to open please comment if you find this

[pve-devel] [PATCH manager v2 1/4] Rename Wizard Component aliases using camelCase

2016-07-21 Thread Emmanuel Kasper
this is ExtJS recommended practise, follows most of our conventions and is necessary for querying components with Ext.ComponentQuery.query() without escaping the dots in the component widget name. --- www/manager6/form/BusTypeSelector.js | 2 +- www/manager6/form/ControllerSelector.js | 4 ++-

[pve-devel] [PATCH manager v2 2/4] Add PVE.qemu.OSDefaults class to hold OS-dependant wizard defaults

2016-07-21 Thread Emmanuel Kasper
--- www/manager6/Makefile | 1 + www/manager6/qemu/OSDefaults.js | 58 + 2 files changed, 59 insertions(+) create mode 100644 www/manager6/qemu/OSDefaults.js diff --git a/www/manager6/Makefile b/www/manager6/Makefile index 92969b3..e5b3667 10064

[pve-devel] Set VirIO as default devices for Linux VMs (with patches)

2016-07-21 Thread Emmanuel Kasper
(resending as the patch serie was missing from previous mail) This patch series adds capabilities to store Qemu Wizard Defaults, and use these capabilities to set virtio by default for Linux machines. Changes since V2: * listen to 'radiogroup' events in OSTypeEdit instead of setting a listener

[pve-devel] [PATCH manager v2 4/4] Set VirtIO drivers as default when using the Qemu Wizard and the OS Type is Linux

2016-07-21 Thread Emmanuel Kasper
virtio-blk and virtio-net have been in the kernel since 2.6.25 released in 2008, so it safe to assume distributions using the l26 type will have these drivers. --- www/manager6/qemu/CreateWizard.js | 3 ++- www/manager6/qemu/OSTypeEdit.js | 36 2 files chan

[pve-devel] [PATCH manager v2 3/4] USe PVE.qemu.OSDefaults statics to get defaults for NIC and Storage Controller

2016-07-21 Thread Emmanuel Kasper
--- www/manager6/form/ControllerSelector.js | 2 +- www/manager6/qemu/NetworkEdit.js| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www/manager6/form/ControllerSelector.js b/www/manager6/form/ControllerSelector.js index 0e1f322..1b2946a 100644 --- a/www/manager6/for

Re: [pve-devel] Speed up PVE Backup

2016-07-21 Thread Dietmar Maurer
> But I suppose they're mostly ordered? Yes - depends how much writes happens during backup... > > But you can try to assemble larger blocks, and write them once you get > > an out of order block... > Yes, this is the plan. > > I always thought the ceph libraries does (or should do) that anyways?