[PATCH v4 07/10] scsi: hisi_sas: use blk_mq_hctx_map_queues to map queues
kernel test robot
lkp at intel.com
Wed Nov 13 16:36:35 PST 2024
Hi Daniel,
kernel test robot noticed the following build errors:
[auto build test ERROR on c9af98a7e8af266bae73e9d662b8341da1ec5824]
url: https://github.com/intel-lab-lkp/linux/commits/Daniel-Wagner/driver-core-bus-add-irq_get_affinity-callback-to-bus_type/20241113-223232
base: c9af98a7e8af266bae73e9d662b8341da1ec5824
patch link: https://lore.kernel.org/r/20241113-refactor-blk-affinity-helpers-v4-7-dd3baa1e267f%40kernel.org
patch subject: [PATCH v4 07/10] scsi: hisi_sas: use blk_mq_hctx_map_queues to map queues
config: i386-buildonly-randconfig-006-20241114 (https://download.01.org/0day-ci/archive/20241114/202411140822.ZRutrwWP-lkp@intel.com/config)
compiler: clang version 19.1.3 (https://github.com/llvm/llvm-project ab51eccf88f5321e7c60591c5546b254b6afab99)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241114/202411140822.ZRutrwWP-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp at intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202411140822.ZRutrwWP-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from drivers/scsi/hisi_sas/hisi_sas_v2_hw.c:7:
In file included from drivers/scsi/hisi_sas/hisi_sas.h:11:
In file included from include/linux/blk-mq.h:5:
In file included from include/linux/blkdev.h:9:
In file included from include/linux/blk_types.h:10:
In file included from include/linux/bvec.h:10:
In file included from include/linux/highmem.h:8:
In file included from include/linux/cacheflush.h:5:
In file included from arch/x86/include/asm/cacheflush.h:5:
In file included from include/linux/mm.h:2213:
include/linux/vmstat.h:518:36: warning: arithmetic between different enumeration types ('enum node_stat_item' and 'enum lru_list') [-Wenum-enum-conversion]
518 | return node_stat_name(NR_LRU_BASE + lru) + 3; // skip "nr_"
| ~~~~~~~~~~~ ^ ~~~
>> drivers/scsi/hisi_sas/hisi_sas_v2_hw.c:3375:45: error: use of undeclared identifier 'COQ_IRQ_INDEX'
3375 | cq->irq_no = hisi_hba->irq_map[queue_no + COQ_IRQ_INDEX];
| ^
1 warning and 1 error generated.
vim +/COQ_IRQ_INDEX +3375 drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
3322
3323 /*
3324 * There is a limitation in the hip06 chipset that we need
3325 * to map in all mbigen interrupts, even if they are not used.
3326 */
3327 static int interrupt_init_v2_hw(struct hisi_hba *hisi_hba)
3328 {
3329 struct platform_device *pdev = hisi_hba->platform_dev;
3330 struct device *dev = &pdev->dev;
3331 int irq, rc = 0;
3332 int i, phy_no, fatal_no, queue_no;
3333
3334 for (i = 0; i < HISI_SAS_PHY_INT_NR; i++) {
3335 irq = hisi_hba->irq_map[i + 1]; /* Phy up/down is irq1 */
3336 rc = devm_request_irq(dev, irq, phy_interrupts[i], 0,
3337 DRV_NAME " phy", hisi_hba);
3338 if (rc) {
3339 dev_err(dev, "irq init: could not request phy interrupt %d, rc=%d\n",
3340 irq, rc);
3341 rc = -ENOENT;
3342 goto err_out;
3343 }
3344 }
3345
3346 for (phy_no = 0; phy_no < hisi_hba->n_phy; phy_no++) {
3347 struct hisi_sas_phy *phy = &hisi_hba->phy[phy_no];
3348
3349 irq = hisi_hba->irq_map[phy_no + 72];
3350 rc = devm_request_irq(dev, irq, sata_int_v2_hw, 0,
3351 DRV_NAME " sata", phy);
3352 if (rc) {
3353 dev_err(dev, "irq init: could not request sata interrupt %d, rc=%d\n",
3354 irq, rc);
3355 rc = -ENOENT;
3356 goto err_out;
3357 }
3358 }
3359
3360 for (fatal_no = 0; fatal_no < HISI_SAS_FATAL_INT_NR; fatal_no++) {
3361 irq = hisi_hba->irq_map[fatal_no + 81];
3362 rc = devm_request_irq(dev, irq, fatal_interrupts[fatal_no], 0,
3363 DRV_NAME " fatal", hisi_hba);
3364 if (rc) {
3365 dev_err(dev, "irq init: could not request fatal interrupt %d, rc=%d\n",
3366 irq, rc);
3367 rc = -ENOENT;
3368 goto err_out;
3369 }
3370 }
3371
3372 for (queue_no = 0; queue_no < hisi_hba->cq_nvecs; queue_no++) {
3373 struct hisi_sas_cq *cq = &hisi_hba->cq[queue_no];
3374
> 3375 cq->irq_no = hisi_hba->irq_map[queue_no + COQ_IRQ_INDEX];
3376 rc = devm_request_threaded_irq(dev, cq->irq_no,
3377 cq_interrupt_v2_hw,
3378 cq_thread_v2_hw, IRQF_ONESHOT,
3379 DRV_NAME " cq", cq);
3380 if (rc) {
3381 dev_err(dev, "irq init: could not request cq interrupt %d, rc=%d\n",
3382 cq->irq_no, rc);
3383 rc = -ENOENT;
3384 goto err_out;
3385 }
3386 cq->irq_mask = irq_get_affinity_mask(cq->irq_no);
3387 }
3388 err_out:
3389 return rc;
3390 }
3391
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
More information about the Linux-nvme
mailing list