All of lore.kernel.org
 help / color / mirror / Atom feed
* [djwong-xfs:vectorized-scrub 142/315] fs/xfs/xfs_inode.c:20:1: iwyu: warning: superfluous #include "xfs_bit.h"
@ 2021-06-14 20:33 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2021-06-14 20:33 UTC (permalink / raw)
  To: kbuild

[-- Attachment #1: Type: text/plain, Size: 4953 bytes --]

CC: kbuild-all(a)lists.01.org
CC: "Darrick J. Wong" <darrick.wong@oracle.com>
TO: "Darrick J. Wong" <djwong@kernel.org>

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git vectorized-scrub
head:   e907b5eb3852612685b26c1aa94707544d45ced0
commit: ecf974916499c07cbef2a2421f81ff8e8af110f2 [142/315] xfs: online repair of directories
:::::: branch date: 17 hours ago
:::::: commit date: 17 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=ecf974916499c07cbef2a2421f81ff8e8af110f2
        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 ecf974916499c07cbef2a2421f81ff8e8af110f2
        # 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 <lkp@intel.com>


iwyu warnings: (new ones prefixed by >>)
   fs/xfs/xfs_inode.c:8:1: iwyu: warning: superfluous #include "xfs.h"
>> fs/xfs/xfs_inode.c:20:1: iwyu: warning: superfluous #include "xfs_bit.h"
   fs/xfs/xfs_inode.c:37:1: iwyu: warning: superfluous #include "xfs_bmap_btree.h"
   fs/xfs/xfs_inode.c:23: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:28: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:40:1: iwyu: warning: superfluous #include "xfs_health.h"

vim +20 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"
ecf974916499c0 Darrick J. Wong   2021-01-05 @20  #include "xfs_bit.h"
239880ef6454cc Dave Chinner      2013-10-23  21  #include "xfs_trans_space.h"
239880ef6454cc Dave Chinner      2013-10-23  22  #include "xfs_trans.h"
^1da177e4c3f41 Linus Torvalds    2005-04-16  23  #include "xfs_buf_item.h"
a844f4510dce23 Nathan Scott      2005-11-02  24  #include "xfs_inode_item.h"
a844f4510dce23 Nathan Scott      2005-11-02  25  #include "xfs_ialloc.h"
a844f4510dce23 Nathan Scott      2005-11-02  26  #include "xfs_bmap.h"
6898811459ff52 Dave Chinner      2013-08-12  27  #include "xfs_bmap_util.h"
e9e899a2a8c3c2 Darrick J. Wong   2017-10-31  28  #include "xfs_errortag.h"
^1da177e4c3f41 Linus Torvalds    2005-04-16  29  #include "xfs_error.h"
^1da177e4c3f41 Linus Torvalds    2005-04-16  30  #include "xfs_quota.h"
2a82b8be8a8dac David Chinner     2007-07-11  31  #include "xfs_filestream.h"
0b1b213fcf3a84 Christoph Hellwig 2009-12-14  32  #include "xfs_trace.h"
33479e0542df06 Dave Chinner      2012-10-08  33  #include "xfs_icache.h"
c24b5dfadc4a4f Dave Chinner      2013-08-12  34  #include "xfs_symlink.h"
239880ef6454cc Dave Chinner      2013-10-23  35  #include "xfs_trans_priv.h"
239880ef6454cc Dave Chinner      2013-10-23  36  #include "xfs_log.h"
a4fbe6ab1e7abe Dave Chinner      2013-10-23  37  #include "xfs_bmap_btree.h"
aa8968f227a8c6 Darrick J. Wong   2016-10-03  38  #include "xfs_reflink.h"
e9b150228c6e6f Darrick J. Wong   2021-01-05  39  #include "xfs_health.h"
118911fd81c870 Darrick J. Wong   2021-01-05  40  #include "xfs_health.h"
^1da177e4c3f41 Linus Torvalds    2005-04-16  41  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 38365 bytes --]

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

only message in thread, other threads:[~2021-06-14 20:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-14 20:33 [djwong-xfs:vectorized-scrub 142/315] fs/xfs/xfs_inode.c:20:1: iwyu: warning: superfluous #include "xfs_bit.h" kernel test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.