tree: git://git.cmpxchg.org/linux-mmotm.git master head: f6a6014bf6b3c724cff30194681f219ac230c898 commit: 338669a77a60c548c17bc64ff2d1929051ea4edc [464/497] lib/decompressors: use real out buf size for gunzip with kernel config: m32r-m32104ut_defconfig (attached as .config) reproduce: wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross git checkout 338669a77a60c548c17bc64ff2d1929051ea4edc # save the attached .config to linux build tree make.cross ARCH=m32r All warnings (new ones prefixed by >>): In file included from arch/m32r/boot/compressed/misc.c:25:0: arch/m32r/boot/compressed/m32r_sio.c:11:13: warning: conflicting types for built-in function 'putc' static void putc(char c); ^ In file included from arch/m32r/boot/compressed/misc.c:53:0: >> arch/m32r/boot/compressed/../../../../lib/decompress_inflate.c:205:17: warning: '__decompress' defined but not used [-Wunused-function] STATIC int INIT __decompress(unsigned char *buf, long len, ^ vim +/__decompress +205 arch/m32r/boot/compressed/../../../../lib/decompress_inflate.c 189 long *pos, 190 void (*error)(char *x)) 191 { 192 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); 193 } 194 195 #ifdef PREBOOT 196 STATIC int INIT decompress(unsigned char *buf, long len, 197 long (*fill)(void*, unsigned long), 198 long (*flush)(void*, unsigned long), 199 unsigned char *out_buf, 200 long *pos, 201 void (*error)(char *x)) 202 { 203 return gunzip(buf, len, fill, flush, out_buf, pos, error); 204 } > 205 STATIC int INIT __decompress(unsigned char *buf, long len, 206 long (*fill)(void*, unsigned long), 207 long (*flush)(void*, unsigned long), 208 unsigned char *out_buf, long out_len, 209 long *pos, 210 void (*error)(char *x)) 211 { 212 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); 213 } --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation