The patch titled uml: export symbols added by GCC hardened has been added to the -mm tree. Its filename is uml-export-symbols-added-by-gcc-hardened.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> GCC hardened introduces additional symbol refererences (for the canary and friends), also in modules - add weak export_symbols for them. We already tested that the weak declaration creates no problem on both GCC's providing the function definition and on GCC's which don't provide it. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/os-Linux/user_syms.c | 7 +++++++ 1 files changed, 7 insertions(+) diff -puN arch/um/os-Linux/user_syms.c~uml-export-symbols-added-by-gcc-hardened arch/um/os-Linux/user_syms.c --- devel/arch/um/os-Linux/user_syms.c~uml-export-symbols-added-by-gcc-hardened 2006-04-30 13:23:24.000000000 -0700 +++ devel-akpm/arch/um/os-Linux/user_syms.c 2006-04-30 13:23:24.000000000 -0700 @@ -96,6 +96,13 @@ EXPORT_SYMBOL_PROTO(getuid); EXPORT_SYMBOL_PROTO(fsync); EXPORT_SYMBOL_PROTO(fdatasync); +/* Export symbols used by GCC for the stack protector. */ +extern void __stack_smash_handler(void *) __attribute__((weak)); +EXPORT_SYMBOL(__stack_smash_handler); + +extern long __guard __attribute__((weak)); +EXPORT_SYMBOL(__guard); + /* * Overrides for Emacs so that we follow Linus's tabbing style. * Emacs will notice this stuff at the end of the file and automatically _ Patches currently in -mm which might be from blaisorblade@xxxxxxxx are uml-fix-iomem-list-traversal.patch uml-skas0-support-for-2g-2g-hosts.patch uml-remove-null-checks-and-add-some-codingstyle.patch uml-clean-up-after-madvise_remove.patch uml-update-defconfig.patch uml-error-handling-fixes.patch uml-fix-patch-mismerge.patch uml-search-from-uml_net-in-a-more-reasonable-path.patch uml-use-kbuild-tracking-for-all-files-and-fix-compilation-output.patch uml-fix-compilation-and-execution-with-hardened-gcc.patch uml-cleanup-unprofile-expression-and-build-infrastructure.patch uml-export-symbols-added-by-gcc-hardened.patch uml-make-copy__user-atomic.patch uml-fix-not_dead_yet-when-directory-is-in-bad-state.patch uml-rename-and-improve-actually_do_remove.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