mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
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: Damien Le Moal <damien.lemoal@opensource.wdc.com> Tested-by: Matthew Perkowski <mgperkow@gmail.com>
This commit is contained in:
parent
fa55b7dcdc
commit
23ef63d5e1
@ -2031,8 +2031,9 @@ retry:
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user