This is a note to let you know that I've just added the patch titled
KVM: PPC: Book3S: Fix compile error in XICS emulation
to the 3.10-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
kvm-ppc-book3s-fix-compile-error-in-xics-emulation.patch
and it can be found in the queue-3.10 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 7bfa9ad55d691f2b836b576769b11eca2cf50816 Mon Sep 17 00:00:00 2001
From: Paul Mackerras <[email protected]>
Date: Tue, 6 Aug 2013 14:13:44 +1000
Subject: KVM: PPC: Book3S: Fix compile error in XICS emulation
From: Paul Mackerras <[email protected]>
commit 7bfa9ad55d691f2b836b576769b11eca2cf50816 upstream.
Commit 8e44ddc3f3 ("powerpc/kvm/book3s: Add support for H_IPOLL and
H_XIRR_X in XICS emulation") added a call to get_tb() but didn't
include the header that defines it, and on some configs this means
book3s_xics.c fails to compile:
arch/powerpc/kvm/book3s_xics.c: In function âkvmppc_xics_hcallâ:
arch/powerpc/kvm/book3s_xics.c:812:3: error: implicit declaration of function
âget_tbâ [-Werror=implicit-function-declaration]
Signed-off-by: Paul Mackerras <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
arch/powerpc/kvm/book3s_xics.c | 1 +
1 file changed, 1 insertion(+)
--- a/arch/powerpc/kvm/book3s_xics.c
+++ b/arch/powerpc/kvm/book3s_xics.c
@@ -19,6 +19,7 @@
#include <asm/hvcall.h>
#include <asm/xics.h>
#include <asm/debug.h>
+#include <asm/time.h>
#include <linux/debugfs.h>
#include <linux/seq_file.h>
Patches currently in stable-queue which might be from [email protected] are
queue-3.10/powerpc-default-arch-idle-could-cede-processor-on-pseries.patch
queue-3.10/kvm-ppc-book3s-fix-compile-error-in-xics-emulation.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html