Quoting Serge E. Hallyn (serue@xxxxxxxxxx): > Signed-off-by: Serge E. Hallyn <serue@xxxxxxxxxx> > --- > kernel/groups.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/kernel/groups.c b/kernel/groups.c > index 1b95b2f..14ebc6a 100644 > --- a/kernel/groups.c > +++ b/kernel/groups.c > @@ -1,6 +1,7 @@ > /* > * Supplementary group IDs > */ > +#include <linux/init.h> > #include <linux/cred.h> > #include <linux/module.h> > #include <linux/slab.h> > -- > 1.6.1 As noted by Alexey, this is wrong, and the prob was actually fixed by the following patch he'd also sent last friday, so please replace this patch with the following: From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: [PATCH 01/38] cred: #include init.h in cred.h cred.h can't be included as first header because it uses __init and doesn't include init.h which is enough to break compilation on at least ia64. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> --- include/linux/cred.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/cred.h b/include/linux/cred.h index 3282ee4..4fa9996 100644 --- a/include/linux/cred.h +++ b/include/linux/cred.h @@ -13,6 +13,7 @@ #define _LINUX_CRED_H #include <linux/capability.h> +#include <linux/init.h> #include <linux/key.h> #include <asm/atomic.h> -- 1.5.6.5 Containers mailing list Containers@xxxxxxxxxxxxxxxxxxxxxxxxxx https://lists.linux-foundation.org/mailman/listinfo/containers