public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* crash with CFS v4 and qemu/kvm (was: [patch] CFS scheduler, v4)
       [not found] <20070420140457.GA14017@elte.hu>
@ 2007-04-23  9:28 ` Christian Hesse
       [not found]   ` <200704231128.23594.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Hesse @ 2007-04-23  9:28 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Con Kolivas, Nick Piggin, Mike Galbraith,
	Arjan van de Ven, Peter Williams, Thomas Gleixner, caglar,
	Willy Tarreau, Gene Heskett, kvm-devel, Avi Kivity

[-- Attachment #1: Type: text/plain, Size: 575 bytes --]

On Friday 20 April 2007, Ingo Molnar wrote:
> i'm pleased to announce release -v4 of the CFS patchset.

Hi Ingo, hi Avi, hi all,

I'm trying to use kvm-20 with cfs v4 and get a crash:

eworm@revo:~$ /usr/local/kvm/bin/qemu -snapshot /mnt/data/virtual/qemu/winxp.img
kvm_run: failed entry, reason 7
kvm_run returned -8

It works (though it is a bit slow) if I start qemu with strace, so for me it 
looks like a race condition?

I did not test any earlier versions of cfs and kvm in combination - I can't 
say if it happens there as well.
-- 
Regards,
Chris

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: crash with CFS v4 and qemu/kvm (was: [patch] CFS scheduler, v4)
       [not found]   ` <200704231128.23594.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
@ 2007-04-23 10:18     ` Ingo Molnar
       [not found]       ` <20070423101839.GA19599-X9Un+BFzKDI@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Ingo Molnar @ 2007-04-23 10:18 UTC (permalink / raw)
  To: Christian Hesse
  Cc: Nick Piggin, kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	caglar-caicS1wCkhO6A22drWdTBw, Mike Galbraith, Peter Williams,
	Con Kolivas, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Gene Heskett,
	Willy Tarreau


* Christian Hesse <mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org> wrote:

> On Friday 20 April 2007, Ingo Molnar wrote:
> > i'm pleased to announce release -v4 of the CFS patchset.
> 
> Hi Ingo, hi Avi, hi all,
> 
> I'm trying to use kvm-20 with cfs v4 and get a crash:
> 
> eworm@revo:~$ /usr/local/kvm/bin/qemu -snapshot /mnt/data/virtual/qemu/winxp.img
> kvm_run: failed entry, reason 7
> kvm_run returned -8
> 
> It works (though it is a bit slow) if I start qemu with strace, so for 
> me it looks like a race condition?

hm. Can you work it around with:

   echo 0 > /proc/sys/kernel/sched_granularity_ns

?

If yes then this is a wakeup race: some piece of code relies on the 
upstream scheduler preempting the waker task immediately in 99% of the 
cases.

and you might want to test -v5 too which i released earlier today. It 
has no bugfix in this area though, so it will likely still trigger this 
race - but it will also hopefully be even more pleasant to use than -v4 
;-)

	Ingo

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: crash with CFS v4 and qemu/kvm (was: [patch] CFS scheduler, v4)
       [not found]       ` <20070423101839.GA19599-X9Un+BFzKDI@public.gmane.org>
@ 2007-04-24 10:54         ` Christian Hesse
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Hesse @ 2007-04-24 10:54 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Nick Piggin, kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	caglar-caicS1wCkhO6A22drWdTBw, Mike Galbraith, Peter Williams,
	Con Kolivas, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Gene Heskett,
	Willy Tarreau


[-- Attachment #1.1: Type: text/plain, Size: 1304 bytes --]

On Monday 23 April 2007, Ingo Molnar wrote:
> * Christian Hesse <mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org> wrote:
> > On Friday 20 April 2007, Ingo Molnar wrote:
> > > i'm pleased to announce release -v4 of the CFS patchset.
> >
> > Hi Ingo, hi Avi, hi all,
> >
> > I'm trying to use kvm-20 with cfs v4 and get a crash:
> >
> > eworm@revo:~$ /usr/local/kvm/bin/qemu -snapshot
> > /mnt/data/virtual/qemu/winxp.img kvm_run: failed entry, reason 7
> > kvm_run returned -8
> >
> > It works (though it is a bit slow) if I start qemu with strace, so for
> > me it looks like a race condition?
>
> hm. Can you work it around with:
>
>    echo 0 > /proc/sys/kernel/sched_granularity_ns
>
> ?
>
> If yes then this is a wakeup race: some piece of code relies on the
> upstream scheduler preempting the waker task immediately in 99% of the
> cases.
>
> and you might want to test -v5 too which i released earlier today. It
> has no bugfix in this area though, so it will likely still trigger this
> race - but it will also hopefully be even more pleasant to use than -v4
> ;-)

Hi Ingo,

This was kvm's fault. It works perfectly now without modifications to the 
scheduler. If anybody is interested in details please see the kvm mailing 
list archives.
-- 
Regards,
Chris

[-- Attachment #1.2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

[-- Attachment #2: Type: text/plain, Size: 286 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

[-- Attachment #3: Type: text/plain, Size: 186 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-04-24 10:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20070420140457.GA14017@elte.hu>
2007-04-23  9:28 ` crash with CFS v4 and qemu/kvm (was: [patch] CFS scheduler, v4) Christian Hesse
     [not found]   ` <200704231128.23594.mail-8oMOrB1mGocUSW6y5lq3GQ@public.gmane.org>
2007-04-23 10:18     ` Ingo Molnar
     [not found]       ` <20070423101839.GA19599-X9Un+BFzKDI@public.gmane.org>
2007-04-24 10:54         ` Christian Hesse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox