Commit 23ef63d5 authored by Damien Le Moal's avatar Damien Le Moal
Browse files

ata: libata: improve ata_read_log_page() error message



If ata_read_log_page() fails to read a log page, the ata_dev_err() error
message only print the page number, omitting the log number. In case of
error, facilitate debugging by also printing the log number.

Cc: stable@kernel.org # 5.15
Signed-off-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
Tested-by: default avatarMatthew Perkowski <mgperkow@gmail.com>
parent fa55b7dc
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2031,8 +2031,9 @@ unsigned int ata_read_log_page(struct ata_device *dev, u8 log,
			dev->horkage |= ATA_HORKAGE_NO_DMA_LOG;
			goto retry;
		}
		ata_dev_err(dev, "Read log page 0x%02x failed, Emask 0x%x\n",
			    (unsigned int)page, err_mask);
		ata_dev_err(dev,
			    "Read log 0x%02x page 0x%02x failed, Emask 0x%x\n",
			    (unsigned int)log, (unsigned int)page, err_mask);
	}

	return err_mask;