1. 16 4月, 2019 4 次提交
  2. 09 4月, 2019 1 次提交
  3. 20 3月, 2019 1 次提交
  4. 07 3月, 2019 1 次提交
    • A
      scsi: qla2xxx: avoid printf format warning · 038d710f
      Arnd Bergmann 提交于
      Depending on the target architecture and configuration, both phys_addr_t
      and dma_addr_t may be smaller than 'long long', so we get a warning when
      printing either of them using the %llx format string:
      
      drivers/scsi/qla2xxx/qla_iocb.c: In function 'qla24xx_walk_and_build_prot_sglist':
      drivers/scsi/qla2xxx/qla_iocb.c:1140:46: error: format '%llx' expects argument of type 'long long unsigned int', but argument 6 has type 'dma_addr_t' {aka 'unsigned int'} [-Werror=format=]
               "%s: page boundary crossing (phys=%llx len=%x)\n",
                                                 ~~~^
                                                 %x
               __func__, sle_phys, sg->length);
                         ~~~~~~~~
      drivers/scsi/qla2xxx/qla_iocb.c:1180:29: error: format '%llx' expects argument of type 'long long unsigned int', but argument 7 has type 'dma_addr_t' {aka 'unsigned int'} [-Werror=format=]
              "%s: sg[%x] (phys=%llx sglen=%x) ldma_sg_len: %x dif_bundl_len: %x ldma_needed: %x\n",
                                ~~~^
      
      There are special %pad and %pap format strings in Linux that we could use
      here, but since the driver already does 64-bit arithmetic on the values,
      using a plain 'u64' seems more consistent here.
      
      Note: A possible related issue may be that the driver possibly checks the
      wrong kind of overflow: when an IOMMU is in use, buffers that cross a
      32-bit boundary in physical addresses would still be mapped into dma
      addresses within the low 4GB space, so I suspect that we actually want to
      check sg_dma_address() instead of sg_phys() here.
      
      Fixes: 50b81275 ("scsi: qla2xxx: Fix DMA error when the DIF sg buffer crosses 4GB boundary")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Acked-by: NHimanshu Madhani <hmadhani@marvell.com>
      Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
      038d710f
  5. 20 2月, 2019 2 次提交
  6. 06 2月, 2019 1 次提交
  7. 12 1月, 2019 1 次提交
  8. 24 10月, 2018 1 次提交
  9. 17 9月, 2018 1 次提交
  10. 12 9月, 2018 4 次提交
  11. 09 8月, 2018 1 次提交
  12. 03 8月, 2018 4 次提交
  13. 31 7月, 2018 1 次提交
  14. 10 4月, 2018 1 次提交
  15. 23 2月, 2018 1 次提交
  16. 14 2月, 2018 1 次提交
  17. 13 2月, 2018 1 次提交
  18. 23 1月, 2018 1 次提交
  19. 17 1月, 2018 1 次提交
  20. 04 1月, 2018 3 次提交
  21. 08 12月, 2017 2 次提交
  22. 17 10月, 2017 1 次提交
  23. 25 8月, 2017 1 次提交
  24. 02 7月, 2017 1 次提交
  25. 28 6月, 2017 3 次提交