From: Serge E. Hallyn <[EMAIL PROTECTED]> Subject: [PATCH 1/1] user ns: fix compilation failures for some arches
for i386, an include of utsname.h by asm/elf.h hides the fact that user_namespace needs sched.h. To fix compilation for x86_64, just include sched.h explicitly. Signed-off-by: Serge E. Hallyn <[EMAIL PROTECTED]> --- include/linux/user_namespace.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/user_namespace.h b/include/linux/user_namespace.h index d577ede..be3e484 100644 --- a/include/linux/user_namespace.h +++ b/include/linux/user_namespace.h @@ -3,6 +3,7 @@ #define _LINUX_USER_NAMESPACE_H #include <linux/kref.h> #include <linux/nsproxy.h> +#include <linux/sched.h> #define UIDHASH_BITS (CONFIG_BASE_SMALL ? 3 : 8) #define UIDHASH_SZ (1 << UIDHASH_BITS) -- 1.4.1 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

