tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master head: de90d455a35e474a184c898e66a6a108c3a99434 commit: 88fd211cfa8c6cc16b0a537e21e073fa326aafeb [4486/11162] apparmor: expose compression level limits in sysfs config: arm64-buildonly-randconfig-r006-20220926 compiler: aarch64-linux-gcc (GCC) 12.1.0 reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=88fd211cfa8c6cc16b0a537e21e073fa326aafeb git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git git fetch --no-tags linux-next master git checkout 88fd211cfa8c6cc16b0a537e21e073fa326aafeb # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arm64 SHELL=/bin/bash If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot All errors (new ones prefixed by >>): aarch64-linux-ld: Unexpected GOT/PLT entries detected! aarch64-linux-ld: Unexpected run-time procedure linkages detected! aarch64-linux-ld: ID map text too big or misaligned aarch64-linux-ld: security/apparmor/apparmorfs.o: in function `seq_ns_compress_max_show': >> security/apparmor/apparmorfs.c:1210: undefined reference to `zstd_max_clevel' aarch64-linux-ld: security/apparmor/apparmorfs.o: in function `seq_ns_compress_min_show': >> security/apparmor/apparmorfs.c:1204: undefined reference to `zstd_min_clevel' aarch64-linux-ld: security/apparmor/lsm.o: in function `param_set_aacompressionlevel': security/apparmor/lsm.c:1545: undefined reference to `zstd_min_clevel' aarch64-linux-ld: security/apparmor/lsm.c:1545: undefined reference to `zstd_max_clevel' vim +1210 security/apparmor/apparmorfs.c 1201 1202 static int seq_ns_compress_min_show(struct seq_file *seq, void *v) 1203 { > 1204 seq_printf(seq, "%d\n", zstd_min_clevel()); 1205 return 0; 1206 } 1207 1208 static int seq_ns_compress_max_show(struct seq_file *seq, void *v) 1209 { > 1210 seq_printf(seq, "%d\n", zstd_max_clevel()); 1211 return 0; 1212 } 1213 -- 0-DAY CI Kernel Test Service https://01.org/lkp