The patch titled Subject: kernel/uid16.c needs cred.h has been added to the -mm tree. Its filename is kernel-uid16c-needs-credh.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/kernel-uid16c-needs-credh.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/kernel-uid16c-needs-credh.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: kernel/uid16.c needs cred.h openrisc-allnoconfig: kernel/uid16.c: In function 'SYSC_setgroups16': kernel/uid16.c:184:2: error: implicit declaration of function 'groups_alloc' kernel/uid16.c:184:13: warning: assignment makes pointer from integer without a cast Fixes: 2813893f8b197a1 ("kernel: conditionally support non-root users, groups and capabilities") Reported-by: Fengguang Wu <fengguang.wu@xxxxxxxxx> Cc: Iulia Manda <iulia.manda21@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/cred.h | 9 +++++++-- kernel/uid16.c | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) diff -puN kernel/uid16.c~kernel-uid16c-needs-credh kernel/uid16.c --- a/kernel/uid16.c~kernel-uid16c-needs-credh +++ a/kernel/uid16.c @@ -9,6 +9,7 @@ #include <linux/reboot.h> #include <linux/prctl.h> #include <linux/capability.h> +#include <linux/cred.h> #include <linux/init.h> #include <linux/highuid.h> #include <linux/security.h> diff -puN include/linux/cred.h~kernel-uid16c-needs-credh include/linux/cred.h --- a/include/linux/cred.h~kernel-uid16c-needs-credh +++ a/include/linux/cred.h @@ -64,12 +64,17 @@ do { \ extern struct group_info init_groups; #ifdef CONFIG_MULTIUSER -extern struct group_info *groups_alloc(int); -extern void groups_free(struct group_info *); +extern struct group_info *groups_alloc(int gidsetsize); +extern void groups_free(struct group_info *group_info); extern int in_group_p(kgid_t); extern int in_egroup_p(kgid_t); #else +extern struct group_info *groups_alloc(int gidsetsize) +{ + return NULL; +} + static inline void groups_free(struct group_info *group_info) { } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are arch-alpha-kernel-systblss-remove-debug-check.patch kernel-uid16c-needs-credh.patch mm.patch slab-infrastructure-for-bulk-object-allocation-and-freeing-v3-fix.patch userfaultfd-change-the-read-api-to-return-a-uffd_msg-fix-2.patch userfaultfd-change-the-read-api-to-return-a-uffd_msg-fix-2-fix.patch userfaultfd-avoid-mmap_sem-read-recursion-in-mcopy_atomic-fix.patch fs-userfaultfdc-work-around-i386-build-error.patch include-linux-page-flagsh-rename-macros-to-avoid-collisions.patch mm-vmscan-fix-the-page-state-calculation-in-too_many_isolated.patch x86-add-pmd_-for-thp-fix.patch sparc-add-pmd_-for-thp-fix.patch mm-support-madvisemadv_free-fix-2.patch mm-dont-split-thp-page-when-syscall-is-called-fix-3.patch mm-move-lazy-free-pages-to-inactive-list-fix-fix.patch mm-move-lazy-free-pages-to-inactive-list-fix-fix-fix.patch linux-next.patch drivers-gpu-drm-i915-intel_spritec-fix-build.patch drivers-gpu-drm-i915-intel_tvc-fix-build.patch net-netfilter-ipset-work-around-gcc-444-initializer-bug.patch do_shared_fault-check-that-mmap_sem-is-held.patch journal_add_journal_head-debug.patch journal_add_journal_head-debug-fix.patch kernel-forkc-export-kernel_thread-to-modules.patch mutex-subsystem-synchro-test-module.patch slab-leaks3-default-y.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html