Re: [kvm-devel] qemu/kvm: support for pci passthrough

2008-05-08 Thread Anthony Liguori
Dor Laor wrote: > On Thu, 2008-05-08 at 12:03 +0200, Nicolas Daneau wrote: >> Hi, >> >> I saw there was an active discussion about pci passthrough support in >> KVM. I'm not a Dev, only a sys admin that need this support. As i saw >> on the KVM home page that this feature is plan for 2H2008 in the

Re: [kvm-devel] QEMU/KVM: fix copy&paste bug in ACPI IRQ routing tables

2008-05-07 Thread Avi Kivity
Marcelo Tosatti wrote: > Slots 9 and 25 were using the identifier of the previous slot. > > Applied, thanks. -- error compiling committee.c: too many arguments to function - This SF.net email is sponsored by the 2008 Ja

[kvm-devel] QEMU/KVM: fix copy&paste bug in ACPI IRQ routing tables

2008-05-06 Thread Marcelo Tosatti
Slots 9 and 25 were using the identifier of the previous slot. Signed-off-by: Marcelo Tosatti <[EMAIL PROTECTED]> diff --git a/bios/acpi-dsdt.dsl b/bios/acpi-dsdt.dsl index d2e33f4..c145c4b 100755 --- a/bios/acpi-dsdt.dsl +++ b/bios/acpi-dsdt.dsl @@ -269,10 +269,10 @@ DefinitionBlock (

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2008-05-02 Thread David Abrahams
Avi Kivity wrote: > David Abrahams wrote: >> Jon gmail.com> writes: >> >> >>> I use: >>> >>> export QEMU_AUDIO_DRV=alsa >>> export QEMU_AUDIO_DAC_FIXED_FREQ=48000 >>> export QEMU_AUDIO_ADC_FIXED_FREQ=48000 >>> export QEMU_ALSA_DAC_BUFFER_SIZE=16384 >>> >>> Buffer size is very important, else it

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2008-05-02 Thread Avi Kivity
David Abrahams wrote: > Jon gmail.com> writes: > > >> I use: >> >> export QEMU_AUDIO_DRV=alsa >> export QEMU_AUDIO_DAC_FIXED_FREQ=48000 >> export QEMU_AUDIO_ADC_FIXED_FREQ=48000 >> export QEMU_ALSA_DAC_BUFFER_SIZE=16384 >> >> Buffer size is very important, else it crackles and pops for me. >>

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2008-05-01 Thread David Abrahams
Jon gmail.com> writes: > > I use: > > export QEMU_AUDIO_DRV=alsa > export QEMU_AUDIO_DAC_FIXED_FREQ=48000 > export QEMU_AUDIO_ADC_FIXED_FREQ=48000 > export QEMU_ALSA_DAC_BUFFER_SIZE=16384 > > Buffer size is very important, else it crackles and pops for me. Unfortunately with my upgrade to Ubu

Re: [kvm-devel] QEMU/KVM [RFC]: add support for 128 PCI slots

2008-04-25 Thread Alexander Graf
On Apr 25, 2008, at 10:39 PM, Marcelo Tosatti wrote: > On Fri, Apr 25, 2008 at 11:38:21AM +0200, Alexander Graf wrote: >> >> On Apr 25, 2008, at 3:01 AM, Marcelo Tosatti wrote: >> >>> >>> Add three PCI bridges to support 128 slots. Vendor and device_id >>> have >>> been stolen from my test box.

Re: [kvm-devel] QEMU/KVM [RFC]: add support for 128 PCI slots

2008-04-25 Thread Marcelo Tosatti
On Fri, Apr 25, 2008 at 11:38:21AM +0200, Alexander Graf wrote: > > On Apr 25, 2008, at 3:01 AM, Marcelo Tosatti wrote: > > > > >Add three PCI bridges to support 128 slots. Vendor and device_id have > >been stolen from my test box. > > > >I/O port addresses behind each bridge are statically alloc

Re: [kvm-devel] QEMU/KVM: clear HF_HALTED mask at vcpu startup time

2008-04-20 Thread Avi Kivity
Marcelo Tosatti wrote: > Now that threads are spinned up before machine->init(), clearing > of HF_HALTED_MASK for irqchip in kernel case needs to be moved > to actual vcpu startup. > Applied, thanks. -- Do not meddle in the internals of kernels, for they are subtle and quick to panic.

[kvm-devel] QEMU/KVM: clear HF_HALTED mask at vcpu startup time

2008-04-17 Thread Marcelo Tosatti
Now that threads are spinned up before machine->init(), clearing of HF_HALTED_MASK for irqchip in kernel case needs to be moved to actual vcpu startup. Signed-off-by: Marcelo Tosatti <[EMAIL PROTECTED]> diff --git a/qemu/qemu-kvm.c b/qemu/qemu-kvm.c index f7a217a..50589a7 100644 --- a/qemu/qemu-

Re: [kvm-devel] QEMU/KVM: make sure all vcpus are paused before saving state

2008-04-11 Thread Avi Kivity
Marcelo Tosatti wrote: > Make sure that all threads are paused in userspace before saving machine > state. > > Applied, thanks. -- Any sufficiently difficult bug is indistinguishable from a feature. - This SF.net email

[kvm-devel] QEMU/KVM: make sure all vcpus are paused before saving state

2008-04-09 Thread Marcelo Tosatti
Make sure that all threads are paused in userspace before saving machine state. Signed-off-by: Marcelo Tosatti <[EMAIL PROTECTED]> --- kvm-userspace.io/qemu/qemu-kvm.c +++ kvm-userspace.io/qemu/qemu-kvm.c @@ -244,7 +244,7 @@ static int all_threads_paused(void) int i; for (i = 0; i <

Re: [kvm-devel] QEMU/KVM: make kvm_arch_load_regs() aware of in kernel APIC

2008-04-04 Thread Avi Kivity
Marcelo Tosatti wrote: > kvm_arch_load_regs() might load APIC base and APIC TPR from the > uninitialized userspace APIC emulation. > > This happened when running X11 on SMP guest in my case, disabling the > APIC for vcpu3: > > vcpu not ready for apic_round_robin > vcpu not ready for apic_round_robi

Re: [kvm-devel] QEMU/KVM: make kvm_arch_load_regs() aware of in kernel APIC

2008-04-04 Thread Ryan Harper
* Marcelo Tosatti <[EMAIL PROTECTED]> [2008-04-03 18:22]: > > kvm_arch_load_regs() might load APIC base and APIC TPR from the > uninitialized userspace APIC emulation. > > This happened when running X11 on SMP guest in my case, disabling the > APIC for vcpu3: > > vcpu not ready for apic_round_ro

[kvm-devel] QEMU/KVM: make kvm_arch_load_regs() aware of in kernel APIC

2008-04-03 Thread Marcelo Tosatti
kvm_arch_load_regs() might load APIC base and APIC TPR from the uninitialized userspace APIC emulation. This happened when running X11 on SMP guest in my case, disabling the APIC for vcpu3: vcpu not ready for apic_round_robin vcpu not ready for apic_round_robin vcpu not ready for apic_round_robi

Re: [kvm-devel] QEMU/KVM: virtio-blk asynchronous IO

2008-03-29 Thread Anthony Liguori
Marcelo Tosatti wrote: > Use asynchronous IO in the virtio block QEMU driver. > > virtio_blk_handle_output should not block for long periods, since it > holds the mutex lock prohibiting other vcpu's from doing IO to QEMU > devices. Without AIO write intensive benchmarks make guests hang for > sever

Re: [kvm-devel] QEMU/KVM: virtio-blk asynchronous IO

2008-03-27 Thread Anthony Liguori
Marcelo Tosatti wrote: > Use asynchronous IO in the virtio block QEMU driver. > > virtio_blk_handle_output should not block for long periods, since it > holds the mutex lock prohibiting other vcpu's from doing IO to QEMU > devices. Without AIO write intensive benchmarks make guests hang for > sever

[kvm-devel] QEMU/KVM: virtio-blk asynchronous IO

2008-03-27 Thread Marcelo Tosatti
Use asynchronous IO in the virtio block QEMU driver. virtio_blk_handle_output should not block for long periods, since it holds the mutex lock prohibiting other vcpu's from doing IO to QEMU devices. Without AIO write intensive benchmarks make guests hang for several seconds. Write performance als

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-24 Thread Zdenek Kabelac
2008/3/24, Avi Kivity <[EMAIL PROTECTED]>: > Avi Kivity wrote: > >> > >> > >> Tested - and actually seeing no difference in my case of memory leak. > >> Still it looks like over 30M per execution of qemu is lost. > >> (tested with fresh 2.6.25-rc6 with your patch) > >> > >> > > > > Can you

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-24 Thread Avi Kivity
Avi Kivity wrote: Tested - and actually seeing no difference in my case of memory leak. Still it looks like over 30M per execution of qemu is lost. (tested with fresh 2.6.25-rc6 with your patch) Can you double check? 2.6.25-rc6 definitely leaks without, and here it doesn't with the patch

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-24 Thread Avi Kivity
Zdenek Kabelac wrote: > 2008/3/23, Avi Kivity <[EMAIL PROTECTED]>: > >> Avi Kivity wrote: >> > >> > I see the same issue too now, and am investigating. >> > >> >> >> The attached patch should fix the issue. It is present in 2.6.25-rc6 >> only, and not in kvm.git, which is why few people not

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-23 Thread Zdenek Kabelac
2008/3/23, Avi Kivity <[EMAIL PROTECTED]>: > Avi Kivity wrote: > > > > I see the same issue too now, and am investigating. > > > > > The attached patch should fix the issue. It is present in 2.6.25-rc6 > only, and not in kvm.git, which is why few people noticed it. > Hi Tested - and actually

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-23 Thread Avi Kivity
Avi Kivity wrote: I see the same issue too now, and am investigating. The attached patch should fix the issue. It is present in 2.6.25-rc6 only, and not in kvm.git, which is why few people noticed it. -- error compiling committee.c: too many arguments to function diff --git a/arch/x86/kv

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-23 Thread Avi Kivity
Zdenek Kabelac wrote: > 2008/3/19, Avi Kivity <[EMAIL PROTECTED]>: > >> Zdenek Kabelac wrote: >> > 2008/3/19, Avi Kivity <[EMAIL PROTECTED]>: >> > >> >> Zdenek Kabelac wrote: >> >> > 2008/3/16, Avi Kivity <[EMAIL PROTECTED]>: >> >> The -vnc switch, so there's no local X server. A remote X

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-19 Thread Avi Kivity
Zdenek Kabelac wrote: > 2008/3/19, Avi Kivity <[EMAIL PROTECTED]>: > >> Zdenek Kabelac wrote: >> > 2008/3/16, Avi Kivity <[EMAIL PROTECTED]>: >> > >> >> Zdenek Kabelac wrote: >> >> > Hello >> >> > >> >> > Recently I'm using qemu-kvm on fedora-rawhide box with my own kernels >> >> > (w

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-19 Thread Zdenek Kabelac
2008/3/19, Avi Kivity <[EMAIL PROTECTED]>: > Zdenek Kabelac wrote: > > 2008/3/16, Avi Kivity <[EMAIL PROTECTED]>: > > > >> Zdenek Kabelac wrote: > >> > Hello > >> > > >> > Recently I'm using qemu-kvm on fedora-rawhide box with my own kernels > >> > (with many debug options) I've noticed

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-19 Thread Avi Kivity
Zdenek Kabelac wrote: > 2008/3/16, Avi Kivity <[EMAIL PROTECTED]>: > >> Zdenek Kabelac wrote: >> > Hello >> > >> > Recently I'm using qemu-kvm on fedora-rawhide box with my own kernels >> > (with many debug options) I've noticed that over the time my memory >> > seems to disappear somewhere

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-19 Thread Zdenek Kabelac
2008/3/16, Avi Kivity <[EMAIL PROTECTED]>: > Zdenek Kabelac wrote: > > Hello > > > > Recently I'm using qemu-kvm on fedora-rawhide box with my own kernels > > (with many debug options) I've noticed that over the time my memory > > seems to disappear somewhere. > > > > Here is my memory trace

Re: [kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-16 Thread Avi Kivity
Zdenek Kabelac wrote: > Hello > > Recently I'm using qemu-kvm on fedora-rawhide box with my own kernels > (with many debug options) I've noticed that over the time my memory > seems to disappear somewhere. > > Here is my memory trace after boot and some time of work - thus memory > should be popula

[kvm-devel] Qemu-kvm is leaking my memory ???

2008-03-14 Thread Zdenek Kabelac
Hello Recently I'm using qemu-kvm on fedora-rawhide box with my own kernels (with many debug options) I've noticed that over the time my memory seems to disappear somewhere. Here is my memory trace after boot and some time of work - thus memory should be populated. MemTotal: 2007460 kB MemF

[kvm-devel] QEMU/KVM: report paravirt features on cpuid

2008-01-30 Thread Marcelo Tosatti
And the corresponding QEMU support to report parafeatures on cpuid. Signed-off-by: Marcelo Tosatti <[EMAIL PROTECTED]> Index: kvm-userspace/libkvm/libkvm.c === --- kvm-userspace.orig/libkvm/libkvm.c +++ kvm-userspace/libkvm/libkvm.c

Re: [kvm-devel] QEMU/KVM reboot after loading from statefile

2007-12-06 Thread Lukasz Lempart
On Dec 6, 2007 5:13 AM, Uri Lublin <[EMAIL PROTECTED]> wrote: > Lukasz Lempart wrote: > > Hi, > > > > I am having a problem with starting qemu/kvm from a previously saved > > statefile. qemu/kvm starts and the console output is the same as when > > I initially stopped the vm and saved state. Howev

Re: [kvm-devel] QEMU/KVM reboot after loading from statefile

2007-12-06 Thread Uri Lublin
Lukasz Lempart wrote: > Hi, > > I am having a problem with starting qemu/kvm from a previously saved > statefile. qemu/kvm starts and the console output is the same as when > I initially stopped the vm and saved state. However, after a 'cont' > the guest reboots (i.e. takes me back to the grub m

[kvm-devel] QEMU/KVM reboot after loading from statefile

2007-12-05 Thread Lukasz Lempart
Hi, I am having a problem with starting qemu/kvm from a previously saved statefile. qemu/kvm starts and the console output is the same as when I initially stopped the vm and saved state. However, after a 'cont' the guest reboots (i.e. takes me back to the grub menu). The specs for my setup are as

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-23 Thread Avi Kivity
David Abrahams wrote: >>> "For ALSA 1.0.9rc2 and higher you don't need to setup dmix. Dmix is >>> enabled as default for soundcards which don't support hw mixing." >>> >>> I've found this to be the case on my laptop, where I use: >>> >>> export QEMU_AUDIO_DRV=alsa >>> export QEMU_AUDIO_DAC_FIXED_F

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-23 Thread David Abrahams
on Wed May 23 2007, Avi Kivity wrote: > Jon wrote: >> On Mon, May 21, 2007 at 08:37:48AM -0700, Shahar Frank wrote: >> >> >>> You have to make QEMU use ALSA as your sound system and specify a >>> mixer device for input and output. This can be done using some >>> environment variables that s

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-23 Thread Avi Kivity
Jon wrote: > On Mon, May 21, 2007 at 08:37:48AM -0700, Shahar Frank wrote: > > >> You have to make QEMU use ALSA as your sound system and specify a >> mixer device for input and output. This can be done using some >> environment variables that should be set before the qemu binary is >> run. >

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-23 Thread Avi Kivity
David Abrahams wrote: > on Mon May 21 2007, Avi Kivity > wrote: > > >> David Abrahams wrote: >> >>> When I have windows XP running under kvm, I get >>> >>> [EMAIL PROTECTED]:/tmp$ aplay /usr/share/sounds/gaim/receive.wav >>> ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_open) unable to open

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-23 Thread Andreas Hasenack
On Tuesday 22 May 2007 23:37:56 David Abrahams wrote: > on Mon May 21 2007, Avi Kivity wrote: > > David Abrahams wrote: > >> When I have windows XP running under kvm, I get > >> > >> [EMAIL PROTECTED]:/tmp$ aplay /usr/share/sounds/gaim/receive.wav > >> ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_op

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-22 Thread David Abrahams
on Mon May 21 2007, Avi Kivity wrote: > David Abrahams wrote: >> When I have windows XP running under kvm, I get >> >> [EMAIL PROTECTED]:/tmp$ aplay /usr/share/sounds/gaim/receive.wav >> ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_open) unable to open slave >> aplay: main:550: audio open erro

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-21 Thread Jon
On Mon, May 21, 2007 at 08:37:48AM -0700, Shahar Frank wrote: > You have to make QEMU use ALSA as your sound system and specify a > mixer device for input and output. This can be done using some > environment variables that should be set before the qemu binary is > run. >From the ALSA wiki: "

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-21 Thread Shahar Frank
You have to make QEMU use ALSA as your sound system and specify a mixer device for input and output. This can be done using some environment variables that should be set before the qemu binary is run. The following may work: export QEMU_AUDIO_DRV=alsa # the default is OSS if I recall corr

Re: [kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-21 Thread Avi Kivity
David Abrahams wrote: > When I have windows XP running under kvm, I get > > [EMAIL PROTECTED]:/tmp$ aplay /usr/share/sounds/gaim/receive.wav > ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_open) unable to open slave > aplay: main:550: audio open error: Device or resource busy > > As soon as I shut

[kvm-devel] qemu/kvm seems to take ALSA all for itself?

2007-05-21 Thread David Abrahams
When I have windows XP running under kvm, I get [EMAIL PROTECTED]:/tmp$ aplay /usr/share/sounds/gaim/receive.wav ALSA lib pcm_dmix.c:864:(snd_pcm_dmix_open) unable to open slave aplay: main:550: audio open error: Device or resource busy As soon as I shut down my VM, though, it works perf

Re: [kvm-devel] QEMU / KVM support in libvirt & virt-manager

2007-02-27 Thread Daniel P. Berrange
On Tue, Feb 27, 2007 at 05:20:27PM +0200, Avi Kivity wrote: > Daniel P. Berrange wrote: > >The virt-manager in Fedora Core 6 hasn't been updated to the newest > >0.3.1 release yet - only the underling libvirt has been pushed to FC6 > >thus far. > > Will we see it in FC6-updates? I'd like to try

Re: [kvm-devel] QEMU / KVM support in libvirt & virt-manager

2007-02-27 Thread Avi Kivity
Daniel P. Berrange wrote: > The virt-manager in Fedora Core 6 hasn't been updated to the newest > 0.3.1 release yet - only the underling libvirt has been pushed to FC6 > thus far. Will we see it in FC6-updates? I'd like to try it, but I'm not keen on rawhide. -- error compiling committee.c:

Re: [kvm-devel] QEMU / KVM support in libvirt & virt-manager

2007-02-25 Thread Avi Kivity
Daniel P. Berrange wrote: > On Sun, Feb 25, 2007 at 07:32:58AM +0200, Avi Kivity wrote: > >> Daniel P. Berrange wrote: >> >>> FYI, as of libvirt 0.2.0 and virt-manager 0.3.1 there is now >>> (experimental!) >>> support for managing virtual machines running under QEMU or KVM >>> virtualiz

Re: [kvm-devel] QEMU / KVM support in libvirt & virt-manager

2007-02-25 Thread Daniel P. Berrange
On Sun, Feb 25, 2007 at 10:34:15AM +0200, Avi Kivity wrote: > Avi Kivity wrote: > >Daniel P. Berrange wrote: > > > >>FYI, as of libvirt 0.2.0 and virt-manager 0.3.1 there is now > >>(experimental!) > >>support for managing virtual machines running under QEMU or KVM > >>virtualization > >>platf

Re: [kvm-devel] QEMU / KVM support in libvirt & virt-manager

2007-02-25 Thread Daniel P. Berrange
On Sun, Feb 25, 2007 at 07:32:58AM +0200, Avi Kivity wrote: > Daniel P. Berrange wrote: > >FYI, as of libvirt 0.2.0 and virt-manager 0.3.1 there is now > >(experimental!) > >support for managing virtual machines running under QEMU or KVM > >virtualization > >platforms, as well as the existing Xe

Re: [kvm-devel] QEMU / KVM support in libvirt & virt-manager

2007-02-25 Thread Avi Kivity
Avi Kivity wrote: > Daniel P. Berrange wrote: > >> FYI, as of libvirt 0.2.0 and virt-manager 0.3.1 there is now (experimental!) >> support for managing virtual machines running under QEMU or KVM >> virtualization >> platforms, as well as the existing Xen support. >> >> >> > > Great; as

Re: [kvm-devel] QEMU / KVM support in libvirt & virt-manager

2007-02-24 Thread Avi Kivity
Daniel P. Berrange wrote: > FYI, as of libvirt 0.2.0 and virt-manager 0.3.1 there is now (experimental!) > support for managing virtual machines running under QEMU or KVM virtualization > platforms, as well as the existing Xen support. > > Great; as I see it hit FC6-updates I'll give it a shot

[kvm-devel] QEMU / KVM support in libvirt & virt-manager

2007-02-22 Thread Daniel P. Berrange
FYI, as of libvirt 0.2.0 and virt-manager 0.3.1 there is now (experimental!) support for managing virtual machines running under QEMU or KVM virtualization platforms, as well as the existing Xen support. Project sites: http://libvirt.org/ http://virt-manager.org/ Release announcements here:

Re: [kvm-devel] qemu-kvm

2006-11-14 Thread Baruch Even
* Simon Kagstrom <[EMAIL PROTECTED]> [061114 11:30]: > At Tue, 14 Nov 2006 10:50:23 +0200, > Avi Kivity wrote: > > > > Baruch Even wrote: > > > Can the Qemu built with KVM support run without KVM? Froma quick perusal > > > of the kvm.patch it seems that there are places where USE_KVM implies a > >

Re: [kvm-devel] qemu-kvm

2006-11-14 Thread Simon Kagstrom
At Tue, 14 Nov 2006 10:50:23 +0200, Avi Kivity wrote: > > Baruch Even wrote: > > Can the Qemu built with KVM support run without KVM? Froma quick perusal > > of the kvm.patch it seems that there are places where USE_KVM implies a > > qemu-panic without any runtime conditionals. > > qemu-kvm.patch

Re: [kvm-devel] qemu-kvm

2006-11-14 Thread Avi Kivity
Baruch Even wrote: > Can the Qemu built with KVM support run without KVM? Froma quick perusal > of the kvm.patch it seems that there are places where USE_KVM implies a > qemu-panic without any runtime conditionals. > qemu-kvm.patch is an older release. With the new release, it should be possi

Re: [kvm-devel] qemu-kvm

2006-11-14 Thread Avi Kivity
Simon Kagstrom wrote: > At Tue, 14 Nov 2006 10:50:23 +0200, > Avi Kivity wrote: > >> Baruch Even wrote: >> >>> Can the Qemu built with KVM support run without KVM? Froma quick perusal >>> of the kvm.patch it seems that there are places where USE_KVM implies a >>> qemu-panic without any runt

Re: [kvm-devel] qemu-kvm

2006-11-14 Thread Simon Kagstrom
At Tue, 14 Nov 2006 09:26:01 +0200, Baruch Even wrote: > > Can the Qemu built with KVM support run without KVM? Froma quick perusal > of the kvm.patch it seems that there are places where USE_KVM implies a > qemu-panic without any runtime conditionals. There is the -no-kvm option which you can pa

[kvm-devel] qemu-kvm

2006-11-13 Thread Baruch Even
Can the Qemu built with KVM support run without KVM? Froma quick perusal of the kvm.patch it seems that there are places where USE_KVM implies a qemu-panic without any runtime conditionals. I'd like to push the KVM patches to Debian Qemu and need to know if they need to create new executables or j