CC: [email protected] CC: "Darrick J. Wong" <[email protected]> TO: "Darrick J. Wong" <[email protected]>
tree: https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git vectorized-scrub head: e907b5eb3852612685b26c1aa94707544d45ced0 commit: 118911fd81c870c769bb7ba4e7eb5c944a2dd8b9 [101/315] xfs: remember sick inodes that get inactivated :::::: branch date: 8 hours ago :::::: commit date: 8 hours ago config: x86_64-randconfig-b001-20210614 (attached as .config) compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project d2012d965d60c3258b3a69d024491698f8aec386) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # install x86_64 cross compiling tool for clang build # apt-get install binutils-x86-64-linux-gnu # apt-get install iwyu # include-what-you-use # https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git/commit/?id=118911fd81c870c769bb7ba4e7eb5c944a2dd8b9 git remote add djwong-xfs https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git git fetch --no-tags djwong-xfs vectorized-scrub git checkout 118911fd81c870c769bb7ba4e7eb5c944a2dd8b9 # save the attached .config to linux build tree COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross C=1 CHECK=iwyu ARCH=x86_64 If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot <[email protected]> iwyu warnings: (new ones prefixed by >>) fs/xfs/xfs_inode.c:8:1: iwyu: warning: superfluous #include "xfs.h" fs/xfs/xfs_inode.c:36:1: iwyu: warning: superfluous #include "xfs_bmap_btree.h" fs/xfs/xfs_inode.c:22:1: iwyu: warning: superfluous #include "xfs_buf_item.h" fs/xfs/xfs_inode.c:16:1: iwyu: warning: superfluous #include "xfs_defer.h" fs/xfs/xfs_inode.c:27:1: iwyu: warning: superfluous #include "xfs_errortag.h" fs/xfs/xfs_inode.c:9:1: iwyu: warning: superfluous #include "xfs_fs.h" >> fs/xfs/xfs_inode.c:39:1: iwyu: warning: superfluous #include "xfs_health.h" vim +39 fs/xfs/xfs_inode.c 40ebd81d1a7635 Robert P. J. Day 2007-11-23 7 ^1da177e4c3f41 Linus Torvalds 2005-04-16 8 #include "xfs.h" a844f4510dce23 Nathan Scott 2005-11-02 9 #include "xfs_fs.h" 70a9883c5f34b2 Dave Chinner 2013-10-23 10 #include "xfs_shared.h" 239880ef6454cc Dave Chinner 2013-10-23 11 #include "xfs_format.h" 239880ef6454cc Dave Chinner 2013-10-23 12 #include "xfs_log_format.h" 239880ef6454cc Dave Chinner 2013-10-23 13 #include "xfs_trans_resv.h" ^1da177e4c3f41 Linus Torvalds 2005-04-16 14 #include "xfs_sb.h" ^1da177e4c3f41 Linus Torvalds 2005-04-16 15 #include "xfs_mount.h" 3ab78df2a59a48 Darrick J. Wong 2016-08-03 16 #include "xfs_defer.h" a4fbe6ab1e7abe Dave Chinner 2013-10-23 17 #include "xfs_inode.h" c24b5dfadc4a4f Dave Chinner 2013-08-12 18 #include "xfs_dir2.h" c24b5dfadc4a4f Dave Chinner 2013-08-12 19 #include "xfs_attr.h" 239880ef6454cc Dave Chinner 2013-10-23 20 #include "xfs_trans_space.h" 239880ef6454cc Dave Chinner 2013-10-23 21 #include "xfs_trans.h" ^1da177e4c3f41 Linus Torvalds 2005-04-16 22 #include "xfs_buf_item.h" a844f4510dce23 Nathan Scott 2005-11-02 23 #include "xfs_inode_item.h" a844f4510dce23 Nathan Scott 2005-11-02 24 #include "xfs_ialloc.h" a844f4510dce23 Nathan Scott 2005-11-02 25 #include "xfs_bmap.h" 6898811459ff52 Dave Chinner 2013-08-12 26 #include "xfs_bmap_util.h" e9e899a2a8c3c2 Darrick J. Wong 2017-10-31 27 #include "xfs_errortag.h" ^1da177e4c3f41 Linus Torvalds 2005-04-16 28 #include "xfs_error.h" ^1da177e4c3f41 Linus Torvalds 2005-04-16 29 #include "xfs_quota.h" 2a82b8be8a8dac David Chinner 2007-07-11 30 #include "xfs_filestream.h" 0b1b213fcf3a84 Christoph Hellwig 2009-12-14 31 #include "xfs_trace.h" 33479e0542df06 Dave Chinner 2012-10-08 32 #include "xfs_icache.h" c24b5dfadc4a4f Dave Chinner 2013-08-12 33 #include "xfs_symlink.h" 239880ef6454cc Dave Chinner 2013-10-23 34 #include "xfs_trans_priv.h" 239880ef6454cc Dave Chinner 2013-10-23 35 #include "xfs_log.h" a4fbe6ab1e7abe Dave Chinner 2013-10-23 36 #include "xfs_bmap_btree.h" aa8968f227a8c6 Darrick J. Wong 2016-10-03 37 #include "xfs_reflink.h" e9b150228c6e6f Darrick J. Wong 2021-01-05 38 #include "xfs_health.h" 118911fd81c870 Darrick J. Wong 2021-01-05 @39 #include "xfs_health.h" ^1da177e4c3f41 Linus Torvalds 2005-04-16 40 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/[email protected]
.config.gz
Description: application/gzip
_______________________________________________ kbuild mailing list -- [email protected] To unsubscribe send an email to [email protected]
