fs/bpf_fs_kfuncs.c:377:26: sparse: sparse: symbol 'bpf_real_data_inode' was not declared. Should it be static?
kernel test robot <[email protected]>
| Newsgroups | dev.linux.lists.oe-kbuild-all,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: d58772d8520c7ef247c4b95c9bd76d3a25da9ff5 commit: 3f8c65b06fafc3f779abda5f7b81707411d05d4c bpf: have bpf_real_data_inode() take a struct file date: 6 weeks ago config: mips-randconfig-r134-20260812 (https://download.01.org/0day-ci/archive/20260812/[email protected]/config) compiler: clang version 24.0.0git (https://github.com/llvm/llvm-project 12df34b8469b8095359de8c249cb1b2753fadeea) sparse: v0.6.5-rc1 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260812/[email protected]/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Fixes: 3f8c65b06faf ("bpf: have bpf_real_data_inode() take a struct file") | Reported-by: kernel test robot <[email protected]> | Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ sparse warnings: (new ones prefixed by >>) >> fs/bpf_fs_kfuncs.c:377:26: sparse: sparse: symbol 'bpf_real_data_inode' was not declared. Should it be static? vim +/bpf_real_data_inode +377 fs/bpf_fs_kfuncs.c 361 362 /** 363 * bpf_real_data_inode - get the real inode hosting a file's data 364 * @file: file to resolve 365 * 366 * Resolve @file to the inode that hosts its data. For a regular file on a 367 * union/overlay filesystem this is the underlying (upper or lower) inode that 368 * stores the data, not the overlay inode. 369 * 370 * Data resolution only applies to regular files. For a non-regular file (e.g. 371 * a device node, fifo or socket) on a union/overlay filesystem the overlay 372 * inode itself is returned; for any file on a non-union filesystem the inode 373 * attached to @file is returned. 374 * 375 * Return: The inode hosting @file's data, or NULL. 376 */ > 377 __bpf_kfunc struct inode *bpf_real_data_inode(struct file *file) 378 { 379 return d_real_inode(file_dentry(file)); 380 } 381 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki