This is a note to let you know that I've just added the patch titled xenbus: fix compile failure on ARM with Xen enabled to the 3.8-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: xenbus-fix-compile-failure-on-arm-with-xen-enabled.patch and it can be found in the queue-3.8 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 45e27161c62216c163880d7aed751cb55a65c8e9 Mon Sep 17 00:00:00 2001 From: Steven Noonan <steven@xxxxxxxxxxxxxx> Date: Fri, 1 Mar 2013 05:14:59 -0800 Subject: xenbus: fix compile failure on ARM with Xen enabled From: Steven Noonan <steven@xxxxxxxxxxxxxx> commit 45e27161c62216c163880d7aed751cb55a65c8e9 upstream. Adding an include of linux/mm.h resolves this: drivers/xen/xenbus/xenbus_client.c: In function ‘xenbus_map_ring_valloc_hvm’: drivers/xen/xenbus/xenbus_client.c:532:66: error: implicit declaration of function ‘page_to_section’ [-Werror=implicit-function-declaration] Signed-off-by: Steven Noonan <steven@xxxxxxxxxxxxxx> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/xen/xenbus/xenbus_client.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/xen/xenbus/xenbus_client.c +++ b/drivers/xen/xenbus/xenbus_client.c @@ -30,6 +30,7 @@ * IN THE SOFTWARE. */ +#include <linux/mm.h> #include <linux/slab.h> #include <linux/types.h> #include <linux/spinlock.h> Patches currently in stable-queue which might be from steven@xxxxxxxxxxxxxx are queue-3.8/xenbus-fix-compile-failure-on-arm-with-xen-enabled.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html