dmesg 中充斥着“ataXX.00:无法识别”的神秘驱动器

dmesg 中充斥着“ataXX.00:无法识别”的神秘驱动器

我的dmesg每一秒都会被下面的内容淹没(请注意,下面的内容会永远重复;但确切的顺序似乎会有所不同):

ata15.00: failed to IDENTIFY (I/O error, err_mask=0x100)
ata15: limiting SATA link speed to 1.5 Gbps
ata15: SATA link down (SStatus 1 SControl 310)
ata15: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata15.00: failed to IDENTIFY (I/O error, err_mask=0x100)

我看到 PCI ID 来自

# ls -l /sys/class/ata_port/
lrwxrwxrwx 1 root root 0 Dec 10 11:08 ata15 -> ../../devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:09.0/0000:08:00.0/ata15/ata_port/ata15

看起来(我不是 100% 确定 的输出格式lspci)这里相关的 PCI id/端口是08;但没有相应的条目ls -l /dev/disk/by-path

# ls -l /dev/disk/by-path
total 0
lrwxrwxrwx 1 root root 13 Dec  7 11:30 pci-0000:01:00.0-nvme-1 -> ../../nvme0n1
lrwxrwxrwx 1 root root 15 Dec  7 11:30 pci-0000:01:00.0-nvme-1-part1 -> ../../nvme0n1p1
lrwxrwxrwx 1 root root 15 Dec  7 11:30 pci-0000:01:00.0-nvme-1-part2 -> ../../nvme0n1p2
lrwxrwxrwx 1 root root 15 Dec  7 11:30 pci-0000:01:00.0-nvme-1-part3 -> ../../nvme0n1p3
lrwxrwxrwx 1 root root 15 Dec  7 11:30 pci-0000:01:00.0-nvme-1-part5 -> ../../nvme0n1p5
lrwxrwxrwx 1 root root  9 Dec  7 11:30 pci-0000:04:00.0-ata-1 -> ../../sdb
lrwxrwxrwx 1 root root  9 Dec  7 11:30 pci-0000:04:00.0-ata-2 -> ../../sr0
lrwxrwxrwx 1 root root  9 Dec  7 11:30 pci-0000:09:00.0-ata-1 -> ../../sr1
lrwxrwxrwx 1 root root  9 Dec  7 11:30 pci-0000:09:00.0-ata-2 -> ../../sdc
lrwxrwxrwx 1 root root 10 Dec  7 11:30 pci-0000:09:00.0-ata-2-part1 -> ../../sdc1
lrwxrwxrwx 1 root root  9 Dec  7 11:30 pci-0000:09:00.0-ata-5 -> ../../sdd
lrwxrwxrwx 1 root root 10 Dec  7 11:30 pci-0000:09:00.0-ata-5-part1 -> ../../sdd1
lrwxrwxrwx 1 root root  9 Dec  7 11:30 pci-0000:09:00.0-ata-6 -> ../../sde
lrwxrwxrwx 1 root root 10 Dec  7 11:30 pci-0000:09:00.0-ata-6-part1 -> ../../sde1

我相信相关设备lspci -nn来自

08:00.0 SATA controller: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] (rev 51)

有没有办法收集有关此处连接的设备的更多信息?我无法轻松地物理访问机器进行反复试验。(FWIW,我唯一能提供的假设是,这是服务器为手动硬备份安装的 DVDR 驱动器。)

相关内容