Re: usb-storage, error reading the last 8 sectors, regression in 2.6.25-rc7

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Sergey Dolgov <solkaa@...>
Cc: <linux-kernel@...>, <linux-usb@...>
Date: Monday, March 31, 2008 - 9:58 pm

On Tue, 1 Apr 2008, Sergey Dolgov wrote:


The difference is interesting.  Here's the version that works:

[   23.902571] usb-storage: Command READ_10 (10 bytes)
[   23.902575] usb-storage:  28 00 00 ee f3 f8 00 00 08 00
[   23.902591] usb-storage: Bulk Command S 0x43425355 T 0x16 L 4096 F 128 Trg 0 LUN 0 CL 10
[   23.902598] usb-storage: usb_stor_bulk_transfer_buf: xfer 31 bytes
[   23.902704] usb-storage: Status code 0; transferred 31/31
[   23.902709] usb-storage: -- transfer complete
[   23.902713] usb-storage: Bulk command transfer result=0
[   23.902720] usb-storage: usb_stor_bulk_transfer_sglist: xfer 4096 bytes, 1 entries
[   23.903337] usb-storage: Status code 0; transferred 4096/4096
[   23.903343] usb-storage: -- transfer complete
[   23.903349] usb-storage: Bulk data transfer result 0x0
[   23.903354] usb-storage: Attempting to get CSW...
[   23.903359] usb-storage: usb_stor_bulk_transfer_buf: xfer 13 bytes
[   23.903448] usb-storage: Status code 0; transferred 13/13
[   23.903453] usb-storage: -- transfer complete
[   23.903457] usb-storage: Bulk status result = 0
[   23.903463] usb-storage: Bulk Status S 0x53425355 T 0x16 R 0 Stat 0x0
[   23.903469] usb-storage: scsi cmd done, result=0x0

And here's the version that fails:

[   10.760357] usb-storage: Command READ_10 (10 bytes)
[   10.760361] usb-storage:  28 00 00 ee f3 f8 00 00 07 00
[   10.760376] usb-storage: Bulk Command S 0x43425355 T 0x16 L 3584 F 128 Trg 0 LUN 0 CL 10
[   10.760384] usb-storage: usb_stor_bulk_transfer_buf: xfer 31 bytes
[   10.760466] usb-storage: Status code 0; transferred 31/31
[   10.760471] usb-storage: -- transfer complete
[   10.760475] usb-storage: Bulk command transfer result=0
[   10.760482] usb-storage: usb_stor_bulk_transfer_sglist: xfer 3584 bytes, 1 entries
[   10.761089] usb-storage: Status code 0; transferred 3584/3584
[   10.761094] usb-storage: -- transfer complete
[   10.761099] usb-storage: Bulk data transfer result 0x0
[   10.761104] usb-storage: Attempting to get CSW...
[   10.761109] usb-storage: usb_stor_bulk_transfer_buf: xfer 13 bytes
[   10.761214] usb-storage: Status code -32; transferred 0/13
[   10.761220] usb-storage: clearing endpoint halt for pipe 0xc0010280
[   10.761231] usb-storage: usb_stor_control_msg: rq=01 rqtype=02 value=0000 index=82 len=0
[   10.761337] usb-storage: usb_stor_clear_halt: result = 0
[   10.761342] usb-storage: Attempting to get CSW (2nd try)...
[   10.761348] usb-storage: usb_stor_bulk_transfer_buf: xfer 13 bytes
[   10.761461] usb-storage: Status code 0; transferred 13/13
[   10.761466] usb-storage: -- transfer complete
[   10.761470] usb-storage: Bulk status result = 0
[   10.761477] usb-storage: Bulk Status S 0x53425355 T 0x16 R 0 Stat 0x1
[   10.761483] usb-storage: -- transport indicates command failure

The difference is that the first reads 8 sectors starting 8 sectors 
from the end of the device, whereas the second reads only 7 sectors 
starting from the same place.  There's no reason this should fail; the 
device reports sense key = 4, ASC = 0x11, ASCQ = 0, which means 
Hardware error, Unrecoverable Read Error.  Of course that is nonsense.

Nevertheless, it's clear that the problem has nothing to do with the 
USB stack.  The real source of the problem lies in the device itself, 
for reporting a bogus error when in fact nothing went wrong.  That may 
also explain why you don't always see the problem -- sometimes the 
device works the way it ought to.

It's being triggered by a change in some other part of the system.  I
don't know who is responsible for those reads at the end of the device.
It could be the partition detection code (EFI GUID does that sort of
thing), or it could even be a userspace program (part of udev perhaps; 
I think /lib/udev/vol_id reads strange parts of a disk).

Alan Stern

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: usb-storage, error reading the last 8 sectors, regressio..., Alan Stern, (Mon Mar 31, 9:58 pm)