rev1 [PATCH] support colon in filenames

2009-06-26 Thread Ram Pai
Problem: It is impossible to feed filenames with the character colon because qemu interprets such names as a protocol. For example a filename scsi:0, is interpreted as a protocol by name scsi. This patch allows user to espace colon characters. For example the above filename can now be expressed

Re: [PATCH] support colon in filenames

2009-06-26 Thread Kevin Wolf
Ram Pai schrieb: On Thu, 2009-06-25 at 11:14 +0200, Kevin Wolf wrote: Ram Pai schrieb: Copying the qemu-devel mailing list too. On Wed, 2009-06-24 at 09:58 -0700, Ram Pai wrote: Problem: It is impossible to feed filenames with the character colon because qemu interprets such names as a

Re: ESX on KVM requirements

2009-06-26 Thread Alexander Graf
On 25.06.2009, at 04:04, Ben Sanders wrote: I applied the patch I found here: http://thread.gmane.org/gmane.comp.emulators.qemu/35419 and here are my new debug results: http://pastebin.com/m60d53e9d It looks like it is still crashing in the same place, so I double checked that the patch was

Re: KVM-87 compile failed

2009-06-26 Thread FinnTux
 CC [M]  /tmp/kvm-87/kvm/kernel/x86/vmx.o /tmp/kvm-87/kvm/kernel/x86/vmx.c: In function ‘ept_rsvd_mask’: /tmp/kvm-87/kvm/kernel/x86/vmx.c:3272: error: ‘struct cpuinfo_x86’ has no member named ‘x86_phys_bits’ make[4]: *** [/tmp/kvm-87/kvm/kernel/x86/vmx.o] Error 1 make[3]: ***

Re: [PATCH 3/3] eventfd: add internal reference counting to fix notifier race conditions

2009-06-26 Thread Michael S. Tsirkin
On Thu, Jun 25, 2009 at 02:41:09PM -0400, Gregory Haskins wrote: Michael S. Tsirkin wrote: On Thu, Jun 25, 2009 at 01:32:22PM -0400, Gregory Haskins wrote: Please take a close look at it and consider for merging, if you would. With all the incremental patching, I kind of lost

Re: [PATCHv6 05/12] qemu/pci: MSI-X support functions

2009-06-26 Thread Michael S. Tsirkin
On Sun, Jun 21, 2009 at 07:49:54PM +0300, Michael S. Tsirkin wrote: +dev-msix_mmio_index = cpu_register_io_memory(0, msix_mmio_read, + msix_mmio_write, dev); The signature for cpu_register_io_memory changed meanwhile so this now needs to be:

[KVM-AUTOTEST][PATCH 0/2] kvm autotest in guest scan_results fixes

2009-06-26 Thread Ryan Harper
When running autotest tests in a kvm guest via client/tests/kvm test, kvm_tests.py attempts to parse the output from the ssh connection. This contains bogus data and fails to parse the results. This patch series switches to parsing the status file that autotest generates. Signed-off-by: Ryan

[KVM-AUTOTEST][PATCH 1/2] Add parse_results_file method to scan_results.py

2009-06-26 Thread Ryan Harper
o Add a new method, parse_results_file which takes a file, reads the data and invokes the parse_results method. o Refactor main() method to use parse_results_file. Signed-off-by: Ryan Harper ry...@us.ibm.com --- client/tests/kvm/scan_results.py | 13 - 1 files changed, 8

[KVM-AUTOTEST][PATCH 2/2] Parse guest autotest results from status file

2009-06-26 Thread Ryan Harper
Recently the autotest runs in the guest would pass but we would fail to parse the results and indicate a failure. This is probably due to the logging change as the stdout output includes the [$date DEBUG] info which breaks scan_results.py:parse_results(). Rather than trying to parse the output

Re: [Autotest] [KVM-AUTOTEST][PATCH 0/2] kvm autotest in guest scan_results fixes

2009-06-26 Thread Lucas Meneghel Rodrigues
On Fri, 2009-06-26 at 12:00 -0500, Ryan Harper wrote: When running autotest tests in a kvm guest via client/tests/kvm test, kvm_tests.py attempts to parse the output from the ssh connection. This contains bogus data and fails to parse the results. This patch series switches to parsing the

Re: [Autotest] [KVM-AUTOTEST][PATCH 0/2] kvm autotest in guest scan_results fixes

2009-06-26 Thread Ryan Harper
* Lucas Meneghel Rodrigues l...@redhat.com [2009-06-26 13:07]: On Fri, 2009-06-26 at 12:00 -0500, Ryan Harper wrote: When running autotest tests in a kvm guest via client/tests/kvm test, kvm_tests.py attempts to parse the output from the ssh connection. This contains bogus data and fails to

rev2 [PATCH] support colon in filenames

2009-06-26 Thread Ram Pai
Problem: It is impossible to feed filenames with the character colon because qemu interprets such names as a protocol. For example filename scsi:0, is interpreted as a protocol by name scsi. This patch allows user to espace colon characters. For example the above filename can now be expressed