The patch titled Subject: lz4: fix KERNEL_LZ4 support has been removed from the -mm tree. Its filename was lib-update-lz4-compressor-module-fix.patch This patch was dropped because it was folded into lib-update-lz4-compressor-module.patch ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: lz4: fix KERNEL_LZ4 support The updated lz4 library removed the #ifdef guards around the various EXPORT_SYMBOL statements in the original kernel lz4 support, which broke CONFIG_KERNEL_LZ4 on x86: x86_64-linux-ld: -r and -pie may not be used together scripts/Makefile.build:308: recipe for target 'arch/x86/boot/compressed/misc.o' failed This uses a simpler way to do the same thing, by overriding the EXPORT_SYMBOL macro. Link: http://lkml.kernel.org/r/20170208211946.2839649-1-arnd@xxxxxxxx Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Sven Schmidt <4sschmid@xxxxxxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/lz4/lz4_decompress.c | 5 +++++ 1 file changed, 5 insertions(+) diff -puN lib/lz4/lz4_decompress.c~lib-update-lz4-compressor-module-fix lib/lz4/lz4_decompress.c --- a/lib/lz4/lz4_decompress.c~lib-update-lz4-compressor-module-fix +++ a/lib/lz4/lz4_decompress.c @@ -40,6 +40,11 @@ #include <linux/kernel.h> #include <asm/unaligned.h> +#ifdef STATIC +#undef EXPORT_SYMBOL +#define EXPORT_SYMBOL(x) +#endif + /*-***************************** * Decompression functions *******************************/ _ Patches currently in -mm which might be from arnd@xxxxxxxx are lib-update-lz4-compressor-module.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