[brauner-github:vfs.all 224/271] fs/bfs/inode.c:180:48: error: 'struct inode' has no member named 'ino'
kernel test robot <[email protected]> Mon, 27 Jul 2026 14:23:04 +0800
| Newsgroups | 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: nios2-allmodconfig (https://download.01.org/0day-ci/archive/20260727/[email protected]/config) compiler: nios2-linux-gcc (GCC) 11.5.0 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: In function 'bfs_sync_inode_metadata': >> fs/bfs/inode.c:180:48: error: 'struct inode' has no member named 'ino' 180 | di = find_inode(inode->i_sb, (u16)inode->ino, &bh); | ^~ 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