Hi!
When I do
cat /dev/zero > /dev/sda4, then ^C, cat does not terminate until I
un-plug my zip. This is with 2.3.99-pre6. I'll take a look....
Pavel
BTW is there good reason why this patch is not applied?
--- clean//drivers/usb/usb-storage.c Thu Apr 27 10:05:49 2000
+++ linux/drivers/usb/usb-storage.c Thu Apr 27 10:42:39 2000
@@ -1284,23 +1282,12 @@
emulated: TRUE
};
-static unsigned char sense_notready[] = {
- 0x70, /* current error */
- 0x00,
- 0x02, /* not ready */
- 0x00,
- 0x00,
- 0x0a, /* additional length */
- 0x00,
- 0x00,
- 0x00,
- 0x00,
- 0x04, /* not ready */
- 0x03, /* manual intervention */
- 0x00,
- 0x00,
- 0x00,
- 0x00
+static unsigned char sense_notready[16] = {
+ [0] = 0x70, /* current error */
+ [2] = 0x02, /* not ready */
+ [5] = 0x0a, /* additional length */
+ [10] = 0x04, /* not ready */
+ [11] = 0x03, /* manual intervention */
};
static int usb_stor_control_thread(void * __us)
--
I'm [EMAIL PROTECTED] "In my country we have almost anarchy and I don't care."
Panos Katsaloulis describing me w.r.t. patents me at [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]