All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild@lists.01.org
Subject: Re: [PATCH v5 3/3] dm mpath: add CONFIG_DM_MULTIPATH_SG_IO - failover for SG_IO
Date: Fri, 02 Jul 2021 12:55:57 +0800	[thread overview]
Message-ID: <202107021246.BBtNu05e-lkp@intel.com> (raw)

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

CC: kbuild-all(a)lists.01.org
In-Reply-To: <20210628151558.2289-4-mwilck@suse.com>
References: <20210628151558.2289-4-mwilck@suse.com>
TO: mwilck(a)suse.com
TO: Mike Snitzer <snitzer@redhat.com>
TO: Alasdair G Kergon <agk@redhat.com>
TO: Bart Van Assche <Bart.VanAssche@sandisk.com>
TO: "Martin K. Petersen" <martin.petersen@oracle.com>
TO: linux-scsi(a)vger.kernel.org
TO: dm-devel(a)redhat.com
TO: Hannes Reinecke <hare@suse.de>
TO: Christoph Hellwig <hch@lst.de>
CC: Daniel Wagner <dwagner@suse.de>
CC: linux-block(a)vger.kernel.org

Hi,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on mkp-scsi/for-next]
[also build test WARNING on scsi/for-next]
[cannot apply to dm/for-next block/for-next song-md/md-next v5.13 next-20210701]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/mwilck-suse-com/scsi-dm-dm_blk_ioctl-implement-failover-for-SG_IO-on-dm-multipath/20210628-232212
base:   https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next
:::::: branch date: 4 days ago
:::::: commit date: 4 days ago
config: x86_64-randconfig-b001-20210701 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project e7e71e9454ed76c1b3d8140170b5333c28bef1be)
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://github.com/0day-ci/linux/commit/c6258b84ddc2128c365356dc189407083935c791
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review mwilck-suse-com/scsi-dm-dm_blk_ioctl-implement-failover-for-SG_IO-on-dm-multipath/20210628-232212
        git checkout c6258b84ddc2128c365356dc189407083935c791
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross C=1 CHECK=iwyu O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/md/

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 >>)
   drivers/md/dm-mpath.c:28:1: iwyu: warning: superfluous #include <linux/atomic.h>
   drivers/md/dm-mpath.c:17:1: iwyu: warning: superfluous #include <linux/ctype.h>
   drivers/md/dm-mpath.c:26:1: iwyu: warning: superfluous #include <linux/delay.h>
   drivers/md/dm-mpath.c:19:1: iwyu: warning: superfluous #include <linux/mempool.h>
   drivers/md/dm-mpath.c:21:1: iwyu: warning: superfluous #include <linux/pagemap.h>
   drivers/md/dm-mpath.c:23:1: iwyu: warning: superfluous #include <linux/time.h>
>> drivers/md/dm-mpath.c:30:1: iwyu: warning: superfluous #include <scsi/sg.h>
>> drivers/md/dm-mpath.c:14:1: iwyu: warning: superfluous #include "dm-core.h"

vim +30 drivers/md/dm-mpath.c

586e80e6ee0d13 Mikulas Patocka     2008-10-21   9  
4cc96131afce3e Mike Snitzer        2016-05-12  10  #include "dm-rq.h"
76e33fe4e2c436 Mike Snitzer        2016-05-19  11  #include "dm-bio-record.h"
^1da177e4c3f41 Linus Torvalds      2005-04-16  12  #include "dm-path-selector.h"
b15546f942c09f Mike Anderson       2007-10-19  13  #include "dm-uevent.h"
c6258b84ddc212 Martin Wilck        2021-06-28 @14  #include "dm-core.h"
^1da177e4c3f41 Linus Torvalds      2005-04-16  15  
e5863d9ad75492 Mike Snitzer        2014-12-17  16  #include <linux/blkdev.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  17  #include <linux/ctype.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  18  #include <linux/init.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  19  #include <linux/mempool.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  20  #include <linux/module.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  21  #include <linux/pagemap.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  22  #include <linux/slab.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  23  #include <linux/time.h>
be240ff5e402df Anatol Pomazau      2020-01-13  24  #include <linux/timer.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  25  #include <linux/workqueue.h>
35991652baa12f Mikulas Patocka     2012-06-03  26  #include <linux/delay.h>
cfae5c9bb66325 Chandra Seetharaman 2008-05-01  27  #include <scsi/scsi_dh.h>
60063497a95e71 Arun Sharma         2011-07-26 @28  #include <linux/atomic.h>
78ce23b51802f5 Mike Snitzer        2016-01-31  29  #include <linux/blk-mq.h>
c6258b84ddc212 Martin Wilck        2021-06-28 @30  #include <scsi/sg.h>
^1da177e4c3f41 Linus Torvalds      2005-04-16  31  

---
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: 39115 bytes --]

             reply	other threads:[~2021-07-02  4:55 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-02  4:55 kernel test robot [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-06-30 22:36 [PATCH v5 3/3] dm mpath: add CONFIG_DM_MULTIPATH_SG_IO - failover for SG_IO kernel test robot
2021-06-28 15:15 [PATCH v5 0/3] scsi/dm: dm_blk_ioctl(): implement failover for SG_IO on dm-multipath mwilck
2021-06-28 15:15 ` [PATCH v5 3/3] dm mpath: add CONFIG_DM_MULTIPATH_SG_IO - failover for SG_IO mwilck
2021-07-01  7:56   ` Christoph Hellwig
2021-07-01 10:35     ` Martin Wilck
2021-07-01 11:34       ` Christoph Hellwig
2021-07-01 11:06     ` Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202107021246.BBtNu05e-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.