diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2008-03-11 22:32:52 +0100 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2008-03-14 00:56:59 +0100 |
commit | 6e45ef4c7aeefbf97df748866cd1b24f73b86160 (patch) | |
tree | 3a7b957448b58c3802d20bbac459c4f9a9cd29d8 | |
parent | 2aa9ff7fc5bc41d4b77c2da02086259a86f3d472 (diff) | |
download | linux-3.10-6e45ef4c7aeefbf97df748866cd1b24f73b86160.tar.gz linux-3.10-6e45ef4c7aeefbf97df748866cd1b24f73b86160.tar.bz2 linux-3.10-6e45ef4c7aeefbf97df748866cd1b24f73b86160.zip |
ieee1394: sbp2: fix for SYM13FW500 bridge (Datafab disk)
Fix I/O errors due to SYM13FW500's inability to handle larger request
sizes. Reported by Piergiorgio Sartor <piergiorgio.sartor@nexgo.de> for
firewire-sbp2 in https://bugzilla.redhat.com/show_bug.cgi?id=436879
This fix is necessary because sbp2's default request size limit has been
lifted since 2.6.25-rc1.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Jarod Wilson <jwilson@redhat.com>
-rw-r--r-- | drivers/ieee1394/sbp2.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/ieee1394/sbp2.c b/drivers/ieee1394/sbp2.c index 9e2b1964d71..f53f72daae3 100644 --- a/drivers/ieee1394/sbp2.c +++ b/drivers/ieee1394/sbp2.c @@ -376,6 +376,11 @@ static const struct { .model_id = SBP2_ROM_VALUE_WILDCARD, .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS, }, + /* Datafab MD2-FW2 with Symbios/LSILogic SYM13FW500 bridge */ { + .firmware_revision = 0x002600, + .model_id = SBP2_ROM_VALUE_WILDCARD, + .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS, + }, /* iPod 4th generation */ { .firmware_revision = 0x0a2700, .model_id = 0x000021, |