Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2002 11:24 AM
02-15-2002 11:24 AM
SCSI: Async write error -- dev: b 31 0x022000, errno: 16, resid: 8192,
blkno: 32, sectno: 64, offset: 32768, bcount: 8192.
How do you find out what device the message is talking about. I don't understand how to calc this: what is the secret?
Thanks,
Bob
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2002 11:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2002 11:38 AM
02-15-2002 11:38 AM
Re: HELP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2002 11:42 AM
02-15-2002 11:42 AM
Re: HELP
Now I know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2002 11:53 AM
02-15-2002 11:53 AM
Re: HELP
If you get an error such as the following in your syslog:
SCSI request timed out LBOLT; 12345678, DEV;1F030000
Here's how you decode --
Don't worry about the LBOLT # it is a timestamp
Take the number after the DEV;
In this case 1F030000
First - take away the last 2 digits -- you don't need them.
YOu now have 1F0300 --> Note that this is in HEXADECIMAL notation
1F = Major Number - Hex 1F = Decimal 31 -> use this in your lsdev command
03 in Hex = 3 decimal = Controller 3 = c3
0 in hex = 0 decimal = target 0 = t0
(Note that this can be in the range 0-F Hex, or 0-15 decimal = the # of possible devices on FWD SCSI controller)
0 in hex = 0 decimal = lun 0 = d0
(Note that this also can be in the range 0-F Hex, or 0-15 decimal)
So this is c3t0d0
(Thanks to a gentleman at the HP Response Center that sent this to me long ago)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2002 11:55 AM
02-15-2002 11:55 AM
Re: HELP
Here is the link from hp itrc on how to decode.
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=7961aea81db513553c/screen=ckiDisplayDocument?docId=200000048373145
Hope this helps.
Regds