From: kbuild test robot <lkp@intel.com>
To: James Smart <jsmart2021@gmail.com>
Cc: kbuild-all@lists.01.org, linux-scsi@vger.kernel.org,
dwagner@suse.de, maier@linux.ibm.com, bvanassche@acm.org,
herbszt@gmx.de, natechancellor@gmail.com, rdunlap@infradead.org,
hare@suse.de, James Smart <jsmart2021@gmail.com>,
Ram Vegesna <ram.vegesna@broadcom.com>
Subject: Re: [PATCH v3 31/31] elx: efct: Tie into kernel Kconfig and build process
Date: Sun, 12 Apr 2020 14:16:29 +0800 [thread overview]
Message-ID: <202004121450.yUoGNDD6%lkp@intel.com> (raw)
In-Reply-To: <20200412033303.29574-32-jsmart2021@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 5385 bytes --]
Hi James,
I love your patch! Perhaps something to improve:
[auto build test WARNING on mkp-scsi/for-next]
[also build test WARNING on scsi/for-next linus/master v5.6 next-20200411]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/James-Smart/efct-Broadcom-Emulex-FC-Target-driver/20200412-114125
base: https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next
config: parisc-allyesconfig (attached as .config)
compiler: hppa-linux-gcc (GCC) 9.3.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=9.3.0 make.cross ARCH=parisc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
In file included from include/uapi/linux/ioctl.h:5,
from include/uapi/linux/fs.h:14,
from include/linux/fs.h:45,
from include/linux/huge_mm.h:8,
from include/linux/mm.h:567,
from include/linux/scatterlist.h:8,
from include/linux/dmapool.h:14,
from include/linux/pci.h:1414,
from drivers/scsi/elx/efct/efct_driver.h:23,
from drivers/scsi/elx/efct/efct_driver.c:7:
>> arch/parisc/include/uapi/asm/ioctl.h:40: warning: "_IOC_WRITE" redefined
40 | #define _IOC_WRITE 2U
|
In file included from include/asm-generic/ioctl.h:5,
from drivers/scsi/elx/efct/efct_driver.h:20,
from drivers/scsi/elx/efct/efct_driver.c:7:
include/uapi/asm-generic/ioctl.h:62: note: this is the location of the previous definition
62 | # define _IOC_WRITE 1U
|
In file included from include/uapi/linux/ioctl.h:5,
from include/uapi/linux/fs.h:14,
from include/linux/fs.h:45,
from include/linux/huge_mm.h:8,
from include/linux/mm.h:567,
from include/linux/scatterlist.h:8,
from include/linux/dmapool.h:14,
from include/linux/pci.h:1414,
from drivers/scsi/elx/efct/efct_driver.h:23,
from drivers/scsi/elx/efct/efct_driver.c:7:
>> arch/parisc/include/uapi/asm/ioctl.h:41: warning: "_IOC_READ" redefined
41 | #define _IOC_READ 1U
|
In file included from include/asm-generic/ioctl.h:5,
from drivers/scsi/elx/efct/efct_driver.h:20,
from drivers/scsi/elx/efct/efct_driver.c:7:
include/uapi/asm-generic/ioctl.h:66: note: this is the location of the previous definition
66 | # define _IOC_READ 2U
|
vim +/_IOC_WRITE +40 arch/parisc/include/uapi/asm/ioctl.h
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 25
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 26 /* ioctl command encoding: 32 bits total, command in lower 16 bits,
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 27 * size of the parameter structure in the lower 14 bits of the
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 28 * upper 16 bits.
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 29 * Encoding the size of the parameter structure in the ioctl request
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 30 * is useful for catching programs compiled with old versions
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 31 * and to avoid overwriting user space outside the user buffer area.
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 32 * The highest 2 bits are reserved for indicating the ``access mode''.
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 33 * NOTE: This limits the max parameter size to 16kB -1 !
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 34 */
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 35
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 36 /*
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 37 * Direction bits.
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 38 */
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 39 #define _IOC_NONE 0U
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 @40 #define _IOC_WRITE 2U
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 @41 #define _IOC_READ 1U
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 42
:::::: The code at line 40 was first introduced by commit
:::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2
:::::: TO: Linus Torvalds <torvalds@ppc970.osdl.org>
:::::: CC: Linus Torvalds <torvalds@ppc970.osdl.org>
---
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: 60607 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v3 31/31] elx: efct: Tie into kernel Kconfig and build process
Date: Sun, 12 Apr 2020 14:16:29 +0800 [thread overview]
Message-ID: <202004121450.yUoGNDD6%lkp@intel.com> (raw)
In-Reply-To: <20200412033303.29574-32-jsmart2021@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 5481 bytes --]
Hi James,
I love your patch! Perhaps something to improve:
[auto build test WARNING on mkp-scsi/for-next]
[also build test WARNING on scsi/for-next linus/master v5.6 next-20200411]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/James-Smart/efct-Broadcom-Emulex-FC-Target-driver/20200412-114125
base: https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next
config: parisc-allyesconfig (attached as .config)
compiler: hppa-linux-gcc (GCC) 9.3.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=9.3.0 make.cross ARCH=parisc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
In file included from include/uapi/linux/ioctl.h:5,
from include/uapi/linux/fs.h:14,
from include/linux/fs.h:45,
from include/linux/huge_mm.h:8,
from include/linux/mm.h:567,
from include/linux/scatterlist.h:8,
from include/linux/dmapool.h:14,
from include/linux/pci.h:1414,
from drivers/scsi/elx/efct/efct_driver.h:23,
from drivers/scsi/elx/efct/efct_driver.c:7:
>> arch/parisc/include/uapi/asm/ioctl.h:40: warning: "_IOC_WRITE" redefined
40 | #define _IOC_WRITE 2U
|
In file included from include/asm-generic/ioctl.h:5,
from drivers/scsi/elx/efct/efct_driver.h:20,
from drivers/scsi/elx/efct/efct_driver.c:7:
include/uapi/asm-generic/ioctl.h:62: note: this is the location of the previous definition
62 | # define _IOC_WRITE 1U
|
In file included from include/uapi/linux/ioctl.h:5,
from include/uapi/linux/fs.h:14,
from include/linux/fs.h:45,
from include/linux/huge_mm.h:8,
from include/linux/mm.h:567,
from include/linux/scatterlist.h:8,
from include/linux/dmapool.h:14,
from include/linux/pci.h:1414,
from drivers/scsi/elx/efct/efct_driver.h:23,
from drivers/scsi/elx/efct/efct_driver.c:7:
>> arch/parisc/include/uapi/asm/ioctl.h:41: warning: "_IOC_READ" redefined
41 | #define _IOC_READ 1U
|
In file included from include/asm-generic/ioctl.h:5,
from drivers/scsi/elx/efct/efct_driver.h:20,
from drivers/scsi/elx/efct/efct_driver.c:7:
include/uapi/asm-generic/ioctl.h:66: note: this is the location of the previous definition
66 | # define _IOC_READ 2U
|
vim +/_IOC_WRITE +40 arch/parisc/include/uapi/asm/ioctl.h
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 25
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 26 /* ioctl command encoding: 32 bits total, command in lower 16 bits,
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 27 * size of the parameter structure in the lower 14 bits of the
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 28 * upper 16 bits.
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 29 * Encoding the size of the parameter structure in the ioctl request
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 30 * is useful for catching programs compiled with old versions
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 31 * and to avoid overwriting user space outside the user buffer area.
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 32 * The highest 2 bits are reserved for indicating the ``access mode''.
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 33 * NOTE: This limits the max parameter size to 16kB -1 !
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 34 */
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 35
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 36 /*
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 37 * Direction bits.
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 38 */
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 39 #define _IOC_NONE 0U
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 @40 #define _IOC_WRITE 2U
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 @41 #define _IOC_READ 1U
^1da177e4c3f41 include/asm-parisc/ioctl.h Linus Torvalds 2005-04-16 42
:::::: The code at line 40 was first introduced by commit
:::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2
:::::: TO: Linus Torvalds <torvalds@ppc970.osdl.org>
:::::: CC: Linus Torvalds <torvalds@ppc970.osdl.org>
---
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: 60607 bytes --]
next prev parent reply other threads:[~2020-04-12 6:16 UTC|newest]
Thread overview: 125+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-12 3:32 [PATCH v3 00/31] [NEW] efct: Broadcom (Emulex) FC Target driver James Smart
2020-04-12 3:32 ` [PATCH v3 01/31] elx: libefc_sli: SLI-4 register offsets and field definitions James Smart
2020-04-14 15:23 ` Daniel Wagner
2020-04-22 4:28 ` James Smart
2020-04-15 12:06 ` Hannes Reinecke
2020-04-23 1:52 ` Roman Bolshakov
2020-04-12 3:32 ` [PATCH v3 02/31] elx: libefc_sli: SLI Descriptors and Queue entries James Smart
2020-04-14 18:02 ` Daniel Wagner
2020-04-22 4:41 ` James Smart
2020-04-15 12:14 ` Hannes Reinecke
2020-04-15 17:43 ` James Bottomley
2020-04-22 4:44 ` James Smart
2020-04-12 3:32 ` [PATCH v3 03/31] elx: libefc_sli: Data structures and defines for mbox commands James Smart
2020-04-14 19:01 ` Daniel Wagner
2020-04-15 12:22 ` Hannes Reinecke
2020-04-12 3:32 ` [PATCH v3 04/31] elx: libefc_sli: queue create/destroy/parse routines James Smart
2020-04-15 10:04 ` Daniel Wagner
2020-04-22 5:05 ` James Smart
2020-04-24 7:29 ` Daniel Wagner
2020-04-24 15:21 ` James Smart
2020-04-15 12:27 ` Hannes Reinecke
2020-04-12 3:32 ` [PATCH v3 05/31] elx: libefc_sli: Populate and post different WQEs James Smart
2020-04-15 14:34 ` Daniel Wagner
2020-04-22 5:08 ` James Smart
2020-04-12 3:32 ` [PATCH v3 06/31] elx: libefc_sli: bmbx routines and SLI config commands James Smart
2020-04-15 16:10 ` Daniel Wagner
2020-04-22 5:12 ` James Smart
2020-04-12 3:32 ` [PATCH v3 07/31] elx: libefc_sli: APIs to setup SLI library James Smart
2020-04-15 12:49 ` Hannes Reinecke
2020-04-15 17:06 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 08/31] elx: libefc: Generic state machine framework James Smart
2020-04-15 12:37 ` Hannes Reinecke
2020-04-15 17:20 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 09/31] elx: libefc: Emulex FC discovery library APIs and definitions James Smart
2020-04-15 12:41 ` Hannes Reinecke
2020-04-15 17:32 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 10/31] elx: libefc: FC Domain state machine interfaces James Smart
2020-04-15 12:50 ` Hannes Reinecke
2020-04-15 17:50 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 11/31] elx: libefc: SLI and FC PORT " James Smart
2020-04-15 15:38 ` Hannes Reinecke
2020-04-22 23:12 ` James Smart
2020-04-15 18:04 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 12/31] elx: libefc: Remote node " James Smart
2020-04-15 15:51 ` Hannes Reinecke
2020-04-23 1:35 ` James Smart
2020-04-23 8:02 ` Daniel Wagner
2020-04-23 18:24 ` James Smart
2020-04-15 18:19 ` Daniel Wagner
2020-04-23 1:32 ` James Smart
2020-04-23 7:49 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 13/31] elx: libefc: Fabric " James Smart
2020-04-15 18:51 ` Daniel Wagner
2020-04-16 6:37 ` Hannes Reinecke
2020-04-23 1:38 ` James Smart
2020-04-12 3:32 ` [PATCH v3 14/31] elx: libefc: FC node ELS and state handling James Smart
2020-04-15 18:56 ` Daniel Wagner
2020-04-23 2:50 ` James Smart
2020-04-23 8:05 ` Daniel Wagner
2020-04-23 8:12 ` Nathan Chancellor
2020-04-16 6:47 ` Hannes Reinecke
2020-04-23 2:55 ` James Smart
2020-04-12 3:32 ` [PATCH v3 15/31] elx: efct: Data structures and defines for hw operations James Smart
2020-04-16 6:51 ` Hannes Reinecke
2020-04-23 2:57 ` James Smart
2020-04-16 7:22 ` Daniel Wagner
2020-04-23 2:59 ` James Smart
2020-04-12 3:32 ` [PATCH v3 16/31] elx: efct: Driver initialization routines James Smart
2020-04-16 7:11 ` Hannes Reinecke
2020-04-23 3:09 ` James Smart
2020-04-16 8:03 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 17/31] elx: efct: Hardware queues creation and deletion James Smart
2020-04-16 7:14 ` Hannes Reinecke
2020-04-16 8:24 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 18/31] elx: efct: RQ buffer, memory pool allocation and deallocation APIs James Smart
2020-04-16 7:24 ` Hannes Reinecke
2020-04-23 3:16 ` James Smart
2020-04-16 8:41 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 19/31] elx: efct: Hardware IO and SGL initialization James Smart
2020-04-16 7:32 ` Hannes Reinecke
2020-04-16 8:47 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 20/31] elx: efct: Hardware queues processing James Smart
2020-04-16 7:37 ` Hannes Reinecke
2020-04-16 9:17 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 21/31] elx: efct: Unsolicited FC frame processing routines James Smart
2020-04-16 9:36 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 22/31] elx: efct: Extended link Service IO handling James Smart
2020-04-16 7:58 ` Hannes Reinecke
2020-04-23 3:30 ` James Smart
2020-04-16 9:49 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 23/31] elx: efct: SCSI IO handling routines James Smart
2020-04-16 11:40 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 24/31] elx: efct: LIO backend interface routines James Smart
2020-04-12 4:57 ` Bart Van Assche
2020-04-16 11:48 ` Daniel Wagner
2020-04-22 4:20 ` James Smart
2020-04-22 5:09 ` Bart Van Assche
2020-04-23 1:39 ` James Smart
2020-04-16 8:02 ` Hannes Reinecke
2020-04-16 12:34 ` Daniel Wagner
2020-04-22 4:20 ` James Smart
2020-04-12 3:32 ` [PATCH v3 25/31] elx: efct: Hardware IO submission routines James Smart
2020-04-16 8:10 ` Hannes Reinecke
2020-04-16 12:45 ` Daniel Wagner
2020-04-23 3:37 ` James Smart
2020-04-16 12:44 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 26/31] elx: efct: link statistics and SFP data James Smart
2020-04-16 12:55 ` Daniel Wagner
2020-04-12 3:32 ` [PATCH v3 27/31] elx: efct: xport and hardware teardown routines James Smart
2020-04-16 9:45 ` Hannes Reinecke
2020-04-16 13:01 ` Daniel Wagner
2020-04-12 3:33 ` [PATCH v3 28/31] elx: efct: Firmware update, async link processing James Smart
2020-04-16 10:01 ` Hannes Reinecke
2020-04-16 13:10 ` Daniel Wagner
2020-04-12 3:33 ` [PATCH v3 29/31] elx: efct: scsi_transport_fc host interface support James Smart
2020-04-12 3:33 ` [PATCH v3 30/31] elx: efct: Add Makefile and Kconfig for efct driver James Smart
2020-04-16 10:02 ` Hannes Reinecke
2020-04-16 13:15 ` Daniel Wagner
2020-04-12 3:33 ` [PATCH v3 31/31] elx: efct: Tie into kernel Kconfig and build process James Smart
2020-04-12 6:16 ` kbuild test robot [this message]
2020-04-12 6:16 ` kbuild test robot
2020-04-12 7:56 ` kbuild test robot
2020-04-12 7:56 ` kbuild test robot
2020-04-16 13:15 ` Daniel Wagner
-- strict thread matches above, loose matches on Subject: below --
2020-04-12 7:22 kbuild test robot
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=202004121450.yUoGNDD6%lkp@intel.com \
--to=lkp@intel.com \
--cc=bvanassche@acm.org \
--cc=dwagner@suse.de \
--cc=hare@suse.de \
--cc=herbszt@gmx.de \
--cc=jsmart2021@gmail.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-scsi@vger.kernel.org \
--cc=maier@linux.ibm.com \
--cc=natechancellor@gmail.com \
--cc=ram.vegesna@broadcom.com \
--cc=rdunlap@infradead.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.