Building the Linux kernel with Clang and LLVM
 help / color / mirror / Atom feed
* [brauner-github:vfs.all 224/271] fs/bfs/inode.c:180:43: error: no member named 'ino' in 'struct inode'
@ 2026-07-27 13:24 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2026-07-27 13:24 UTC (permalink / raw)
  To: Jan Kara; +Cc: llvm, oe-kbuild-all, Christian Brauner, Christian Brauner

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/202607272132.5qdCaHxj-lkp@intel.com/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/202607272132.5qdCaHxj-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/202607272132.5qdCaHxj-lkp@intel.com/

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-27 13:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-27 13:24 [brauner-github:vfs.all 224/271] fs/bfs/inode.c:180:43: error: no member named 'ino' in 'struct inode' 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