[brauner-github:vfs.all 224/271] fs/bfs/inode.c:180:43: error: no member named 'ino' in 'struct inode'
kernel test robot <[email protected]> Mon, 27 Jul 2026 21:24:25 +0800
| Newsgroups | dev.linux.lists.llvm,dev.linux.lists.oe-kbuild-all |
|---|---|
| Message-ID | <[email protected]> |
tree: https://github.com/brauner/linux.git vfs.all head: 000710393edad9c9974ee19ce0e95459137b3c3b commit: 763d78b5dbba67952960a5f40ad15518c79fae86 [224/271] bfs: Fix data integrity writeout issues config: s390-randconfig-001-20260727 (https://download.01.org/0day-ci/archive/20260727/[email protected]/config) compiler: clang version 24.0.0git (https://github.com/llvm/llvm-project 890b11e09e45e9d8b29f2f94f22052be3934e757) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260727/[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]/ All errors (new ones prefixed by >>): >> fs/bfs/inode.c:180:43: error: no member named 'ino' in 'struct inode' 180 | di = find_inode(inode->i_sb, (u16)inode->ino, &bh); | ~~~~~ ^ 1 error generated. vim +180 fs/bfs/inode.c 172 173 static int bfs_sync_inode_metadata(struct inode *inode, 174 struct writeback_control *wbc) 175 { 176 int err = 0; 177 struct bfs_inode *di; 178 struct buffer_head *bh; 179 > 180 di = find_inode(inode->i_sb, (u16)inode->ino, &bh); 181 if (IS_ERR(di)) 182 return PTR_ERR(di); 183 184 sync_dirty_buffer(bh); 185 if (buffer_write_io_error(bh)) { 186 err = -EIO; 187 goto out; 188 } 189 err = mmb_sync(&BFS_I(inode)->i_metadata_bhs); 190 out: 191 brelse(bh); 192 return err; 193 } 194 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki