* Sascha Hauer <[EMAIL PROTECTED]> wrote:

> In include/linux/irqflags.h safe_halt changed from a macro to a static 
> inline function which results in tons of warnings for architectures 
> other than x86[-64]:
> 
> include/linux/irqflags.h:99: warning: implicit declaration of function 
> 'raw_safe_halt'

ok, this is still not fixed in rt2 - which is using Rusty's 
paravirt-unexport patch.

Andrew, we need to fix this before v2.6.20 is released. Simplest 
upstream fix is to just disable the CONFIG_PARAVIRT Kbuild option, as 
per the patch below. Rusty's unexport patch is promising in many ways, 
but it's v2.6.21 stuff IMO.

i'm keeping it enabled in -rt, which makes actual use of this 
infrastructure via KVM-paravirt, so it wont be forgotten.

        Ingo

-------------->
From: Ingo Molnar <[EMAIL PROTECTED]>
Subject: [patch] paravirt: disable Kbuild option for now

disable CONFIG_PARAVIRT for now - it's not like that it is useful for 
anything in-tree at the moment. I'll make sure it's fixed in v2.6.21.

Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>

Index: linux/arch/i386/Kconfig
===================================================================
--- linux.orig/arch/i386/Kconfig
+++ linux/arch/i386/Kconfig
@@ -199,6 +199,12 @@ endchoice
 
 config PARAVIRT
        bool "Paravirtualization support (EXPERIMENTAL)"
+
+       #
+       # Work in progress, disable for now:
+       #
+       depends on 0
+
        depends on EXPERIMENTAL
        depends on !(X86_VISWS || X86_VOYAGER)
        help
-
To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to