mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* fs/f2fs/data.c:2514:undefined reference to `fsverity_readahead'
@ 2026-02-14 11:09 kernel test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2026-02-14 11:09 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: oe-kbuild-all, linux-kernel, Eric Biggers

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   770aaedb461a055f79b971d538678942b6607894
commit: 45dcb3ac9832650e5fdc2046cc7cdb97cebbb888 f2fs: consolidate fsverity_info lookup
date:   10 days ago
config: parisc-randconfig-r113-20260214 (https://download.01.org/0day-ci/archive/20260214/202602141934.xN4mcU2f-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 12.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260214/202602141934.xN4mcU2f-lkp@intel.com/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
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202602141934.xN4mcU2f-lkp@intel.com/

All errors (new ones prefixed by >>):

   hppa-linux-ld: fs/f2fs/data.o: in function `f2fs_readahead':
>> fs/f2fs/data.c:2514:(.text+0xe334): undefined reference to `fsverity_readahead'
   hppa-linux-ld: fs/f2fs/data.o: in function `f2fs_read_data_folio':
   fs/f2fs/data.c:2494:(.text+0xe494): undefined reference to `fsverity_readahead'


vim +2514 fs/f2fs/data.c

  2497	
  2498	static void f2fs_readahead(struct readahead_control *rac)
  2499	{
  2500		struct inode *inode = rac->mapping->host;
  2501		struct fsverity_info *vi = NULL;
  2502	
  2503		trace_f2fs_readpages(inode, readahead_index(rac), readahead_count(rac));
  2504	
  2505		if (!f2fs_is_compress_backend_ready(inode))
  2506			return;
  2507	
  2508		/* If the file has inline data, skip readahead */
  2509		if (f2fs_has_inline_data(inode))
  2510			return;
  2511	
  2512		vi = f2fs_need_verity(inode, readahead_index(rac));
  2513		if (vi)
> 2514			fsverity_readahead(vi, readahead_index(rac),
  2515					   readahead_count(rac));
  2516		f2fs_mpage_readpages(inode, vi, rac, NULL);
  2517	}
  2518	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply	[flat|nested] 2+ messages in thread

* fs/f2fs/data.c:2514: undefined reference to `fsverity_readahead'
@ 2026-02-18  1:08 kernel test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2026-02-18  1:08 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: oe-kbuild-all, linux-kernel, Eric Biggers

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   2961f841b025fb234860bac26dfb7fa7cb0fb122
commit: 45dcb3ac9832650e5fdc2046cc7cdb97cebbb888 f2fs: consolidate fsverity_info lookup
date:   13 days ago
config: parisc-randconfig-r053-20260218 (https://download.01.org/0day-ci/archive/20260218/202602180838.pwICdY2r-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 9.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260218/202602180838.pwICdY2r-lkp@intel.com/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
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202602180838.pwICdY2r-lkp@intel.com/

All errors (new ones prefixed by >>):

   hppa-linux-ld: fs/f2fs/data.o: in function `f2fs_readahead':
>> fs/f2fs/data.c:2514: undefined reference to `fsverity_readahead'
   hppa-linux-ld: fs/f2fs/data.o: in function `f2fs_read_data_folio':
   fs/f2fs/data.c:2494: undefined reference to `fsverity_readahead'


vim +2514 fs/f2fs/data.c

  2497	
  2498	static void f2fs_readahead(struct readahead_control *rac)
  2499	{
  2500		struct inode *inode = rac->mapping->host;
  2501		struct fsverity_info *vi = NULL;
  2502	
  2503		trace_f2fs_readpages(inode, readahead_index(rac), readahead_count(rac));
  2504	
  2505		if (!f2fs_is_compress_backend_ready(inode))
  2506			return;
  2507	
  2508		/* If the file has inline data, skip readahead */
  2509		if (f2fs_has_inline_data(inode))
  2510			return;
  2511	
  2512		vi = f2fs_need_verity(inode, readahead_index(rac));
  2513		if (vi)
> 2514			fsverity_readahead(vi, readahead_index(rac),
  2515					   readahead_count(rac));
  2516		f2fs_mpage_readpages(inode, vi, rac, NULL);
  2517	}
  2518	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-02-18  1:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-14 11:09 fs/f2fs/data.c:2514:undefined reference to `fsverity_readahead' kernel test robot
2026-02-18  1:08 fs/f2fs/data.c:2514: undefined " kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome