Skip to content

Commit 242cdad

Browse files
shenkimpe
authored andcommitted
lib/xz: Put CRC32_POLY_LE in xz_private.h
This fixes a regression introduced by faa16bc ("lib: Use existing define with polynomial"). The cleanup added a dependency on include/linux, which broke the PowerPC boot wrapper/decompresser when KERNEL_XZ is enabled: BOOTCC arch/powerpc/boot/decompress.o In file included from arch/powerpc/boot/../../../lib/decompress_unxz.c:233, from arch/powerpc/boot/decompress.c:42: arch/powerpc/boot/../../../lib/xz/xz_crc32.c:18:10: fatal error: linux/crc32poly.h: No such file or directory #include <linux/crc32poly.h> ^~~~~~~~~~~~~~~~~~~ The powerpc decompresser is a hairy corner of the kernel. Even while building a 64-bit kernel it needs to build a 32-bit binary and therefore avoid including files from include/linux. This allows users of the xz library to avoid including headers from 'include/linux/' while still achieving the cleanup of the magic number. Fixes: faa16bc ("lib: Use existing define with polynomial") Reported-by: Meelis Roos <mroos@linux.ee> Reported-by: kbuild test robot <lkp@intel.com> Suggested-by: Christophe LEROY <christophe.leroy@c-s.fr> Signed-off-by: Joel Stanley <joel@jms.id.au> Tested-by: Meelis Roos <mroos@linux.ee> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
1 parent 7e0cf1c commit 242cdad

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lib/xz/xz_crc32.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* but they are bigger and use more memory for the lookup table.
1616
*/
1717

18-
#include <linux/crc32poly.h>
1918
#include "xz_private.h"
2019

2120
/*

lib/xz/xz_private.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@
102102
# endif
103103
#endif
104104

105+
#ifndef CRC32_POLY_LE
106+
#define CRC32_POLY_LE 0xedb88320
107+
#endif
108+
105109
/*
106110
* Allocate memory for LZMA2 decoder. xz_dec_lzma2_reset() must be used
107111
* before calling xz_dec_lzma2_run().

0 commit comments

Comments
 (0)