diff options
author | Hannes Reinecke <hare@suse.de> | 2021-12-21 08:20:46 +0100 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-05 19:33:01 +0900 |
commit | e1553351d747cbcd62db01d579dff916edcc782c (patch) | |
tree | 458f6ec1bf4a1f3ad2a2457caded1d534a0c3fee /drivers/ata/libata-core.c | |
parent | b5a5fc8b0f8175e4b3aaf182c1b23de4ccdd3347 (diff) | |
download | linux-e1553351d747cbcd62db01d579dff916edcc782c.tar.bz2 |
ata: libata: remove pointless VPRINTK() calls
Most of the information is already covered by tracepoints
(if not downright pointless), so remove the VPRINTK() calls.
And while we're at it, remove ata_scsi_dump_cdb(), too,
as this information can be retrieved from scsi tracing.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Diffstat (limited to 'drivers/ata/libata-core.c')
-rw-r--r-- | drivers/ata/libata-core.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index c9552606b015..447a46bdc820 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -4503,8 +4503,6 @@ static void ata_sg_clean(struct ata_queued_cmd *qc) WARN_ON_ONCE(sg == NULL); - VPRINTK("unmapping %u sg elements\n", qc->n_elem); - if (qc->n_elem) dma_unmap_sg(ap->dev, sg, qc->orig_n_elem, dir); @@ -4534,7 +4532,6 @@ static int ata_sg_setup(struct ata_queued_cmd *qc) if (n_elem < 1) return -1; - VPRINTK("%d sg elements mapped\n", n_elem); qc->orig_n_elem = qc->n_elem; qc->n_elem = n_elem; qc->flags |= ATA_QCFLAG_DMAMAP; |