All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* Not Included Into Kernel?
@ 2002-02-26 20:04 Dylan Egan
  0 siblings, 0 replies; 2+ messages in thread
From: Dylan Egan @ 2002-02-26 20:04 UTC (permalink / raw
  To: linux-kernel

This following patch from Leif Sawyer is not in 2.4.18 and is indeed needed

diff -u --recursive linux-2.4.18-pre3/drivers/usb/storage/transport.c
linux/drivers/usb/storage/transport.c
--- linux-2.4.18-pre3/drivers/usb/storage/transport.cThu Jan 10 13:08:18
2002
+++ linux/drivers/usb/storage/transport.cThu Jan 10 13:13:36 2002
@@ -1157,7 +1157,7 @@
    	le32_to_cpu(bcs.Signature), bcs.Tag,
    	bcs.Residue, bcs.Status);
  	if (bcs.Signature != cpu_to_le32(US_BULK_CS_SIGN) ||
-    	bcs.Tag != bcb.Tag ||
+    	((bcs.Tag != bcb.Tag ) && (!(us->flags & US_FL_SL_IDE_BUG))) ||
     	 bcs.Status > US_BULK_STAT_PHASE || partial != 13) {
  	US_DEBUGP("Bulk logical error\n");
  	return USB_STOR_TRANSPORT_ERROR;
diff -u --recursive linux-2.4.18-pre3/drivers/usb/storage/unusual_devs.h
linux/drivers/usb/storage/unusual_devs.h
--- linux-2.4.18-pre3/drivers/usb/storage/unusual_devs.hThu Jan 10
13:08:18 2002
+++ linux/drivers/usb/storage/unusual_devs.hThu Jan 10 13:13:36 2002
@@ -110,6 +110,28 @@
                 "LS-120 Camera",
                 US_SC_UFI, US_PR_CBI, NULL, 0),

+/* Reported by Peter Wächtler <pwaechtler@loewe-komp.de> */
+UNUSUAL_DEV(  0x04ce, 0x0002, 0x0074, 0x0074,
+"ScanLogic",
+"SL11R-IDE 0049SQFP-1.2 A002",
+US_SC_SCSI, US_PR_BULK, NULL,
+US_FL_FIX_INQUIRY ),
+
+/* Reported by Leif Sawyer <leif@gci.net> */
+UNUSUAL_DEV(  0x04ce, 0x0002, 0x0240, 0x0240,
+"H45 ScanLogic",
+"SL11R-IDE 9951SQFP-1.2 K004",
+US_SC_SCSI, US_PR_BULK, NULL,
+US_FL_FIX_INQUIRY | US_FL_SL_IDE_BUG ),
+
+/* Reported by Rene Engelhard <mail@rene-engelhard.de> and
+    Dylan Egan <crack_me@bigpond.com.au> */
+UNUSUAL_DEV(  0x04ce, 0x0002, 0x0260, 0x0260,
+"ScanLogic",
+"SL11R-IDE unknown HW rev",
+US_SC_SCSI, US_PR_BULK, NULL,
+US_FL_SL_IDE_BUG ),
+
  /* Most of the following entries were developed with the help of
   * Shuttle/SCM directly.
   */
diff -u --recursive linux-2.4.18-pre3/drivers/usb/storage/usb.h
linux/drivers/usb/storage/usb.h
--- linux-2.4.18-pre3/drivers/usb/storage/usb.hThu Nov 22 10:49:34 2001
+++ linux/drivers/usb/storage/usb.hThu Jan 10 13:13:36 2002
@@ -101,6 +101,7 @@
  #define US_FL_IGNORE_SER      0x00000010 /* Ignore the serial number given
*/
  #define US_FL_SCM_MULT_TARG   0x00000020 /* supports multiple targets */
  #define US_FL_FIX_INQUIRY     0x00000040 /* INQUIRY response needs fixing
*/
+#define US_FL_SL_IDE_BUG      0x00000100 /* ScanLogic usb-ide workaround */

  #define USB_STOR_STRING_LEN 32

Regards,

Dylan.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* RE: Not Included Into Kernel?
@ 2002-02-26 20:26 Leif Sawyer
  0 siblings, 0 replies; 2+ messages in thread
From: Leif Sawyer @ 2002-02-26 20:26 UTC (permalink / raw
  To: Dylan Egan, linux-kernel

Dylan --

I'm working with Matt (who is the USB storage maintainer)
to get this into the mainline kernel.

Thanks

> -----Original Message-----
> From: Dylan Egan [mailto:crack_me@bigpond.com.au]
> Sent: Tuesday, February 26, 2002 11:04 AM
> To: linux-kernel@vger.kernel.org
> Subject: Not Included Into Kernel?
> 
> 
> This following patch from Leif Sawyer is not in 2.4.18 and is 
> indeed needed
> 
> diff -u --recursive linux-2.4.18-pre3/drivers/usb/storage/transport.c
> linux/drivers/usb/storage/transport.c
> --- linux-2.4.18-pre3/drivers/usb/storage/transport.cThu Jan 
> 10 13:08:18
> 2002
> +++ linux/drivers/usb/storage/transport.cThu Jan 10 13:13:36 2002
> @@ -1157,7 +1157,7 @@
>     	le32_to_cpu(bcs.Signature), bcs.Tag,
>     	bcs.Residue, bcs.Status);
>   	if (bcs.Signature != cpu_to_le32(US_BULK_CS_SIGN) ||
> -    	bcs.Tag != bcb.Tag ||
> +    	((bcs.Tag != bcb.Tag ) && (!(us->flags & US_FL_SL_IDE_BUG))) ||
>      	 bcs.Status > US_BULK_STAT_PHASE || partial != 13) {
>   	US_DEBUGP("Bulk logical error\n");
>   	return USB_STOR_TRANSPORT_ERROR;
> diff -u --recursive 
> linux-2.4.18-pre3/drivers/usb/storage/unusual_devs.h
> linux/drivers/usb/storage/unusual_devs.h
> --- linux-2.4.18-pre3/drivers/usb/storage/unusual_devs.hThu Jan 10
> 13:08:18 2002
> +++ linux/drivers/usb/storage/unusual_devs.hThu Jan 10 13:13:36 2002
> @@ -110,6 +110,28 @@
>                  "LS-120 Camera",
>                  US_SC_UFI, US_PR_CBI, NULL, 0),
> 
> +/* Reported by Peter Wächtler <pwaechtler@loewe-komp.de> */
> +UNUSUAL_DEV(  0x04ce, 0x0002, 0x0074, 0x0074,
> +"ScanLogic",
> +"SL11R-IDE 0049SQFP-1.2 A002",
> +US_SC_SCSI, US_PR_BULK, NULL,
> +US_FL_FIX_INQUIRY ),
> +
> +/* Reported by Leif Sawyer <leif@gci.net> */
> +UNUSUAL_DEV(  0x04ce, 0x0002, 0x0240, 0x0240,
> +"H45 ScanLogic",
> +"SL11R-IDE 9951SQFP-1.2 K004",
> +US_SC_SCSI, US_PR_BULK, NULL,
> +US_FL_FIX_INQUIRY | US_FL_SL_IDE_BUG ),
> +
> +/* Reported by Rene Engelhard <mail@rene-engelhard.de> and
> +    Dylan Egan <crack_me@bigpond.com.au> */
> +UNUSUAL_DEV(  0x04ce, 0x0002, 0x0260, 0x0260,
> +"ScanLogic",
> +"SL11R-IDE unknown HW rev",
> +US_SC_SCSI, US_PR_BULK, NULL,
> +US_FL_SL_IDE_BUG ),
> +
>   /* Most of the following entries were developed with the help of
>    * Shuttle/SCM directly.
>    */
> diff -u --recursive linux-2.4.18-pre3/drivers/usb/storage/usb.h
> linux/drivers/usb/storage/usb.h
> --- linux-2.4.18-pre3/drivers/usb/storage/usb.hThu Nov 22 
> 10:49:34 2001
> +++ linux/drivers/usb/storage/usb.hThu Jan 10 13:13:36 2002
> @@ -101,6 +101,7 @@
>   #define US_FL_IGNORE_SER      0x00000010 /* Ignore the 
> serial number given
> */
>   #define US_FL_SCM_MULT_TARG   0x00000020 /* supports 
> multiple targets */
>   #define US_FL_FIX_INQUIRY     0x00000040 /* INQUIRY 
> response needs fixing
> */
> +#define US_FL_SL_IDE_BUG      0x00000100 /* ScanLogic 
> usb-ide workaround */
> 
>   #define USB_STOR_STRING_LEN 32
> 
> Regards,
> 
> Dylan.
> 
> -
> To unsubscribe from this list: send the line "unsubscribe 
> linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-02-26 20:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-02-26 20:04 Not Included Into Kernel? Dylan Egan
  -- strict thread matches above, loose matches on Subject: below --
2002-02-26 20:26 Leif Sawyer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.