tree: https://github.com/ammarfaizi2/linux-block crng/random/jd/vdso head: a3cff810520ec7bb9afb9020a1cb7945e4bdb8b2 commit: a3cff810520ec7bb9afb9020a1cb7945e4bdb8b2 [3/3] random: implement getrandom() in vDSO config: x86_64-randconfig-a012 compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1) 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://github.com/ammarfaizi2/linux-block/commit/a3cff810520ec7bb9afb9020a1cb7945e4bdb8b2 git remote add ammarfaizi2-block https://github.com/ammarfaizi2/linux-block git fetch --no-tags ammarfaizi2-block crng/random/jd/vdso git checkout a3cff810520ec7bb9afb9020a1cb7945e4bdb8b2 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash arch/x86/entry/vdso/ If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> arch/x86/entry/vdso/vgetrandom.c:10:9: warning: no previous prototype for function '__vdso_getrandom' [-Wmissing-prototypes] ssize_t __vdso_getrandom(void *buffer, size_t len, unsigned int flags, void *state) ^ arch/x86/entry/vdso/vgetrandom.c:10:1: note: declare 'static' if the function is not intended to be used outside of this translation unit ssize_t __vdso_getrandom(void *buffer, size_t len, unsigned int flags, void *state) ^ static 1 warning generated. vim +/__vdso_getrandom +10 arch/x86/entry/vdso/vgetrandom.c 9 > 10 ssize_t __vdso_getrandom(void *buffer, size_t len, unsigned int flags, void *state) 11 { 12 return __cvdso_getrandom(buffer, len, flags, state); 13 } 14 -- 0-DAY CI Kernel Test Service https://01.org/lkp