Hi Hannes, I love your patch! Perhaps something to improve: [auto build test WARNING on mkp-scsi/for-next] [also build test WARNING on v5.0-rc4 next-20190212] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Hannes-Reinecke/scsi-fixup-dma_set_mask_and_coherent-calls/20190214-044535 base: https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next config: xtensa-allyesconfig (attached as .config) compiler: xtensa-linux-gcc (GCC) 8.2.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=8.2.0 make.cross ARCH=xtensa Note: it may well be a FALSE warning. FWIW you are at least aware of it now. http://gcc.gnu.org/wiki/Better_Uninitialized_Warnings All warnings (new ones prefixed by >>): drivers/scsi/bfa/bfad.c: In function 'bfad_pci_init': >> drivers/scsi/bfa/bfad.c:730:6: warning: 'rc' may be used uninitialized in this function [-Wmaybe-uninitialized] int rc; ^~ vim +/rc +730 drivers/scsi/bfa/bfad.c 726 727 int 728 bfad_pci_init(struct pci_dev *pdev, struct bfad_s *bfad) 729 { > 730 int rc; 731 732 if (pci_enable_device(pdev)) { 733 printk(KERN_ERR "pci_enable_device fail %p\n", pdev); 734 goto out; 735 } 736 737 if (pci_request_regions(pdev, BFAD_DRIVER_NAME)) 738 goto out_disable_device; 739 740 pci_set_master(pdev); 741 742 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)); 743 if (rc) 744 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); 745 746 if (rc) { 747 printk(KERN_ERR "dma_set_mask_and_coherent fail %p\n", pdev); 748 goto out_release_region; 749 } 750 rc = -ENODEV; 751 752 /* Enable PCIE Advanced Error Recovery (AER) if kernel supports */ 753 pci_enable_pcie_error_reporting(pdev); 754 755 bfad->pci_bar0_kva = pci_iomap(pdev, 0, pci_resource_len(pdev, 0)); 756 bfad->pci_bar2_kva = pci_iomap(pdev, 2, pci_resource_len(pdev, 2)); 757 758 if (bfad->pci_bar0_kva == NULL) { 759 printk(KERN_ERR "Fail to map bar0\n"); 760 goto out_release_region; 761 } 762 763 bfad->hal_pcidev.pci_slot = PCI_SLOT(pdev->devfn); 764 bfad->hal_pcidev.pci_func = PCI_FUNC(pdev->devfn); 765 bfad->hal_pcidev.pci_bar_kva = bfad->pci_bar0_kva; 766 bfad->hal_pcidev.device_id = pdev->device; 767 bfad->hal_pcidev.ssid = pdev->subsystem_device; 768 bfad->pci_name = pci_name(pdev); 769 770 bfad->pci_attr.vendor_id = pdev->vendor; 771 bfad->pci_attr.device_id = pdev->device; 772 bfad->pci_attr.ssid = pdev->subsystem_device; 773 bfad->pci_attr.ssvid = pdev->subsystem_vendor; 774 bfad->pci_attr.pcifn = PCI_FUNC(pdev->devfn); 775 776 bfad->pcidev = pdev; 777 778 /* Adjust PCIe Maximum Read Request Size */ 779 if (pci_is_pcie(pdev) && pcie_max_read_reqsz) { 780 if (pcie_max_read_reqsz >= 128 && 781 pcie_max_read_reqsz <= 4096 && 782 is_power_of_2(pcie_max_read_reqsz)) { 783 int max_rq = pcie_get_readrq(pdev); 784 printk(KERN_WARNING "BFA[%s]: " 785 "pcie_max_read_request_size is %d, " 786 "reset to %d\n", bfad->pci_name, max_rq, 787 pcie_max_read_reqsz); 788 pcie_set_readrq(pdev, pcie_max_read_reqsz); 789 } else { 790 printk(KERN_WARNING "BFA[%s]: invalid " 791 "pcie_max_read_request_size %d ignored\n", 792 bfad->pci_name, pcie_max_read_reqsz); 793 } 794 } 795 796 pci_save_state(pdev); 797 798 return 0; 799 800 out_release_region: 801 pci_release_regions(pdev); 802 out_disable_device: 803 pci_disable_device(pdev); 804 out: 805 return rc; 806 } 807 --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation
Attachment:
.config.gz
Description: application/gzip