public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Nilesh Javali <njavali@marvell.com>, martin.petersen@oracle.com
Cc: kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
	linux-scsi@vger.kernel.org,
	GR-QLogic-Storage-Upstream@marvell.com
Subject: Re: [PATCH 03/12] qla2xxx: Allow dev_loss_tmo setting for FC-NVMe devices
Date: Wed, 19 Aug 2020 05:04:22 +0800	[thread overview]
Message-ID: <202008190402.bZVH4SdV%lkp@intel.com> (raw)
In-Reply-To: <20200818123203.20361-4-njavali@marvell.com>

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

Hi Nilesh,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on dca93232b361d260413933903cd4bdbd92ebcc7f]

url:    https://github.com/0day-ci/linux/commits/Nilesh-Javali/qla2xxx-misc-features-and-bug-fixes/20200818-203851
base:    dca93232b361d260413933903cd4bdbd92ebcc7f
config: s390-randconfig-r034-20200818 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 790878f291fa5dc58a1c560cb6cc76fd1bfd1c5a)
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 s390 cross compiling tool for clang build
        # apt-get install binutils-s390x-linux-gnu
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=s390 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   s390x-linux-gnu-ld: drivers/scsi/qla2xxx/qla_dfs.o: in function `qla_dfs_rport_set':
>> drivers/scsi/qla2xxx/qla_dfs.c:41: undefined reference to `nvme_fc_set_remoteport_devloss'

# https://github.com/0day-ci/linux/commit/c8724abdb8c3a827186052c58054832ee10bd817
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Nilesh-Javali/qla2xxx-misc-features-and-bug-fixes/20200818-203851
git checkout c8724abdb8c3a827186052c58054832ee10bd817
vim +41 drivers/scsi/qla2xxx/qla_dfs.c

    32	
    33	static int
    34	qla_dfs_rport_set(struct fc_port *fp, int attr_id, u64 val)
    35	{
    36		switch (attr_id) {
    37		case QLA_DFS_RPORT_DEVLOSS_TMO:
    38			/* Only supported for FC-NVMe devices that are registered. */
    39			if (!(fp->nvme_flag & NVME_FLAG_REGISTERED))
    40				return -EIO;
  > 41			return nvme_fc_set_remoteport_devloss(fp->nvme_remote_port,
    42							      val);
    43		default:
    44			return -EINVAL;
    45		}
    46		return 0;
    47	}
    48	

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

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

  parent reply	other threads:[~2020-08-18 21:05 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-18 12:31 [PATCH 00/12] qla2xxx misc features and bug fixes Nilesh Javali
2020-08-18 12:31 ` [PATCH 01/12] qla2xxx: Fix I/O failures during remote port toggle testing Nilesh Javali
2020-08-18 12:31 ` [PATCH 02/12] qla2xxx: Setup debugfs entries for remote ports Nilesh Javali
2020-08-18 12:31 ` [PATCH 03/12] qla2xxx: Allow dev_loss_tmo setting for FC-NVMe devices Nilesh Javali
2020-08-18 13:24   ` Roman Bolshakov
2020-08-19 22:09     ` Arun Easi
2020-08-18 21:04   ` kernel test robot [this message]
2020-08-18 21:12   ` kernel test robot
2020-08-18 12:31 ` [PATCH 04/12] qla2xxx: Honor status qualifier in FCP_RSP per spec Nilesh Javali
2020-08-18 12:31 ` [PATCH 05/12] qla2xxx: Reduce duplicate code in reporting speed Nilesh Javali
2020-08-18 12:31 ` [PATCH 06/12] qla2xxx: Fix memory size truncation Nilesh Javali
2020-08-18 12:31 ` [PATCH 07/12] qla2xxx: performance tweak Nilesh Javali
2020-08-18 12:31 ` [PATCH 08/12] qla2xxx: Fix I/O errors during LIP reset tests Nilesh Javali
2020-08-18 12:32 ` [PATCH 09/12] qla2xxx: Make tgt_port_database available in initiator mode Nilesh Javali
2020-08-18 12:32 ` [PATCH 10/12] qla2xxx: Add rport fields in debugfs Nilesh Javali
2020-08-18 12:32 ` [PATCH 11/12] qla2xxx: Add IOCB resource tracking Nilesh Javali
2020-08-18 12:32 ` [PATCH 12/12] qla2xxx: Add SLER and PI control support Nilesh Javali

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=202008190402.bZVH4SdV%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=GR-QLogic-Storage-Upstream@marvell.com \
    --cc=clang-built-linux@googlegroups.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=njavali@marvell.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox