Skip to content
Permalink
Hannes-Reineck…
Switch branches/tags

Commits on Dec 8, 2021

  1. libata-scsi: rework ata_dump_status to avoid using pr_cont()

    pr_cont() has the problem that individual calls will be disrupted
    under high load, causing each call to end up on a single line and
    thereby mangling the output.
    So rework ata_dump_status() to have just one call to ata_port_warn()
    and avoid this problem.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  2. pata_hpt366: convert pr_warn() calls

    Convert pr_warn() calls to ata_dev_warn()
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  3. pata_hpt3x2n: convert pr_err() calls

    Convert pr_err() calls to dev_err()
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  4. pata_hpt3x2n: convert pr_XXX() calls

    Convert pr_XXX() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  5. pata_octeon_cf: Replace pr_XXX() calls with structured logging

    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  6. pata_hpt37x: convert pr_XXX() calls

    Convert pr_XXX() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  7. sata_mv: convert remaining printk() to structured logging

    Refactor the .reset_hc() callback and convert the remaining printk()
    calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  8. sata_sx4: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  9. pdc_adma: remove disabled debugging messages

    Remove debugging messages for printing out the resulting PRD
    as it was permanently disabled anyway.
    And convert the remaining printk() statement to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  10. pata_sil680: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  11. pata_serverworks: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  12. pata_rz1000: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  13. pata_marvell: convert blank printk() calls

    Convert the blank printk() call to structured logging and
    drop the pointless PCI bar debug messages.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  14. pata_it821x: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  15. pata_cypressx: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  16. pata_cs5536: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  17. pata_cs5520: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  18. pata_cmd64x: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  19. pata_cmd640: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  20. pata_atp867x: convert blank printk() calls

    Convert blank printk() calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  21. libata: remove debug compilation switches

    Unused now, so remove them.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  22. libata: remove 'new' ata message handling

    Remove the remaining bits for the 'new' ata message handling.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  23. libata: drop ata_msg_drv()

    Callers are already protected by ata_dev_print_info(), so no need
    to have an additional configuration parameter here.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  24. libata: drop ata_msg_info()

    Convert the sole caller to ata_dev_deb() and remove the definition.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  25. libata: drop ata_msg_probe()

    All callsites have been converted to dynamic debugging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  26. libata: drop ata_msg_warn()

    The WARN level was always enabled, so drop ata_msg_warn().
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  27. libata: drop ata_msg_malloc()

    Unused.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  28. libata: drop ata_msg_ctl()

    The one caller have been converted to dynamic debugging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  29. libata: drop ata_msg_error() and ata_msg_intr()

    Unused.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  30. sata_sx4: add module parameter 'dimm_test'

    Add module parameter 'dimm_test' to enable DIMM testing during startup.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  31. sata_sx4: Drop pointless VPRINTK() calls and convert the remaining ones

    Drop pointless VPRINTK() calls for setting up SG tables
    and convert the remaining calls to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  32. sata_sil: Drop pointless VPRINTK() calls

    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  33. sata_fsl: convert VPRINTK() calls to ata_port_dbg()

    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  34. sata_nv: drop pointless VPRINTK() calls and convert remaining ones

    Quite some information from the VPRINTK() is already covered by
    tracepoints, so remove the pointless calls and convert the remaining
    ones to structured logging.
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
  35. sata_mv: Drop pointless VPRINTK() call and convert the remaining one

    Drop pointless VPRINTK() call and convert the remaining one to dev_dbg().
    
    Signed-off-by: Hannes Reinecke <hare@suse.de>
    hreinecke authored and intel-lab-lkp committed Dec 8, 2021
Older