tree:   https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git 
dev-test
head:   29604ca50fd305d7fb8bea7a031dbb25275c4336
commit: 5792ac38f3d5b1ebb2399e149395d8a622302f9c [14/15] f2fs: use global 
inline_xattr_slab instead of per-sb slab cache
config: x86_64-randconfig-r111-20251021 
(https://download.01.org/0day-ci/archive/20251021/[email protected]/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 
87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
reproduce (this is a W=1 build): 
(https://download.01.org/0day-ci/archive/20251021/[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
| Reported-by: kernel test robot <[email protected]>
| Closes: 
https://lore.kernel.org/oe-kbuild-all/[email protected]/

sparse warnings: (new ones prefixed by >>)
   fs/f2fs/xattr.c:844:1: sparse: sparse: no newline at end of file
>> fs/f2fs/xattr.c:26:19: sparse: sparse: symbol 'inline_xattr_slab' was not 
>> declared. Should it be static?

vim +/inline_xattr_slab +26 fs/f2fs/xattr.c

    25  
  > 26  struct kmem_cache *inline_xattr_slab;
    27  static void *xattr_alloc(struct f2fs_sb_info *sbi, int size, bool 
*is_inline)
    28  {
    29          if (likely(size == DEFAULT_XATTR_SLAB_SIZE)) {
    30                  *is_inline = true;
    31                  return f2fs_kmem_cache_alloc(inline_xattr_slab,
    32                                          GFP_F2FS_ZERO, false, sbi);
    33          }
    34          *is_inline = false;
    35          return f2fs_kzalloc(sbi, size, GFP_NOFS);
    36  }
    37  

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


_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to