Re: cvs commit: src/sys/dev/usb umass.c usbdevs

2008-02-21 Thread bkelly
On Thu, 21 Feb 2008 19:07:08 + (UTC), Remko Lodder <[EMAIL PROTECTED]> wrote: > remko 2008-02-21 19:07:08 UTC > > FreeBSD src repository > > Modified files: > sys/dev/usb umass.c usbdevs > Log: > Add support for the VIA USB2IDE bridge [1]. > > PR: us

Re: cvs commit: src/sys/dev/usb umass.c usbdevs

2007-07-04 Thread Remko Lodder
Warner Losh wrote: > imp 2007-07-05 04:05:52 UTC > > FreeBSD src repository > > Modified files: > sys/dev/usb umass.c usbdevs > Log: > Add support for Western Digital MyBook external enclosures. They need > this quirk to work. > > Submitted by: Dierk Sacher >

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread Eric Anderson
On 02/28/07 04:55, M. Warner Losh wrote: In message: <[EMAIL PROTECTED]> "Poul-Henning Kamp" <[EMAIL PROTECTED]> writes: : In message <[EMAIL PROTECTED]>, "M. Warner Losh" writes : : : : >Others have observed that the number of sectors on a disk should be : >even. Therefore if maxs

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Poul-Henning Kamp" <[EMAIL PROTECTED]> writes: : In message <[EMAIL PROTECTED]>, "M. Warner Losh" writes : : : : >Others have observed that the number of sectors on a disk should be : >even. Therefore if maxsectors returned is even, it implies an odd :

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, "M. Warner Losh" writes : >Others have observed that the number of sectors on a disk should be >even. Therefore if maxsectors returned is even, it implies an odd >number of sectors and should be adjusted. Hmm, although generally true for present day disks, I don't

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Poul-Henning Kamp" <[EMAIL PROTECTED]> writes: : In message <[EMAIL PROTECTED]>, "M. Warner Losh" writes : : : : >: > Create a new quirk READ_CAPACITY_OFFBY1 : >: : >: A better idea would be to have scsi_da.c try to read the : >: last sector and cho

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> [EMAIL PROTECTED] (Dag-Erling Smørgrav) writes: : Warner Losh <[EMAIL PROTECTED]> writes: : > Log: : > Some USB mass storage devices return the number of sectors in response : > to a READ_CAPACITY request rather than the maximum sector (off by one :

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, "M. Warner Losh" writes : >: > Create a new quirk READ_CAPACITY_OFFBY1 >: >: A better idea would be to have scsi_da.c try to read the >: last sector and chop it if it fails. > >Why is that a better idea? Because it will work automatically and not rely on us pre

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Daniel O'Connor" <[EMAIL PROTECTED]> writes: : On Wednesday 28 February 2007 09:03, Warner Losh wrote: : > Create a new quirk READ_CAPACITY_OFFBY1 and add a quirk for the : > SanDISK ImageMate that I have that suffers from this problem (the : > SDD

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Daniel O'Connor" <[EMAIL PROTECTED]> writes: : On Wednesday 28 February 2007 09:03, Warner Losh wrote: : > Create a new quirk READ_CAPACITY_OFFBY1 and add a quirk for the : > SanDISK ImageMate that I have that suffers from this problem (the : > SDD

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> "Poul-Henning Kamp" <[EMAIL PROTECTED]> writes: : In message <[EMAIL PROTECTED]>, Warner Losh write : s: : : > Some USB mass storage devices return the number of sectors in response : > to a READ_CAPACITY request rather than the maximum sector (off by

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-28 Thread Dag-Erling Smørgrav
Warner Losh <[EMAIL PROTECTED]> writes: > Log: > Some USB mass storage devices return the number of sectors in response > to a READ_CAPACITY request rather than the maximum sector (off by one > problem). This causes a huge cascade of errors as the geom tasting > code tries to read the la

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-27 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Warner Losh write s: > Some USB mass storage devices return the number of sectors in response > to a READ_CAPACITY request rather than the maximum sector (off by one > problem). This causes a huge cascade of errors as the geom tasting > code tries to read the l

Re: cvs commit: src/sys/dev/usb umass.c

2007-02-27 Thread Daniel O'Connor
On Wednesday 28 February 2007 09:03, Warner Losh wrote: > Create a new quirk READ_CAPACITY_OFFBY1 and add a quirk for the > SanDISK ImageMate that I have that suffers from this problem (the > SDDR-31). It intercepts the READ_CAPACITY response and adjusts it > from number of sectors to max

Re: cvs commit: src/sys/dev/usb umass.c

2006-03-06 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Scott Long <[EMAIL PROTECTED]> writes: : M. Warner Losh wrote: : > In message: <[EMAIL PROTECTED]> : > Nate Lawson <[EMAIL PROTECTED]> writes: : > : Poul-Henning Kamp wrote: : > : > phk 2006-03-05 17:52:32 UTC : > : > : > : > FreeBS

Re: cvs commit: src/sys/dev/usb umass.c

2006-03-06 Thread Scott Long
M. Warner Losh wrote: In message: <[EMAIL PROTECTED]> Nate Lawson <[EMAIL PROTECTED]> writes: : Poul-Henning Kamp wrote: : > phk 2006-03-05 17:52:32 UTC : > : > FreeBSD src repository : > : > Modified files: : > sys/dev/usb umass.c : > Log: : > When we

Re: cvs commit: src/sys/dev/usb umass.c

2006-03-06 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Nate Lawson <[EMAIL PROTECTED]> writes: : Poul-Henning Kamp wrote: : > phk 2006-03-05 17:52:32 UTC : > : > FreeBSD src repository : > : > Modified files: : > sys/dev/usb umass.c : > Log: : > When we get an unknown ATAPI com

Re: cvs commit: src/sys/dev/usb umass.c

2006-03-05 Thread Nate Lawson
Poul-Henning Kamp wrote: phk 2006-03-05 17:52:32 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c Log: When we get an unknown ATAPI comand, try it even if it is not listed, in all likelyhood just passing it through will work. Revision Changes

Re: cvs commit: src/sys/dev/usb umass.c

2006-01-25 Thread Florent Thoumie
On Thursday 26 January 2006 02:23, Florent Thoumie wrote: > flz 2006-01-26 01:23:29 UTC > > FreeBSD src repository (ports committer) > > Modified files: > sys/dev/usb umass.c > Log: > - Add a umass quirk that should have been part of latest commit. That's the S

Re: cvs commit: src/sys/dev/usb umass.c usbdevs

2005-12-20 Thread Giorgos Keramidas
On 2005-12-21 00:08, Pav Lucistnik <[EMAIL PROTECTED]> wrote: > Giorgos Keramidas p??e v ?t 20. 12. 2005 v 23:07 +0200: > > /home/build/src/sys/dev/usb/umass.c: In function `umass_bbb_state': > > /home/build/src/sys/dev/usb/umass.c:1629: error: invalid initializer > > /home/build/src/sys/dev/usb/um

Re: cvs commit: src/sys/dev/usb umass.c usbdevs

2005-12-20 Thread Pav Lucistnik
Giorgos Keramidas píše v út 20. 12. 2005 v 23:07 +0200: > On 2005-12-20 16:21, Pav Lucistnik <[EMAIL PROTECTED]> wrote: > > pav 2005-12-20 16:21:18 UTC > > > > FreeBSD src repository (doc,ports committer) > > > > Modified files: > > sys/dev/usb umass.c usbdevs > > Log: >

Re: cvs commit: src/sys/dev/usb umass.c usbdevs

2005-12-20 Thread Giorgos Keramidas
On 2005-12-20 16:21, Pav Lucistnik <[EMAIL PROTECTED]> wrote: > pav 2005-12-20 16:21:18 UTC > > FreeBSD src repository (doc,ports committer) > > Modified files: > sys/dev/usb umass.c usbdevs > Log: > - Ignore incorrect CSW signatures on my PURE PocketDab 2000 player > >

Re: cvs commit: src/sys/dev/usb umass.c

2005-11-27 Thread Ceri Davies
On Sat, Nov 26, 2005 at 05:11:31PM +, Ian Dowse wrote: > iedowse 2005-11-26 17:11:31 UTC > > FreeBSD src repository > > Modified files: > sys/dev/usb umass.c > Log: > Revision 5.0 of the Sony DSC camera appears to require RBC commands > to be padded to 12 bytes in