Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] qemux86: disable paravirt guest in linux 3.4, causes test failures
@ 2013-05-07 17:08 Ross Burton
  2013-05-07 17:12 ` Bruce Ashfield
  2013-05-07 18:28 ` Darren Hart
  0 siblings, 2 replies; 4+ messages in thread
From: Ross Burton @ 2013-05-07 17:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: dvhart

The shutdown sanity test that we previously saw on qemux86-64 in 2.6.37 have
started to re-appear reproducably on qemux86 in 3.4 in the Danny series.  Until
this can be root-caused and fixed in the kernel, disable paravirtualisation
across all kernels and all qemu machines.

[ YOCTO #4196 ]

Signed-off-by: Ross Burton <ross.burton@intel.com>
---
 meta/recipes-kernel/linux/linux-yocto_3.4.bb |    1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto_3.4.bb b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
index b81b9ac..18d665a 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.4.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
@@ -26,5 +26,4 @@ COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemux86-64"
 KERNEL_FEATURES_append = " features/netfilter/netfilter.scc"
 KERNEL_FEATURES_append_qemux86=" cfg/sound.scc"
 KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc"
-KERNEL_FEATURES_append_qemux86=" cfg/paravirt_kvm.scc"
 KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}"
-- 
1.7.10.4




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

* Re: [PATCH] qemux86: disable paravirt guest in linux 3.4, causes test failures
  2013-05-07 17:08 [PATCH] qemux86: disable paravirt guest in linux 3.4, causes test failures Ross Burton
@ 2013-05-07 17:12 ` Bruce Ashfield
  2013-05-07 17:16   ` Burton, Ross
  2013-05-07 18:28 ` Darren Hart
  1 sibling, 1 reply; 4+ messages in thread
From: Bruce Ashfield @ 2013-05-07 17:12 UTC (permalink / raw)
  To: Ross Burton; +Cc: dvhart, openembedded-core

On 13-05-07 01:08 PM, Ross Burton wrote:
> The shutdown sanity test that we previously saw on qemux86-64 in 2.6.37 have
> started to re-appear reproducably on qemux86 in 3.4 in the Danny series.  Until
> this can be root-caused and fixed in the kernel, disable paravirtualisation
> across all kernels and all qemu machines.

Acked-by: Bruce Ashfield <bruce.ashfield@windriver.com>

(I also have pending updates to the latest 3.4 + LTSI, so it's worth
checking to see if they happen to help here. Or was it only when these
were applied that we started seeing this ?).

Bruce

>
> [ YOCTO #4196 ]
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
>   meta/recipes-kernel/linux/linux-yocto_3.4.bb |    1 -
>   1 file changed, 1 deletion(-)
>
> diff --git a/meta/recipes-kernel/linux/linux-yocto_3.4.bb b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
> index b81b9ac..18d665a 100644
> --- a/meta/recipes-kernel/linux/linux-yocto_3.4.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
> @@ -26,5 +26,4 @@ COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemux86-64"
>   KERNEL_FEATURES_append = " features/netfilter/netfilter.scc"
>   KERNEL_FEATURES_append_qemux86=" cfg/sound.scc"
>   KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc"
> -KERNEL_FEATURES_append_qemux86=" cfg/paravirt_kvm.scc"
>   KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}"
>




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

* Re: [PATCH] qemux86: disable paravirt guest in linux 3.4, causes test failures
  2013-05-07 17:12 ` Bruce Ashfield
@ 2013-05-07 17:16   ` Burton, Ross
  0 siblings, 0 replies; 4+ messages in thread
From: Burton, Ross @ 2013-05-07 17:16 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: dvhart, openembedded-core

On 7 May 2013 18:12, Bruce Ashfield <bruce.ashfield@windriver.com> wrote:
> (I also have pending updates to the latest 3.4 + LTSI, so it's worth
> checking to see if they happen to help here. Or was it only when these
> were applied that we started seeing this ?).

They crash is sufficiently rare that I'm not able to precisely point
at when it started appearing - I just ran ~twenty cycles of the tests
and it only hit once.

Ross



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

* Re: [PATCH] qemux86: disable paravirt guest in linux 3.4, causes test failures
  2013-05-07 17:08 [PATCH] qemux86: disable paravirt guest in linux 3.4, causes test failures Ross Burton
  2013-05-07 17:12 ` Bruce Ashfield
@ 2013-05-07 18:28 ` Darren Hart
  1 sibling, 0 replies; 4+ messages in thread
From: Darren Hart @ 2013-05-07 18:28 UTC (permalink / raw)
  To: Ross Burton; +Cc: openembedded-core



On 05/07/2013 10:08 AM, Ross Burton wrote:
> The shutdown sanity test that we previously saw on qemux86-64 in 2.6.37 have
> started to re-appear reproducably on qemux86 in 3.4 in the Danny series.  Until
> this can be root-caused and fixed in the kernel, disable paravirtualisation
> across all kernels and all qemu machines.
> 
> [ YOCTO #4196 ]
> 
> Signed-off-by: Ross Burton <ross.burton@intel.com>

Acked-by: Darren Hart <dvhart@linux.intel.com>

> ---
>  meta/recipes-kernel/linux/linux-yocto_3.4.bb |    1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/meta/recipes-kernel/linux/linux-yocto_3.4.bb b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
> index b81b9ac..18d665a 100644
> --- a/meta/recipes-kernel/linux/linux-yocto_3.4.bb
> +++ b/meta/recipes-kernel/linux/linux-yocto_3.4.bb
> @@ -26,5 +26,4 @@ COMPATIBLE_MACHINE = "qemuarm|qemux86|qemuppc|qemumips|qemux86-64"
>  KERNEL_FEATURES_append = " features/netfilter/netfilter.scc"
>  KERNEL_FEATURES_append_qemux86=" cfg/sound.scc"
>  KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc"
> -KERNEL_FEATURES_append_qemux86=" cfg/paravirt_kvm.scc"
>  KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}"
> 

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Technical Lead - Linux Kernel



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

end of thread, other threads:[~2013-05-07 18:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-07 17:08 [PATCH] qemux86: disable paravirt guest in linux 3.4, causes test failures Ross Burton
2013-05-07 17:12 ` Bruce Ashfield
2013-05-07 17:16   ` Burton, Ross
2013-05-07 18:28 ` Darren Hart

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