public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: himanshu.madhani@cavium.com
Cc: kbuild-all@01.org, martin.petersen@oracle.com,
	linux-scsi@vger.kernel.org, himanshu.madhani@qlogic.com
Subject: Re: [PATCH 3/4] qla2xxx: Add Block Multi Queue functionality.
Date: Sat, 5 Nov 2016 07:15:26 +0800	[thread overview]
Message-ID: <201611050747.YdfRxXl3%fengguang.wu@intel.com> (raw)
In-Reply-To: <1478277213-3848-4-git-send-email-himanshu.madhani@cavium.com>

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

Hi Michael,

[auto build test ERROR on scsi/for-next]
[also build test ERROR on v4.9-rc3 next-20161028]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]

url:    https://github.com/0day-ci/linux/commits/himanshu-madhani-cavium-com/qla2xxx-feature-updates-for-driver/20161105-054615
base:   https://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git for-next
config: x86_64-acpi-redef (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   In file included from drivers/scsi/qla2xxx/qla_def.h:3934:0,
                    from drivers/scsi/qla2xxx/qla_bottom.c:7:
   drivers/scsi/qla2xxx/qla_bottom.c: In function 'qla2xxx_start_scsi_mq':
>> drivers/scsi/qla2xxx/qla_gbl.h:225:20: error: inlining failed in call to always_inline 'qla24xx_build_scsi_iocbs': function body not available
    extern inline void qla24xx_build_scsi_iocbs(srb_t *, struct cmd_type_7 *,
                       ^~~~~~~~~~~~~~~~~~~~~~~~
   drivers/scsi/qla2xxx/qla_bottom.c:123:2: note: called from here
     qla24xx_build_scsi_iocbs(sp, cmd_pkt, tot_dsds, req);
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   In file included from drivers/scsi/qla2xxx/qla_def.h:3934:0,
                    from drivers/scsi/qla2xxx/qla_bottom.c:7:
>> drivers/scsi/qla2xxx/qla_gbl.h:225:20: error: inlining failed in call to always_inline 'qla24xx_build_scsi_iocbs': function body not available
    extern inline void qla24xx_build_scsi_iocbs(srb_t *, struct cmd_type_7 *,
                       ^~~~~~~~~~~~~~~~~~~~~~~~
   drivers/scsi/qla2xxx/qla_bottom.c:123:2: note: called from here
     qla24xx_build_scsi_iocbs(sp, cmd_pkt, tot_dsds, req);
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

vim +/qla24xx_build_scsi_iocbs +225 drivers/scsi/qla2xxx/qla_gbl.h

   219	 */
   220	
   221	extern uint16_t qla2x00_calc_iocbs_32(uint16_t);
   222	extern uint16_t qla2x00_calc_iocbs_64(uint16_t);
   223	extern void qla2x00_build_scsi_iocbs_32(srb_t *, cmd_entry_t *, uint16_t);
   224	extern void qla2x00_build_scsi_iocbs_64(srb_t *, cmd_entry_t *, uint16_t);
 > 225	extern inline void qla24xx_build_scsi_iocbs(srb_t *, struct cmd_type_7 *,
   226		uint16_t, struct req_que *);
   227	extern int qla2x00_start_scsi(srb_t *sp);
   228	extern int qla24xx_start_scsi(srb_t *sp);

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

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

  parent reply	other threads:[~2016-11-04 23:16 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-04 16:33 [PATCH 0/4] qla2xxx: feature updates for driver himanshu.madhani
2016-11-04 16:33 ` [PATCH 1/4] qla2xxx: Only allow operational MBX to proceed during RESET himanshu.madhani
2016-11-04 16:33 ` [PATCH 2/4] qla2xxx: Fix mailbox command timeout due to starvation himanshu.madhani
2016-11-07 15:53   ` Ewan D. Milne
2016-11-08 17:40     ` Madhani, Himanshu
2016-11-04 16:33 ` [PATCH 3/4] qla2xxx: Add Block Multi Queue functionality himanshu.madhani
2016-11-04 23:00   ` Christoph Hellwig
2016-11-05  2:08     ` Madhani, Himanshu
2016-11-04 23:15   ` kbuild test robot [this message]
2016-11-07 16:43   ` Ewan D. Milne
2016-11-08 17:37     ` Madhani, Himanshu
2016-11-04 16:33 ` [PATCH 4/4] qla2xxx: Fix Target stack handling with Multi-queue changes himanshu.madhani

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=201611050747.YdfRxXl3%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=himanshu.madhani@cavium.com \
    --cc=himanshu.madhani@qlogic.com \
    --cc=kbuild-all@01.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.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