* Re: [PATCH RFC v1 2/5] scsi: map_queues() takes tag set instead of host
[not found] <20220218184157.176457-3-melanieplageman@gmail.com>
@ 2022-02-20 19:07 ` kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2022-02-20 19:07 UTC (permalink / raw)
To: Melanie Plageman (Microsoft); +Cc: llvm, kbuild-all
Hi "Melanie,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on v5.17-rc4]
[also build test ERROR on next-20220217]
[cannot apply to mkp-scsi/for-next jejb-scsi/for-next powerpc/next]
[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/Melanie-Plageman-Microsoft/Add-SCSI-per-device-tagsets/20220220-182321
base: 754e0b0e35608ed5206d6a67a791563c631cec07
config: riscv-randconfig-c006-20220220 (https://download.01.org/0day-ci/archive/20220221/202202210247.G728msgj-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project d271fc04d5b97b12e6b797c6067d3c96a8d7470e)
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 riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://github.com/0day-ci/linux/commit/bf42e0d6e85e5f78470f952213d0cfcd20c7461d
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Melanie-Plageman-Microsoft/Add-SCSI-per-device-tagsets/20220220-182321
git checkout bf42e0d6e85e5f78470f952213d0cfcd20c7461d
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=riscv SHELL=/bin/bash drivers/scsi/ufs/
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 >>):
>> drivers/scsi/ufs/ufshcd.c:8188:17: error: incompatible function pointer types initializing 'int (*)(struct blk_mq_tag_set *)' with an expression of type 'int (struct Scsi_Host *)' [-Werror,-Wincompatible-function-pointer-types]
.map_queues = ufshcd_map_queues,
^~~~~~~~~~~~~~~~~
1 error generated.
vim +8188 drivers/scsi/ufs/ufshcd.c
90b8491c003391 Stanley Chu 2020-05-09 8183
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8184 static struct scsi_host_template ufshcd_driver_template = {
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8185 .module = THIS_MODULE,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8186 .name = UFSHCD,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8187 .proc_name = UFSHCD,
eaab9b57305496 Bart Van Assche 2021-12-03 @8188 .map_queues = ufshcd_map_queues,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8189 .queuecommand = ufshcd_queuecommand,
eaab9b57305496 Bart Van Assche 2021-12-03 8190 .mq_poll = ufshcd_poll,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8191 .slave_alloc = ufshcd_slave_alloc,
eeda47499f0187 Akinobu Mita 2014-07-01 8192 .slave_configure = ufshcd_slave_configure,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8193 .slave_destroy = ufshcd_slave_destroy,
4264fd613a6a4b Sujit Reddy Thumma 2014-06-29 8194 .change_queue_depth = ufshcd_change_queue_depth,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8195 .eh_abort_handler = ufshcd_abort,
3441da7ddbdedf Sujit Reddy Thumma 2014-05-26 8196 .eh_device_reset_handler = ufshcd_eh_device_reset_handler,
3441da7ddbdedf Sujit Reddy Thumma 2014-05-26 8197 .eh_host_reset_handler = ufshcd_eh_host_reset_handler,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8198 .this_id = -1,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8199 .sg_tablesize = SG_ALL,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8200 .cmd_per_lun = UFSHCD_CMD_PER_LUN,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8201 .can_queue = UFSHCD_CAN_QUEUE,
552a990ca16688 Christoph Hellwig 2019-06-17 8202 .max_segment_size = PRDT_DATA_BYTE_COUNT_MAX,
1ab27c9cf8b63d Sahitya Tummala 2014-09-25 8203 .max_host_blocked = 1,
c40ecc12cfdb63 Christoph Hellwig 2014-11-13 8204 .track_queue_depth = 1,
d829fc8a105885 Stanislav Nijnikov 2018-02-15 8205 .sdev_groups = ufshcd_driver_groups,
4af14d113bcf95 Christoph Hellwig 2018-12-13 8206 .dma_boundary = PAGE_SIZE - 1,
49615ba144a092 Stanley Chu 2019-09-16 8207 .rpm_autosuspend_delay = RPM_AUTOSUSPEND_DELAY_MS,
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8208 };
7a3e97b0dc4bba Santosh Yaraganavi 2012-02-29 8209
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-02-20 19:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20220218184157.176457-3-melanieplageman@gmail.com>
2022-02-20 19:07 ` [PATCH RFC v1 2/5] scsi: map_queues() takes tag set instead of host kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox