tree: git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master head: d1a4e84730611b0b0e96f3453d080a486b5187fa commit: b0291c3d28e83966e8b54cddd836d51afa86ac0f [8232/8750] lib/decompressors: use real out buf size for gunzip with kernel config: mips-loongson3_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 b0291c3d28e83966e8b54cddd836d51afa86ac0f # save the attached .config to linux build tree make.cross ARCH=mips All warnings (new ones prefixed by >>): In file included from arch/mips/boot/compressed/decompress.c:65:0: >> arch/mips/boot/compressed/../../../../lib/decompress_unlzma.c:680:17: warning: '__decompress' defined but not used [-Wunused-function] STATIC int INIT __decompress(unsigned char *buf, long in_len, ^ vim +/__decompress +680 arch/mips/boot/compressed/../../../../lib/decompress_unlzma.c 664 free(inbuf); 665 exit_0: 666 return ret; 667 } 668 669 #ifdef PREBOOT 670 STATIC int INIT decompress(unsigned char *buf, long in_len, 671 long (*fill)(void*, unsigned long), 672 long (*flush)(void*, unsigned long), 673 unsigned char *output, 674 long *posp, 675 void(*error)(char *x) 676 ) 677 { 678 return unlzma(buf, in_len - 4, fill, flush, output, posp, error); 679 } > 680 STATIC int INIT __decompress(unsigned char *buf, long in_len, 681 long (*fill)(void*, unsigned long), 682 long (*flush)(void*, unsigned long), 683 unsigned char *output, long out_len, 684 long *posp, 685 void (*error)(char *x) 686 ) 687 { 688 return unlzma(buf, in_len - 4, fill, flush, output, posp, error); --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation