The "lbolt" message is a SCSI reset message, therefore "bus 4" refers to the 4th SCSI bus. If the bus contains disks (as it seems to), the affected disks are of the form /dev/[r]dsk/c4t*d*.
The affected devices are identified as "1f04e000" and "1f04f000". The first two digits are the major device number: 1f is hexadecimal for 31. "lsdev -e 31" would tell you the name of the device driver that uses that major number, confirming that these are disk devices.
The next two digits are the SCSI bus number, the c part of the disk device name. 04 = /dev/[r]dsk/c4*.
The next single hex digit identifies the device ID on the SCSI bus. e=14, f=15.
The last 3 digits are for the LUN number, which is always 0 on Jamaica disks.
So, the messages seem to indicate that disks /dev/dsk/c4t14d0 and /dev/dsk/c4t15d0 are about to fail.
The ioscan listing gives the hardware paths of these disks as 10/0.14.0 and 10/0.15.0. Following the path back towards the root brings us to the SCSI controller, at hardware path 10/0.
If I remember correctly, these hardware paths are documented on the server's exterior... but now it's time to open the K-class Service Manual:
http://ftp.parisc-linux.org/docs/platforms/A2375-90004.pdfWhat you want is the Path Addressing table on page 30 (Table 2-2).
It identifies the path 10.0 as "Core I/O card FW DIFF SCSI connector". The internal disks have smaller SCSI ID numbers, so our problem disks are probably external. It's time to use the old Eyeball Mark I: follow the HVD SCSI cable plugged into the Core I/O and find the SCSI disks on that cable with SCSI IDs set to 14 and 15.
The SCSI IDs on each slot of a Jamaica box are set using DIP switches. The switch pattern maps directly to the binary representation of the SCSI ID, i.e. 14 is ON-ON-ON-OFF and 15 is ON-ON-ON-ON.
MK
MK