web-dev-qa-db-ja.com

dmidecodeはlspciとは異なります

まず、通常のlscpi

lspci | grep Non-Volatile
03:00.0 Non-Volatile memory controller ...

これは、(ドメイン0)、バス03、デバイス00、機能0として解釈されます。

Dmidecodeの関連セクション:

dmidecode -t slot
Handle 0x0026, DMI type 9, 17 bytes
System Slot Information
        Designation: PCIE3
        Type: x16 PCI Express 3 x16
        Current Usage: In Use
        Length: Long
        Characteristics:
                3.3 V is provided
                Opening is shared
                PME signal is supported
        Bus Address: 0000:03:02.0

ドメイン0、バス3、デバイス2、機能0を表示します。

これで、lspciツリービューで見られるように、そこにブリッジがあります。

lspci -tv | grep -C 3 Non-Volatile
\-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
            +-01.0-[01]--
            +-01.1-[02]--
            +-02.0-[03]----00.0  Non-Volatile memory controller ...

ブリッジはバス0のデバイス2ですが、dmidecodeがスロットがバス3のデバイス2であると見なすのは少し奇妙です。

1
sheridp

man dmidecodeは言う

...
dmidecode  is  a tool for dumping a computer's DMI (some say
SMBIOS) table contents in a human-readable format.
...
While this is a good point in terms of report speed and safeness,
this also makes the presented information possibly unreliable.
...

Linuxカーネルは、使用するアドレスを認識しています。だから私はsysfsとlspciに頼るでしょう。

1
aventurin