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: 5edad82426399c487706e55e65b65f294a5bfaff [229/315] xfs: add realtime rmap btree operations :::::: branch date: 12 hours ago :::::: commit date: 12 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=5edad82426399c487706e55e65b65f294a5bfaff 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 5edad82426399c487706e55e65b65f294a5bfaff # 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/libxfs/xfs_btree.c:6:1: iwyu: warning: superfluous #include "xfs.h" fs/xfs/libxfs/xfs_btree.c:12:1: iwyu: warning: superfluous #include "xfs_bit.h" >> fs/xfs/libxfs/xfs_btree.c:25:1: iwyu: warning: superfluous #include >> "xfs_bmap.h" fs/xfs/libxfs/xfs_btree.c:18:1: iwyu: warning: superfluous #include "xfs_errortag.h" fs/xfs/libxfs/xfs_btree.c:7:1: iwyu: warning: superfluous #include "xfs_fs.h" fs/xfs/libxfs/xfs_btree.c:11:1: iwyu: warning: superfluous #include "xfs_trans_resv.h" -- fs/xfs/libxfs/xfs_rtrmap_btree.c:6:1: iwyu: warning: superfluous #include "xfs.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:27:1: iwyu: warning: superfluous #include "xfs_ag_resv.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:18:1: iwyu: warning: superfluous #include "xfs_alloc.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:12:1: iwyu: warning: superfluous #include "xfs_bit.h" >> fs/xfs/libxfs/xfs_rtrmap_btree.c:28:1: iwyu: warning: superfluous #include >> "xfs_bmap.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:24:1: iwyu: warning: superfluous #include "xfs_cksum.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:15:1: iwyu: warning: superfluous #include "xfs_defer.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:26:1: iwyu: warning: superfluous #include "xfs_extent_busy.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:7:1: iwyu: warning: superfluous #include "xfs_fs.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:16:1: iwyu: warning: superfluous #include "xfs_inode.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:13:1: iwyu: warning: superfluous #include "xfs_sb.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:8:1: iwyu: warning: superfluous #include "xfs_shared.h" fs/xfs/libxfs/xfs_rtrmap_btree.c:11:1: iwyu: warning: superfluous #include "xfs_trans_resv.h" vim +25 fs/xfs/libxfs/xfs_btree.c ^1da177e4c3f41 fs/xfs/xfs_btree.c Linus Torvalds 2005-04-16 @6 #include "xfs.h" a844f4510dce23 fs/xfs/xfs_btree.c Nathan Scott 2005-11-02 7 #include "xfs_fs.h" 70a9883c5f34b2 fs/xfs/xfs_btree.c Dave Chinner 2013-10-23 8 #include "xfs_shared.h" a4fbe6ab1e7abe fs/xfs/xfs_btree.c Dave Chinner 2013-10-23 9 #include "xfs_format.h" 239880ef6454cc fs/xfs/xfs_btree.c Dave Chinner 2013-10-23 10 #include "xfs_log_format.h" 239880ef6454cc fs/xfs/xfs_btree.c Dave Chinner 2013-10-23 11 #include "xfs_trans_resv.h" a844f4510dce23 fs/xfs/xfs_btree.c Nathan Scott 2005-11-02 12 #include "xfs_bit.h" ^1da177e4c3f41 fs/xfs/xfs_btree.c Linus Torvalds 2005-04-16 13 #include "xfs_mount.h" ^1da177e4c3f41 fs/xfs/xfs_btree.c Linus Torvalds 2005-04-16 14 #include "xfs_inode.h" 239880ef6454cc fs/xfs/xfs_btree.c Dave Chinner 2013-10-23 15 #include "xfs_trans.h" ee1a47ab0e7760 fs/xfs/xfs_btree.c Christoph Hellwig 2013-04-21 16 #include "xfs_buf_item.h" a844f4510dce23 fs/xfs/xfs_btree.c Nathan Scott 2005-11-02 17 #include "xfs_btree.h" e9e899a2a8c3c2 fs/xfs/libxfs/xfs_btree.c Darrick J. Wong 2017-10-31 18 #include "xfs_errortag.h" ^1da177e4c3f41 fs/xfs/xfs_btree.c Linus Torvalds 2005-04-16 19 #include "xfs_error.h" 0b1b213fcf3a84 fs/xfs/xfs_btree.c Christoph Hellwig 2009-12-14 20 #include "xfs_trace.h" cf11da9c5d3749 fs/xfs/xfs_btree.c Dave Chinner 2014-07-15 21 #include "xfs_alloc.h" a45086e27dfa21 fs/xfs/libxfs/xfs_btree.c Brian Foster 2015-10-12 22 #include "xfs_log.h" e06536a692e032 fs/xfs/libxfs/xfs_btree.c Darrick J. Wong 2020-03-11 23 #include "xfs_btree_staging.h" 8d16e19a3a8c04 fs/xfs/libxfs/xfs_btree.c Darrick J. Wong 2021-01-05 24 #include "xfs_health.h" 5edad82426399c fs/xfs/libxfs/xfs_btree.c Darrick J. Wong 2021-01-05 @25 #include "xfs_bmap.h" 5edad82426399c fs/xfs/libxfs/xfs_btree.c Darrick J. Wong 2021-01-05 26 #include "xfs_rmap.h" 5edad82426399c fs/xfs/libxfs/xfs_btree.c Darrick J. Wong 2021-01-05 27 #include "xfs_quota.h" 5edad82426399c fs/xfs/libxfs/xfs_btree.c Darrick J. Wong 2021-01-05 28 #include "xfs_imeta.h" ^1da177e4c3f41 fs/xfs/xfs_btree.c Linus Torvalds 2005-04-16 29 --- 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]
