Re: [libvirt] specifying -serial telnet: in XML

2009-04-03 Thread Sukadev Bhattiprolu
| My kernel boot command line has 'console=ttyS0' option. Is there anything | else I need to ensure 'telnet 127.0.0.1 port' displays the messages ? | | That setting should be what's required to make serial console work. Are | you sure you've got it set in the correct place of grub.conf for

Re: [libvirt] freecell gives out bytes instead of kilobytes

2009-04-03 Thread Florian Vichot
Gerrit Slomma a écrit : --- a/src/virsh.c2009-04-02 17:45:50.0 +0200 +++ b/src/virsh.c 2009-04-02 23:35:54.0 +0200 @@ -1661,10 +1661,23 @@ } if (cell == -1) -vshPrint(ctl, %s: %llu kB\n, _(Total), memory); + if (memory 10*1024*1204*1024) If I

[libvirt] [PATCH] Openvz: how to use a nondefault config

2009-04-03 Thread Anton Protopopov
2009/4/2 Daniel P. Berrange berra...@redhat.com On Thu, Apr 02, 2009 at 06:36:15PM +0400, Evgeniy Sokolov wrote: Config /etc/vz/conf/ve-XXX.conf-sample define there are many parameters like memory, CPU etc. This parameters are not properties of filesystem. Daniel, usage of

Re: [libvirt] PATCH: Xen PCI device passthrough

2009-04-03 Thread Daniel Veillard
On Mon, Mar 30, 2009 at 03:00:55PM +0100, Daniel P. Berrange wrote: This patch implements PCI device passthrough for Xen. In pci.c there is a fair bit of refactoring to better support both pcistub.ko and pciback.ko. The latter has two extra sysfs files, add_slot and remove_slot for

Re: [libvirt] PATCH: Fix crash / cleanup bugs in sVirt verification

2009-04-03 Thread Daniel Veillard
On Fri, Apr 03, 2009 at 01:22:11PM +0100, Daniel P. Berrange wrote: If defining a VM without any seclabel element present, the new verification code will crash as it deferences NULL, so we just need to skip over that. Second, if one does a roundtrip of a live VM config virsh dumpxml

Re: [libvirt] [PATCH] Refresh storage volume on dumpxml

2009-04-03 Thread Cole Robinson
Daniel P. Berrange wrote: On Thu, Apr 02, 2009 at 02:00:22PM -0400, Cole Robinson wrote: The storage driver refreshes a volume's capacity+allocation data when the 'info' command is called. Seems that we should also update it when dumpxml is called, which also returns size information. Yes,

[libvirt] Release of libvirt-0.6.2

2009-04-03 Thread Daniel Veillard
Trying to keep up with last week posted schedule, the new release was pushed to the usual place: ftp://libvirt.org/libvirt/ This is mostly a bug fix release, though it also includes a few new features and some improvements: * New features: - support SASL auth for VNC server (Daniel

[libvirt] Planning and schedule

2009-04-03 Thread Daniel Veillard
Trying to keep up the promises from last week: - so 0.6.2 is released and out - I still plan for a new release 0.6.3 around Fri 24 April - which mean we should have some kind of feature commit freeze around the 17th April - and the week 20 - 24 focusing mostly on bug fixes

Re: [libvirt] freecell gives out bytes instead of kilobytes

2009-04-03 Thread Gerrit Slomma
Florian Vichot schrieb: Gerrit Slomma a écrit : if (cell == -1) -vshPrint(ctl, %s: %llu kB\n, _(Total), memory); + if (memory 10*1024*1204*1024) If I may, it should probably read 1024, not 1204 here. and here. + { + vshPrint(ctl, %d: %.0f MB\n,

Re: [libvirt] Release of libvirt-0.6.2

2009-04-03 Thread Gerrit Slomma
make rpm or rpmbuild --rebuild libvirt-0.6.2-1.fc9.src.rpm is broken. With good reason he (rpmbuild) complains about not finding libvirt_proxy. In proxy/Makefile a lot of is commented out - is this due to the libvirt_proxy buffer overflow? There is no libvirt_proxy in the

[libvirt] [PATCH 1/1] Add trigger of host rescan

2009-04-03 Thread David Allan
The scsi host code does not currently rescan for new LUs when refreshing a pool. This patch causes a scan for new LUs on all targets. It does not cause a LIP. --- src/storage_backend_scsi.c | 77 src/storage_backend_scsi.h |1 + 2 files