- 论坛徽章:
- 0
|
网上相应的资料也少的很,
>
Here's a way to narrow this down to an adapter and a number of possible
devices. This usually works, but one time on an M80 it did not work.
Take the bus number value (yours) "1000 00C2" and run:
# odmget -q value=0x100000c2 CuAt
CuAt:
name = "pci2"
attribute = "bus_id"
value = "0x100000c2"
type = "R"
generic = ""
rep = "n"
nls_index = 0
Convert the interrupt level (yours) from hex to decimal: "0000 0034" = 52
and run:
# lsresource -al pci2 |grep -E "bus_intr_lvl.*52"
I scsi1 bus_intr_lvl 52 (A1)
Then get the adapter location code:
# lsdev -C|grep ^scsi1
scsi1 Available 30-68 Wide SCSI I/O Controller
Then get the devices based on the adapter's location code:
# lsdev -C|grep 30-68
scsi1 Available 30-68 Wide SCSI I/O Controller
hdisk0 Available 30-68-00-8,0 16 Bit SCSI Disk Drive
hdisk1 Available 30-68-00-9,0 16 Bit SCSI Disk Drive
hdisk2 Available 30-68-00-10,0 16 Bit SCSI Disk Drive
hdisk3 Available 30-68-00-11,0 16 Bit SCSI Disk Drive
hdisk4 Available 30-68-00-12,0 16 Bit SCSI Disk Drive
hdisk5 Available 30-68-00-13,0 16 Bit SCSI Disk Drive
ses0 Available 30-68-00-15,0 SCSI Enclosure Services Device
> |
|