From owner-freebsd-usb@FreeBSD.ORG Mon Jun 18 06:27:10 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DEAFC16A400 for ; Mon, 18 Jun 2007 06:27:10 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe06.swip.net [212.247.154.161]) by mx1.freebsd.org (Postfix) with ESMTP id 8284613C487 for ; Mon, 18 Jun 2007 06:27:10 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [194.248.135.20] (account mc467741@c2i.net HELO laptop.lan) by mailfe06.swip.net (CommuniGate Pro SMTP 5.1.9) with ESMTPA id 522411373; Mon, 18 Jun 2007 08:27:08 +0200 From: Hans Petter Selasky To: Julian Elischer Date: Mon, 18 Jun 2007 08:27:05 +0200 User-Agent: KMail/1.9.5 References: <200705272235.46048.hselasky@c2i.net> <200706131104.47337.hselasky@c2i.net> <4672E722.507@elischer.org> In-Reply-To: <4672E722.507@elischer.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706180827.05958.hselasky@c2i.net> Cc: freebsd-usb@freebsd.org Subject: Re: reminder X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 06:27:11 -0000 On Friday 15 June 2007 21:23, Julian Elischer wrote: > The ball is in your court with respect to code cleanup before review.. > > Just a reminder in case you are waiting for us to review. > > Warner is doing a lot of cleaning in the existing code I notice... It might take some time. --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Jun 18 06:36:27 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D6DA16A421 for ; Mon, 18 Jun 2007 06:36:27 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe04.swip.net [212.247.154.97]) by mx1.freebsd.org (Postfix) with ESMTP id D7EF913C4AE for ; Mon, 18 Jun 2007 06:36:26 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [194.248.135.20] (account mc467741@c2i.net HELO laptop.lan) by mailfe04.swip.net (CommuniGate Pro SMTP 5.1.9) with ESMTPA id 521120508; Mon, 18 Jun 2007 08:36:25 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Mon, 18 Jun 2007 08:36:22 +0200 User-Agent: KMail/1.9.5 References: <467379C5.4020109@dobrohot.org> In-Reply-To: <467379C5.4020109@dobrohot.org> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706180836.22090.hselasky@c2i.net> Cc: Subject: Re: buildworld RELENG_6 with new USB stack X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 06:36:27 -0000 Hi, The "usbd" utility has been replaced by "devd". I will add a patch to the installer to clean this file. Just: rm /usr/src/usr.sbin/usbd/usbd.c touch /usr/src/usr.sbin/usbd/usbd.c echo "int main() { return 0; }" > /usr/src/usr.sbin/usbd/usbd.c Then try buildworld again. --HPS On Saturday 16 June 2007 07:48, Andrew Muhametshin wrote: > Hello > > It is impossible to buildworld with a new USB stack. > > > ================ > 1. > Update(csup RELENG_6) /usr/src in 2007-06-16 05:21 > > 2. > $ svn --username anonsvn --password anonsvn \ > checkout svn://svn.turbocat.net/i4b > <...> > Checked out revision 516. > > $cd i4b/trunk/i4b/FreeBSD.usb > $ make S=../src package > <...> > > $ make install > <...> > > 3. > cd /usr/src > make buildworld > <...>skip<...> > ===> usr.sbin/usbd (all) > cc -O2 -fno-strict-aliasing -pipe -march=athlon-mp -c > /usr/src/usr.sbin/usbd/usbd.c > /usr/src/usr.sbin/usbd/usbd.c:116: error: `USB_EVENT_CTRLR_ATTACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:116: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:116: error: (near initialization for > `event_names[0].type') > /usr/src/usr.sbin/usbd/usbd.c:116: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:116: error: (near initialization for > `event_names[0]') > /usr/src/usr.sbin/usbd/usbd.c:117: error: `USB_EVENT_CTRLR_DETACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:117: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:117: error: (near initialization for > `event_names[1].type') > /usr/src/usr.sbin/usbd/usbd.c:117: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:117: error: (near initialization for > `event_names[1]') > /usr/src/usr.sbin/usbd/usbd.c:118: error: `USB_EVENT_DRIVER_ATTACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:118: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:118: error: (near initialization for > `event_names[2].type') > /usr/src/usr.sbin/usbd/usbd.c:118: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:118: error: (near initialization for > `event_names[2]') > /usr/src/usr.sbin/usbd/usbd.c:119: error: `USB_EVENT_DRIVER_DETACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:119: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:119: error: (near initialization for > `event_names[3].type') > /usr/src/usr.sbin/usbd/usbd.c:119: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:119: error: (near initialization for > `event_names[3]') > /usr/src/usr.sbin/usbd/usbd.c:120: error: `USB_EVENT_DEVICE_ATTACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:120: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:120: error: (near initialization for > `event_names[4].type') > /usr/src/usr.sbin/usbd/usbd.c:120: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:120: error: (near initialization for > `event_names[4]') > /usr/src/usr.sbin/usbd/usbd.c:121: error: `USB_EVENT_DEVICE_DETACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:121: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:121: error: (near initialization for > `event_names[5].type') > /usr/src/usr.sbin/usbd/usbd.c:121: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:121: error: (near initialization for > `event_names[5]') > /usr/src/usr.sbin/usbd/usbd.c:122: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:122: error: (near initialization for > `event_names[6]') > /usr/src/usr.sbin/usbd/usbd.c:208: warning: "struct usb_event" declared > inside parameter list > /usr/src/usr.sbin/usbd/usbd.c:208: warning: its scope is only this > definition or declaration, which is probably not what you want > /usr/src/usr.sbin/usbd/usbd.c:567: warning: "struct usb_event" declared > inside parameter list > /usr/src/usr.sbin/usbd/usbd.c:568: error: conflicting types for > 'print_event' > /usr/src/usr.sbin/usbd/usbd.c:208: error: previous declaration of > 'print_event' was here > /usr/src/usr.sbin/usbd/usbd.c:568: error: conflicting types for > 'print_event' > /usr/src/usr.sbin/usbd/usbd.c:208: error: previous declaration of > 'print_event' was here > /usr/src/usr.sbin/usbd/usbd.c: In function `print_event': > /usr/src/usr.sbin/usbd/usbd.c:570: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:571: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:575: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:581: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:583: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:584: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:585: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:609: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:610: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:611: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:612: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:613: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:615: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:616: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c: In function `process_event_queue': > /usr/src/usr.sbin/usbd/usbd.c:847: error: storage size of 'events' isn't > known > /usr/src/usr.sbin/usbd/usbd.c:852: error: storage size of 'the_event' > isn't known > *** Error code 1 > > _______________________________________________ > freebsd-usb@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-usb > To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Mon Jun 18 07:05:08 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6B6616A421; Mon, 18 Jun 2007 07:05:08 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by mx1.freebsd.org (Postfix) with ESMTP id 33DC913C448; Mon, 18 Jun 2007 07:05:08 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [194.248.135.20] (account mc467741@c2i.net HELO laptop.lan) by mailfe01.swip.net (CommuniGate Pro SMTP 5.1.9) with ESMTPA id 502610099; Mon, 18 Jun 2007 09:05:06 +0200 From: Hans Petter Selasky To: Warner Losh Date: Mon, 18 Jun 2007 09:05:04 +0200 User-Agent: KMail/1.9.5 References: <200706141156.18290.hselasky@c2i.net> <20070614231645.GC96936@elvis.mu.org> <20070614.175531.71089195.imp@bsdimp.com> In-Reply-To: <20070614.175531.71089195.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706180905.04587.hselasky@c2i.net> Cc: freebsd-usb@freebsd.org Subject: Re: HPS USB stack API change X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 07:05:08 -0000 On Friday 15 June 2007 01:55, Warner Losh wrote: > From: Alfred Perlstein > Subject: Re: HPS USB stack API change > Date: Thu, 14 Jun 2007 16:16:45 -0700 > > > * Hans Petter Selasky [070614 02:56] wrote: > > > Hi all! > > > > > > I'm planning to add another argument to "usbd_start_hardware()", which > > > is a delay value that gives the delay in microseconds or maybe > > > milliseconds before the transfer is actually queued. This can be used > > > to reduce the polling rate on BULK-IN transfers among other things, to > > > reduce the overall power usage, and to safely create infinite polling > > > loops without fearing BUS overusage in case of failure conditions. > > > > > > For example: > > > > > > usbd_start_hardware(xfer, 200000); //200 ms delay > > > > > > A delay value of zero indicates no delay. > > > > Sounds like a good idea. > > > > > I plan to implement this re-using the timeout callout. > > > > > > Any comments ? > > > > Can't comment as I'm not that familiar with the existing underlying > > code. > > I think so too. I was wondering if there's really a benefit from > having a timeout + queue mechanism for most devices. For more > isochronous things, that need to play out data at a constant rate to > the device, it would certainly be convenient to be able to schedule > more than one buffer at a time, especially if the granularity of the > callback could be improved beyond 1/HZ. I don't know enough about the > host controllers to know if there would be the ability to schedule > transfers that far in advance or not... > > So it seems like it would be useful. Not sure it would solve the > problem you present, but even so... > Ok, I implemented this by extending the functionality of "bInterval". By setting "xfer->interval" before a transfer, you can introduce a pre-delay. This is very useful for infinite polling loops and USB power saving for BULK-IN. See: http://perforce.freebsd.org/chv.cgi?CH=121894 --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Jun 18 07:20:33 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBAB816A400 for ; Mon, 18 Jun 2007 07:20:33 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe11.swip.net [212.247.155.65]) by mx1.freebsd.org (Postfix) with ESMTP id 4676C13C44B for ; Mon, 18 Jun 2007 07:20:33 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [194.248.135.20] (account mc467741@c2i.net HELO laptop.lan) by mailfe11.swip.net (CommuniGate Pro SMTP 5.1.9) with ESMTPA id 352847970; Mon, 18 Jun 2007 09:20:31 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org User-Agent: KMail/1.9.5 References: <467379C5.4020109@dobrohot.org> In-Reply-To: <467379C5.4020109@dobrohot.org> MIME-Version: 1.0 Content-Disposition: inline Date: Mon, 18 Jun 2007 09:20:29 +0200 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 7bit Message-Id: <200706180920.29549.hselasky@c2i.net> Cc: Subject: Re: buildworld RELENG_6 with new USB stack X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 07:20:33 -0000 Hi, Could you do a "svn update". Make a new package, install the package, and do a buildworld again? --HPS On Saturday 16 June 2007 07:48, Andrew Muhametshin wrote: > Hello > > It is impossible to buildworld with a new USB stack. > > > ================ > 1. > Update(csup RELENG_6) /usr/src in 2007-06-16 05:21 > > 2. > $ svn --username anonsvn --password anonsvn \ > checkout svn://svn.turbocat.net/i4b > <...> > Checked out revision 516. > > $cd i4b/trunk/i4b/FreeBSD.usb > $ make S=../src package > <...> > > $ make install > <...> > > 3. > cd /usr/src > make buildworld > <...>skip<...> > ===> usr.sbin/usbd (all) > cc -O2 -fno-strict-aliasing -pipe -march=athlon-mp -c > /usr/src/usr.sbin/usbd/usbd.c > /usr/src/usr.sbin/usbd/usbd.c:116: error: `USB_EVENT_CTRLR_ATTACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:116: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:116: error: (near initialization for > `event_names[0].type') > /usr/src/usr.sbin/usbd/usbd.c:116: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:116: error: (near initialization for > `event_names[0]') > /usr/src/usr.sbin/usbd/usbd.c:117: error: `USB_EVENT_CTRLR_DETACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:117: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:117: error: (near initialization for > `event_names[1].type') > /usr/src/usr.sbin/usbd/usbd.c:117: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:117: error: (near initialization for > `event_names[1]') > /usr/src/usr.sbin/usbd/usbd.c:118: error: `USB_EVENT_DRIVER_ATTACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:118: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:118: error: (near initialization for > `event_names[2].type') > /usr/src/usr.sbin/usbd/usbd.c:118: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:118: error: (near initialization for > `event_names[2]') > /usr/src/usr.sbin/usbd/usbd.c:119: error: `USB_EVENT_DRIVER_DETACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:119: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:119: error: (near initialization for > `event_names[3].type') > /usr/src/usr.sbin/usbd/usbd.c:119: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:119: error: (near initialization for > `event_names[3]') > /usr/src/usr.sbin/usbd/usbd.c:120: error: `USB_EVENT_DEVICE_ATTACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:120: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:120: error: (near initialization for > `event_names[4].type') > /usr/src/usr.sbin/usbd/usbd.c:120: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:120: error: (near initialization for > `event_names[4]') > /usr/src/usr.sbin/usbd/usbd.c:121: error: `USB_EVENT_DEVICE_DETACH' > undeclared here (not in a function) > /usr/src/usr.sbin/usbd/usbd.c:121: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:121: error: (near initialization for > `event_names[5].type') > /usr/src/usr.sbin/usbd/usbd.c:121: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:121: error: (near initialization for > `event_names[5]') > /usr/src/usr.sbin/usbd/usbd.c:122: error: initializer element is not > constant > /usr/src/usr.sbin/usbd/usbd.c:122: error: (near initialization for > `event_names[6]') > /usr/src/usr.sbin/usbd/usbd.c:208: warning: "struct usb_event" declared > inside parameter list > /usr/src/usr.sbin/usbd/usbd.c:208: warning: its scope is only this > definition or declaration, which is probably not what you want > /usr/src/usr.sbin/usbd/usbd.c:567: warning: "struct usb_event" declared > inside parameter list > /usr/src/usr.sbin/usbd/usbd.c:568: error: conflicting types for > 'print_event' > /usr/src/usr.sbin/usbd/usbd.c:208: error: previous declaration of > 'print_event' was here > /usr/src/usr.sbin/usbd/usbd.c:568: error: conflicting types for > 'print_event' > /usr/src/usr.sbin/usbd/usbd.c:208: error: previous declaration of > 'print_event' was here > /usr/src/usr.sbin/usbd/usbd.c: In function `print_event': > /usr/src/usr.sbin/usbd/usbd.c:570: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:571: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:575: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:581: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:583: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:584: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:585: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:609: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:610: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:611: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:612: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:613: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:615: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c:616: error: dereferencing pointer to > incomplete type > /usr/src/usr.sbin/usbd/usbd.c: In function `process_event_queue': > /usr/src/usr.sbin/usbd/usbd.c:847: error: storage size of 'events' isn't > known > /usr/src/usr.sbin/usbd/usbd.c:852: error: storage size of 'the_event' > isn't known > *** Error code 1 > > _______________________________________________ > freebsd-usb@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-usb > To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Mon Jun 18 11:08:56 2007 Return-Path: X-Original-To: freebsd-usb@FreeBSD.org Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9560916A4A7 for ; Mon, 18 Jun 2007 11:08:56 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7ED0413C484 for ; Mon, 18 Jun 2007 11:08:56 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5IB8uvq017819 for ; Mon, 18 Jun 2007 11:08:56 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5IB8rCw017812 for freebsd-usb@FreeBSD.org; Mon, 18 Jun 2007 11:08:54 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 18 Jun 2007 11:08:54 GMT Message-Id: <200706181108.l5IB8rCw017812@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-usb@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 11:08:56 -0000 Current FreeBSD problem reports Critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_fs on externa o usb/91629 usb usbd_abort_pipe() may result in infinite loop 2 problems total. Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/40792 usb signals lead to data loss on device ugen o usb/46176 usb [panic] umass causes kernel panic if device removed be o i386/46371 usb USB controller cannot be initialized on IBM Netfinity o bin/57255 usb usbd and multi-function devices o usb/62088 usb [usb] Logitech Cordless/Optical Mouse not working o usb/62309 usb [ugen] [panic] panic: ugen(4) driver o usb/63621 usb [usb] USB MemoryStick Reader stalls/crashes system o usb/69006 usb [patch] Apple Cinema Display hangs USB ports o usb/71155 usb [usb] misbehaving usb-printer hangs processes, causes o usb/73307 usb [panic] Kernel panics on USB disconnect o usb/74771 usb [umass] mounting write-protected umass device as read/ o usb/75705 usb [panic] da0 attach / Optio S4 (with backtrace) o usb/75797 usb 5.3-STABLE(2005 1/4) detect USB headset, But can not f o usb/76395 usb USB printer does not work, usbdevs says "addr 0 should o usb/77184 usb kernel panic on USB device disconnect o usb/77294 usb ucom + ulpcom panic o usb/77940 usb [quirk] [patch] insertion of usb keyboard panics syste o usb/78989 usb please add USB keyboard support to install CD's o usb/79140 usb WD Firewire/USB Combo hangs under load on USB interfac o usb/79269 usb USB ohci da0 plug/unplug causes crashes and lockups. o usb/79287 usb UHCI hang after interrupt transfer o usb/79524 usb printing to Minolta PagePro 1[23]xxW via USB fails wit o usb/79722 usb [usb] wrong alignments in ehci.h o usb/80040 usb [hang] Use of sound mixer causes system freeze with ua o usb/80361 usb mounting of usb-stick fails o usb/80829 usb possible panic when loading USB-modules o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus o usb/82350 usb [usb] null pointer dereference in USB stack o usb/82520 usb Reboot when USL101 connected s usb/82569 usb [usb] USB mass storage plug/unplug causes system panic o usb/82660 usb EHCI: I/O stuck in state 'physrd'/panic o usb/83504 usb [usb] SpeedTouch USB stop working on recent current (a o usb/83563 usb [panic] Page Fault while detaching Mpman Usb device o usb/83677 usb [usb] usb controller often not detected (Sun W2100z) o usb/83756 usb Microsoft Intellimouse Explorer 4.0A doesn't work. o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/84326 usb [umass] Panic trying to connect SCSI tape drive via US o usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/84936 usb install - usb keyboard not recognized o usb/86031 usb need support usb nic rt2500 in my 5.4 STABLE o usb/86767 usb [usb] bogus "slice starts beyond end of the disk:..." o usb/87099 usb panic: ohci_add_done: addr 0x000d1bf0 not found o usb/88743 usb [hang] USB makes kernel hang at boot (regression in 6. o usb/88966 usb kldunload ucom.ko returns "Device busy" error. o usb/89003 usb LaCie Firewire drive not properly supported under 6.0 o usb/89954 usb [usb] USB Disk driver race condition? o usb/90162 usb [usb] [patch] Add support for the MS Wireless USB Mous o usb/90700 usb Kernel panic on connect/mount/use umass device o usb/91238 usb USB tape unit fails to write a second tape file to the o usb/91263 usb [patch] USB quirk needed for Logitec USB Hard disk LHD o usb/91283 usb booting very slow with usb devices connection (regress o usb/91538 usb Unable to print to EPSON CX3500 o usb/91906 usb FreeBSD hangs while booting with USB legacy support on o usb/92052 usb usbd causes defunct process with busy file-handle o kern/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92142 usb SET_ADDR_FAILED and SHORT_XFER errors from usb drivers o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w o usb/93408 usb hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes choppy m o usb/93640 usb device ehci causes interrupt storm on this MSI amd64 m o usb/93828 usb ohci causes panic on boot (HP Pavillion d4100e) o usb/94166 usb btx halted with a flashcard plugged o usb/94384 usb kernel panic with usb2 hardware o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/94742 usb [umass] [patch] umass driver does not recognise YANO e o usb/94813 usb mounting write-protected umass device freezes computer o usb/94897 usb Kernel Panic when cleanly unmounting USB disk o usb/95131 usb Boot/setup process does not accept key strokes o usb/95348 usb USB keyboard unplug causes noise on screen o usb/95562 usb Write Stress in USB Mass drive cause: [vinvalbuf: dir o usb/95636 usb [boot] 5 minute delay at boot when using VT6205 based o usb/96120 usb USB mouse not always detected o usb/96224 usb [usb] mount_msdosfs cause page fault in syncer process o usb/96457 usb fatback on umass = reboot o usb/97286 usb MS Wireless Intellimouse Explorer 2.0 doesn't work o usb/99431 usb FreeBSD on MSI 6566E (Intel 845E motherboards) doesn't o usb/101096 usb [if_ural] USB WLAN occasionally causes kernel-panics d o usb/101752 usb [panic] 6.1-RELEASE kernel panic on usb device inserti o usb/102066 usb [ukbd] usb keyboard and multimedia keys don't work o usb/102096 usb /usr/sbin/usbd does not handle multiple devices in one o usb/103025 usb [usb] wrong detection of USB device for FreeBSD 6.1 an o usb/104292 usb system lockup on forced umount of usb-storage device o usb/104830 usb system crashes when copying data to umass devices o usb/105186 usb USB 2.0/ehci on FreeBSD 6.2-PRE/AMD64 crashes box o usb/106615 usb [uftdi] uftdi module does not automatically load with o usb/106648 usb [hang] USB Floppy on D1950 10 min Hang on Insert w/o F o usb/106832 usb USB HP printer is not detected by kernel when ACPI ena o usb/107101 usb [umass] [patch] Quirk for Denver MP3 player o usb/107248 usb [PATCH] scsi_da.c quirk for Cowon iAUDIO X5 MP3 player o usb/107446 usb [umass] umass problems (usb and fw disks) o usb/107827 usb [panic] ohci_add_done addr not found o usb/107848 usb problem with samsung flash o usb/107924 usb [patch] usbd(8) does not call detach o usb/108097 usb [usbgen] [patch] ADMtek 851X USB-to-LAN adapter o usb/108513 usb [umass] Creative MuVo TX FM fails in 6.2-RELEASE (regr o usb/109274 usb [usb] MCP55 USB Controller fails to attach in AMD64 Cu o usb/109397 usb [panic] on boot from USB flash o usb/110122 usb [ugen] [patch] usb_interrupt_read does not respect tim o usb/110856 usb [ugen] [patch] interrupt in msgs are truncated when bu o usb/110988 usb [umass] [patch] Handling of quirk IGNORE_RESIDUE is um o kern/111753 usb [uhid] Replicable system panic involving UHID driver o usb/112568 usb USB mode may wrong when mounting psp o usb/112631 usb Problem with SONY DSC-S80 camera o usb/112640 usb [usb] Kernel freezes when writing a file to an ex2fs f o usb/113629 usb Dropped USB keyboard events o usb/113672 usb Kernelpanic 107 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem s usb/32653 usb Added patches to improve USB scanner supportOB o usb/40948 usb [usb] USB HP CDW8200 does not work o usb/48342 usb [PATCH] usbd dynamic device list. o kern/51958 usb [usb] [patch] update for urio driver o kern/52026 usb [usb] feature request: umass driver support for InSyst o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o kern/59698 usb [kbd] [patch] Rework of ukbd HID to AT code translatio f usb/60248 usb [patch] Problem with USB printer HP LaserJet 1300 o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o kern/62257 usb [umass] card reader UCR-61S2B is only half-supported o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops input on usb- o kern/66547 usb [usb] Palm Tungsten T USB does not initialize correctl o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o usb/70942 usb [usb] Genius Wireless USB mouse: moused doesn't work c o usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) detach is no o usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) communicatio o usb/71455 usb [usb] Slow USB umass performance of 5.3 o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots o usb/72380 usb [usb] USB does not work [dual Celeron Abit] o usb/72732 usb [patch] Kyocera 7135 quirk. o usb/72733 usb Kyocera 7135 Palm OS connection problem. o usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse not working in o usb/74211 usb USB flash drive causes CAM status 0x4 on 4.10Release f usb/74358 usb [umass] unplugging at boot time an umass device crashe f usb/74453 usb Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) doe o usb/74557 usb imation 500mb usb key can only be written halfway on f o usb/74609 usb [umodem] [patch] allowing cdma modems to work at full o usb/74849 usb [usbdevs] [patch] Samsung SPH-i500 does not attach pro o usb/74880 usb [ucom] [patch] Samsung N400 cellphone/acm fails to ata o kern/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75800 usb ucom1: init failed STALLED error in time of sync with o usb/75928 usb Cytronix SmartMedia card (SMC) reader has problems whe o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/76732 usb Mouse problems with USB KVM Switch f usb/78984 usb Creative MUVO umass failure o usb/79723 usb [usb] prepare for high speed isochronous transfers o usb/79725 usb [usb] [patch] USB device speed is not double-checked o usb/79893 usb [umass] [patch] new usbdevs/umass quirks derived from o usb/80010 usb [aue] [patch] add support for the AEI USB to LAN adapt f usb/80773 usb "usbd_get_string()" could have taken a length paramete o usb/80774 usb have "usbd_find_desc" in line with the other "usbd_fin o usb/80776 usb [udav] UDAV device driver shouldn't use usb_add_task o usb/80777 usb usb_rem_task() should wait for callback to complete? o usb/80854 usb suggestion for new iface-no-probe mechanism o usb/80935 usb uvisor.c is not work with CLIE TH55. f usb/81621 usb external hd hangs under load on ehci o usb/82436 usb [usbdevs] [patch] USL101 Host-to-Host bridge support o o usb/83022 usb ALI USB 2.0 EHCI Controller is not detected o usb/83863 usb Communication problem between opensc/openct via USB wi o usb/85067 usb Cannot attach ScanJet 4300C to usb device o usb/85992 usb [uhid] [patch] USB stops working when trying to read f o usb/86195 usb [usbdevs] [patch] allow USB Ethernet Adaptor "ELECOM L o usb/86298 usb Known good USB mouse won't work with correct settings o usb/86438 usb Fix for non-working iPod over USB is in NetBSD CVS o usb/87224 usb Cannot mount USB Zip750 o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/88408 usb [axe] axe0 read PHY failed o usb/88939 usb [usbdevs] [patch] Fix cheapy Myson USB-IDE adapter f usb/89087 usb usb external harddrive hangs with BBB reset failed, TI o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91811 usb Compact Flash in HP Photosmart 2610 return " Medium n o usb/91896 usb Serial Number of USB Memory Sticks is not passed throu o usb/92306 usb [quirk] [patch] Support for iRiver U10 USB media playe o usb/92403 usb [uplcom] uplcom.c needs new entry for 4.00 revision of o usb/92852 usb Vertical scroll not working properly on A4Tech WOP-49 o usb/93389 usb Digital Camera Pentax S60 don't work o usb/93872 usb [patch] SCSI quirk required for ELTA 8061 OL USB memor o usb/94132 usb [patch] quirk for CENTURY EX35QUAT disk enclosure o usb/94148 usb [usbdevs] [patch] Make if_cdce work with ARM linux han o usb/94311 usb [ugen][PATCH] allow interrupt IN transactions to be af o usb/94439 usb [patch] Add support for JNC MP3 Player o usb/94946 usb [uhub] [patch] code dynamic status size for status cha o usb/95037 usb USB disk didnt recognized on hot-plug. o usb/95173 usb [usb] cannot mount external usb harddisk VIA Technolog o usb/95241 usb [patch] add USB ID for OEM Pharos 360 GPS o usb/95805 usb [patch] Add Support for Siemens ES75 modem o usb/96381 usb [patch] add a quirk table entry for a flash ram usb st p usb/96546 usb [usb] [patch] Add support (quirk) for EasyMP3 EM732X U o usb/96714 usb [usbdevs] [patch] Update uvisor to support the Fossil o usb/97175 usb USB cardreader hangs system o usb/97472 usb [patch] add support for Olympus C150,D390 o usb/98343 usb BBB reset failed errors with Creative Muvo MP3 player; o usb/99419 usb external usb harddrive slow to accept o usb/99538 usb [kbd] while using USB keyboard default params of atkbd o usb/100746 usb [kbd] system does not boot due to USB keyboard problem o usb/101757 usb [patch] uhid.4: correct structure field names to match o usb/101761 usb [patch] usb.h: increase maximal size of report descrip o usb/101775 usb [libusbhid] [patch] possible error in report descripto o usb/102678 usb [kbd] Dell PowerEdge DRAC5 USB Keyboard does not work o usb/102976 usb Casio Exilim Digital Camera cause panic o usb/103046 usb [ulpt] [patch] ulpt event driven I/O with select(2) an o usb/103289 usb USB 2.0 problems on AMD LX-800 CPU and CS-5536 chipset o usb/103418 usb [usb] [patch] usbhidctl: add ability to write output a o usb/103917 usb USB driver reports "Addr 0 should never happen" o usb/104290 usb [patch] quirk: TOSHIBA DVD-RAM drive (libretto DVD Doc o usb/104352 usb [ural] ural driver doesnt work o usb/104645 usb Rave C-201 MP3 player does not communicate o usb/105065 usb [sata] SATA - USB Bridge o usb/105361 usb [panic] Kernel panic during unmounting mass storage (C o usb/105518 usb [patch] epson perfection 3490 usb scanner def o usb/106041 usb FreeBSD does not recognise Mustek BearPaw 2400TA usb s o usb/106070 usb devd recognizes ucom, but ttyU is the device actually o usb/106462 usb [usbdevs] Motorola U6 PEBL not recognized by system vi o usb/106538 usb [patch] Can not burn DVD on Sony DRX-820UL external US o usb/106621 usb [usb] DLINK DUB-E100 support broken o usb/106861 usb [PATCH]: usbdevs update: Add product ACER Zeevo BT-500 o usb/107243 usb [patch] Apacer USB Flash Drive quirk o usb/107388 usb [PATCH] Add utoppy device from NetBSD o usb/107496 usb USB device problem on RELENG_6_2 (SHORT_XFER) (regress o usb/107526 usb [usbdevs] Patch to support the Crystalfontz CFA-635 20 p usb/107642 usb [patch] add Ralink Technology RT2501USB/RT2601USB chip o kern/107665 usb [usb] [patch] uscanner support for epson stylus DX5050 o usb/107701 usb usbd ignores "detach" o usb/107935 usb [uplcom] panic while accessing /dev/cuaU0 o usb/108056 usb [ohci] Mouse gets powered off during device probe when o usb/108344 usb [panic] kernel with atausb panics when unplugging USB o usb/108427 usb [patch] quirk: Samsung MP0402H o usb/108509 usb [hang] FreeBSD hang at startup after ehci0 detected (C o usb/108810 usb [patch] quirk for I/O Magic USB flash drive "Giga Bank o usb/110197 usb [umass] Sony PSP umass device does not detach from EHC o usb/110477 usb [usbdevs] [patch] add Benq 3300U/4300U support to Free o usb/110681 usb [ukbd][patch] multiple keys will be repeated o usb/110991 usb [patch] QUIRK: Super Top IDE DEVICE (depends on usb/11 o usb/110992 usb [uftdi] [patch] Add Tactrix Openport support in uftdi o usb/111710 usb [patch] [usb] add support for Option GlobeTrotter 3G+ o usb/112392 usb [usbdevs] [patch] Make Epson Perfection 3490 recognize o usb/112461 usb ehci USB 2.0 doesn't work on nforce4 o usb/112463 usb problem with Samsung USB DVD writer, libscg and FreeBS o usb/112944 usb [patch] Bi-directional access to HP LaserJet 1010 prin o usb/113060 usb Samsung printer not working in bidirectional mode o usb/113290 usb Aditional information to usb/106070 o kern/113324 usb [usb] [patch] Add support for Garmin iQue 3600 in uvis o usb/113432 usb WARNING: attempt to net_add_domain(netgraph) after dom o usb/113454 usb EHCI error 6/EHCI Hub error 4 -CURRENT 139 problems total. From owner-freebsd-usb@FreeBSD.ORG Mon Jun 18 16:26:53 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA91C16A469; Mon, 18 Jun 2007 16:26:53 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A0B8C13C44C; Mon, 18 Jun 2007 16:26:53 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (gavin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5IGQrtm046755; Mon, 18 Jun 2007 16:26:53 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5IGQrG5046751; Mon, 18 Jun 2007 16:26:53 GMT (envelope-from gavin) Date: Mon, 18 Jun 2007 16:26:53 GMT From: Gavin Atkinson Message-Id: <200706181626.l5IGQrG5046751@freefall.freebsd.org> To: jpp@cloudview.com, gavin@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/79140: [patch] WD Firewire/USB Combo hangs under load on USB interface. X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 16:26:53 -0000 Old Synopsis: WD Firewire/USB Combo hangs under load on USB interface. New Synopsis: [patch] WD Firewire/USB Combo hangs under load on USB interface. State-Changed-From-To: open->feedback State-Changed-By: gavin State-Changed-When: Mon Jun 18 16:25:27 UTC 2007 State-Changed-Why: To submitter: Is this still an issue with more recent versions of FreeBSD? The quirk you have submitted looks reasonable, can I confirm that this patch works well for you? http://www.freebsd.org/cgi/query-pr.cgi?pr=79140 From owner-freebsd-usb@FreeBSD.ORG Mon Jun 18 16:29:02 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F33716A468; Mon, 18 Jun 2007 16:29:02 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 07D3813C44B; Mon, 18 Jun 2007 16:29:02 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (gavin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5IGT1PB046868; Mon, 18 Jun 2007 16:29:01 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5IGT12e046864; Mon, 18 Jun 2007 16:29:01 GMT (envelope-from gavin) Date: Mon, 18 Jun 2007 16:29:01 GMT From: Gavin Atkinson Message-Id: <200706181629.l5IGT12e046864@freefall.freebsd.org> To: davidrr@gmail.com, gavin@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/78989: please add USB keyboard support to install CD's X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 16:29:02 -0000 Synopsis: please add USB keyboard support to install CD's State-Changed-From-To: open->feedback State-Changed-By: gavin State-Changed-When: Mon Jun 18 16:27:45 UTC 2007 State-Changed-Why: To submitter: I believe USB keyboards have been supported during install for a while now (possibly 6.0 or before). Is this still a problem for you on recent versions of FreeBSD? http://www.freebsd.org/cgi/query-pr.cgi?pr=78989 From owner-freebsd-usb@FreeBSD.ORG Mon Jun 18 19:40:03 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13F2F16A469 for ; Mon, 18 Jun 2007 19:40:03 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id C898213C455 for ; Mon, 18 Jun 2007 19:40:02 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5IJdgoi005100; Mon, 18 Jun 2007 13:39:43 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 18 Jun 2007 13:40:13 -0600 (MDT) Message-Id: <20070618.134013.-1540393601.imp@bsdimp.com> To: julian@elischer.org From: "M. Warner Losh" In-Reply-To: <4672E722.507@elischer.org> References: <466ED7FF.4070609@elischer.org> <200706131104.47337.hselasky@c2i.net> <4672E722.507@elischer.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Mon, 18 Jun 2007 13:39:44 -0600 (MDT) Cc: freebsd-usb@freebsd.org Subject: Re: reminder X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 19:40:03 -0000 In message: <4672E722.507@elischer.org> Julian Elischer writes: : Warner is doing a lot of cleaning in the existing code I notice... I'm just doing a preening of the code to finish up the removal of the compatibility macros I started many moons ago. I've found at least one real bug, but it may have been a bug in my earlier cleaning. I don't plan on doing anything more extensive than a few bugs fixes. After I get done with the cleaning, I plan on restoring usb_port.h so that drivers can include it explicitly if they think they can use it to be portable between systems. Warner From owner-freebsd-usb@FreeBSD.ORG Tue Jun 19 08:49:29 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BBB2E16A41F for ; Tue, 19 Jun 2007 08:49:29 +0000 (UTC) (envelope-from Thomas.Sparrevohn@btinternet.com) Received: from smtp808.mail.ird.yahoo.com (smtp808.mail.ird.yahoo.com [217.146.188.68]) by mx1.freebsd.org (Postfix) with SMTP id 1B5CB13C48C for ; Tue, 19 Jun 2007 08:49:28 +0000 (UTC) (envelope-from Thomas.Sparrevohn@btinternet.com) Received: (qmail 87588 invoked from network); 19 Jun 2007 08:49:27 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=btinternet.com; h=Received:X-YMail-OSG:From:To:Subject:Date:User-Agent:References:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-Disposition:Message-Id; b=spbOjUTq0rKt6UwgFo7lM6xAFGR17Oz1qorsND74xhi6VdgE80+j7WFaz+evPEAW4q0WyZ88padc62HFtienYNr1X/SPDzK7BZt7EW+V4esXBj/uLLWG6exSoaD3pVAC9BmX6I1Zm4NivYF6ZloEfpkOanT8fe4XLGh/DTdzepk= ; Received: from unknown (HELO ?192.168.0.22?) (thomas.sparrevohn@btinternet.com@81.159.89.57 with login) by smtp808.mail.ird.yahoo.com with SMTP; 19 Jun 2007 08:49:27 -0000 X-YMail-OSG: EgNVU8IVM1ka8jgtJNhcgP9DnzryrZuW3ZB_oqKEXdeegszkB4TAMSxg7etpdtsJTV6V2jioyA-- From: Thomas Sparrevohn To: freebsd-usb@freebsd.org ;, freebsd-amd64@freebsd.org Date: Tue, 19 Jun 2007 09:49:25 +0100 User-Agent: KMail/1.9.6 References: <466ED7FF.4070609@elischer.org> <4672E722.507@elischer.org> <20070618.134013.-1540393601.imp@bsdimp.com> In-Reply-To: <20070618.134013.-1540393601.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706190949.25532.Thomas.Sparrevohn@btinternet.com> Cc: Subject: Native USB now works on MCP55 on AMD64 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 08:49:29 -0000 Thanks - Thanks - I am very very pleased to inform you that the MCP55 USB native USB stack now attaches correctly under the AMD64 and all my USB devices seems to work - I believe that I had a GNAT problem report about it that can be closed Thanks a million From owner-freebsd-usb@FreeBSD.ORG Tue Jun 19 12:08:34 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0C4416A473 for ; Tue, 19 Jun 2007 12:08:34 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 22F9313C480 for ; Tue, 19 Jun 2007 12:08:34 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A5E1BC.dip.t-dialin.net [84.165.225.188]) by redbull.bpaserver.net (Postfix) with ESMTP id 291472E1EC; Tue, 19 Jun 2007 13:41:16 +0200 (CEST) Received: from webmail.leidinger.net (webmail.Leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 22E8E5B49F3; Tue, 19 Jun 2007 13:39:30 +0200 (CEST) Received: (from www@localhost) by webmail.leidinger.net (8.13.8/8.13.8/Submit) id l5JBdTIV054434; Tue, 19 Jun 2007 13:39:29 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Tue, 19 Jun 2007 13:39:29 +0200 Message-ID: <20070619133929.1h53txn4bi74k04c@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Tue, 19 Jun 2007 13:39:29 +0200 From: Alexander Leidinger To: "M. Warner Losh" References: <466ED7FF.4070609@elischer.org> <200706131104.47337.hselasky@c2i.net> <4672E722.507@elischer.org> <20070618.134013.-1540393601.imp@bsdimp.com> In-Reply-To: <20070618.134013.-1540393601.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) / FreeBSD-7.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.9, required 8, BAYES_00 -15.00, DKIM_POLICY_SIGNSOME 0.00, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: julian@elischer.org, freebsd-usb@freebsd.org Subject: Re: reminder X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2007 12:08:35 -0000 Quoting "M. Warner Losh" (from Mon, 18 Jun 2007 =20 13:40:13 -0600 (MDT)): > In message: <4672E722.507@elischer.org> > Julian Elischer writes: > : Warner is doing a lot of cleaning in the existing code I notice... > > I'm just doing a preening of the code to finish up the removal of the > compatibility macros I started many moons ago. I've found at least > one real bug, but it may have been a bug in my earlier cleaning. I > don't plan on doing anything more extensive than a few bugs fixes. > > After I get done with the cleaning, I plan on restoring usb_port.h so > that drivers can include it explicitly if they think they can use it > to be portable between systems. Do you plan to look at some (more or less) easy PRs? http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/77940 (rejecting patch?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/80862 (just close PR?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/81308 (patch in trail!) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/90162 (patch in trail) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/91263 (fixed in HEAD?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/94742 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dkern/97174 (fixed in HEAD?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/107101 (fixed in HEAD?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/108097 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/110122 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/110856 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/110988 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/53025 (just close?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dkern/59698 (patch in the trail, interesting (not only) for Mac users) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/61234 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/63837 (patch in trail) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/68232 (not easy) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/68412 (feedback timeout?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/70523 (patch in trail) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/71605 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/72732 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/74609 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/79725 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/82436 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dbin/83451 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/86195 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/88939 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/91546 (link in trail) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/92306 (fixed in HEAD?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/94132 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/94148 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/94311 (link in trail) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/94439 (fixed in HEAD?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/94946 (size ok?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/95241 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/96714 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/97472 (fixed in HEAD?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/101757 (man page) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/101761 (ABI change) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/101775 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/103046 (not easy) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/105518 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/106538 (just close) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/107243 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/107526 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/108427 (fixed in HEAD?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/108810 (fixed in HEAD?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/110477 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/110681 (bug or feature?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/110991 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/110992 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/111710 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/112392 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/113060 (fixed by one of the above not easy PRs?) http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dkern/113324 The above ones are mostly adding quirks and adding device IDs PRs. =20 Some of them fix bugs, and the not so easy ones fix some larger =20 issues. I haven't looked at all PRs, only those which seem to be easy =20 by reading the subject. As you changed already several things in the =20 cleanup work (and core has a some kind of lock for it), you are =20 probably better suited to look at the non-quirks/IDs PRs. Most of them =20 seem to be as something we should have in the release... PR for HPS-stack? It doesn't belong into gnats currently. http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dusb/85992 Bye, Alexander. --=20 It is better to have loved and lost than just to have lost. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 06:39:55 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C2D116A400 for ; Wed, 20 Jun 2007 06:39:55 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from smtp1.yandex.ru (smtp1.yandex.ru [213.180.223.87]) by mx1.freebsd.org (Postfix) with ESMTP id 6609A13C465 for ; Wed, 20 Jun 2007 06:39:54 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from [195.151.56.249] ([195.151.56.249]:10480 "EHLO [195.151.56.249]" smtp-auth: "cvs-src" TLS-CIPHER: TLS-PEER-CN1: ) by mail.yandex.ru with ESMTP id S8373120AbXFTGX1 (ORCPT ); Wed, 20 Jun 2007 10:23:27 +0400 X-Comment: RFC 2476 MSA function at smtp1.yandex.ru logged sender identity as: cvs-src Message-ID: <46790374.8040903@yandex.ru> Date: Wed, 20 Jun 2007 10:37:40 +0000 From: "R.Mahmatkhanov" User-Agent: Thunderbird 1.5.0.9 (X11/20070128) MIME-Version: 1.0 To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 06:39:55 -0000 Good Day. I just move to latest -current/i386 after the code freeze. And i catch 100% reproduceble panic condition. It happens when i plug my mobile phone to USB port. How it does: ucom0: on uhub1 Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 fault virtual address = 0x4 fault code = supervisor read, page not present instruction pointer = 0x20: 0xc06ca396 stack pointer = 0x28: 0xdd30a760 frame pointer = 0x28: 0xdd30a760 code segment = base 0x0, limit 0xfffff, type = 0x1b, DPL 0, pres 1, = def32 1, gran 1 processor eflags = interrupt enabled, resume; IOPL = 0 current process = 28 (usb1) [thread pid 28 tid 100023] Stopped at usb_get_interface_descruptor+0x6: movl 0x4(%eax), %eax db> If i boot without ACPI, then i get this rigth after phone pluging: interrupt storm detected on irq10; throttling interrupt source If i unplug the phone and plug it again while this message prints, i get Fatal trap 12, that described above. I have this in vmstat -i when "interrupt storm" message is prints: interrupt total rate irq0: cll 123985 991 irq1: atkbd0 115 0 irq8: rtc 15933 127 irq10: pcm0 bfe0+* 94876 759 irq11: cbb0 uhci1+ 13 0 irq14: ata0 981 7 Total 235903 1887 Please advice what i can do to fix this. Thanks in advance for answer. From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 06:57:30 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C88A16A41F for ; Wed, 20 Jun 2007 06:57:30 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe10.swip.net [212.247.155.33]) by mx1.freebsd.org (Postfix) with ESMTP id 1B98313C44B for ; Wed, 20 Jun 2007 06:57:29 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [194.248.135.20] (account mc467741@c2i.net HELO laptop.lan) by mailfe10.swip.net (CommuniGate Pro SMTP 5.1.9) with ESMTPA id 354599964; Wed, 20 Jun 2007 08:57:27 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Wed, 20 Jun 2007 08:57:24 +0200 User-Agent: KMail/1.9.5 References: <46790374.8040903@yandex.ru> In-Reply-To: <46790374.8040903@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706200857.25030.hselasky@c2i.net> Cc: "R.Mahmatkhanov" Subject: Re: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 06:57:30 -0000 On Wednesday 20 June 2007 12:37, R.Mahmatkhanov wrote: > Good Day. > Hi, The parsing of the USB descriptors in general is not very fault tolerant in the old USB stack. Probably there is a missing range or NULL check somewhere. Unfortunately my new USB stack does not yet compile on the latest 7-current. Else you should try that, and if that fixes the problem, the people still maintaining the old USB stack should backport the parsing routines for the USB descriptors. --HPS > I just move to latest -current/i386 after the code freeze. And i catch > 100% reproduceble panic condition. It happens when i plug my mobile > phone to USB port. How it does: > > ucom0: 1.10/0.00, addr 2> on uhub1 > Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 > fault virtual address = 0x4 > fault code = supervisor read, page not present > instruction pointer = 0x20: 0xc06ca396 > stack pointer = 0x28: 0xdd30a760 > frame pointer = 0x28: 0xdd30a760 > code segment = base 0x0, limit 0xfffff, type = 0x1b, DPL 0, pres 1, > = def32 1, gran 1 > processor eflags = interrupt enabled, resume; IOPL = 0 > current process = 28 (usb1) > [thread pid 28 tid 100023] > Stopped at usb_get_interface_descruptor+0x6: movl 0x4(%eax), %eax > db> > From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 07:09:41 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81F1216A468; Wed, 20 Jun 2007 07:09:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5C4C513C4B8; Wed, 20 Jun 2007 07:09:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5K79fRG050529; Wed, 20 Jun 2007 07:09:41 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5K79fLL050525; Wed, 20 Jun 2007 07:09:41 GMT (envelope-from linimon) Date: Wed, 20 Jun 2007 07:09:41 GMT From: Mark Linimon Message-Id: <200706200709.l5K79fLL050525@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/113851: Unable to boot install cd from USB-CDROM X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 07:09:41 -0000 Synopsis: Unable to boot install cd from USB-CDROM Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jun 20 07:09:22 UTC 2007 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=113851 From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 07:11:32 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E8F0316A400 for ; Wed, 20 Jun 2007 07:11:32 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from webmail11.yandex.ru (webmail11.yandex.ru [213.180.200.52]) by mx1.freebsd.org (Postfix) with ESMTP id A74B213C448 for ; Wed, 20 Jun 2007 07:11:32 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from YAMAIL (webmail11.yandex.ru) by mail.yandex.ru id ; Wed, 20 Jun 2007 11:11:26 +0400 Received: from [195.151.56.249] ([195.151.56.249]) by mail.yandex.ru with HTTP; Wed, 20 Jun 2007 11:11:25 +0400 (MSD) Date: Wed, 20 Jun 2007 11:11:25 +0400 (MSD) From: "R.Mahmatkhanov" Sender: cvs-src@yandex.ru Message-Id: <4678D31D.000001.03344@webmail11.yandex.ru> MIME-Version: 1.0 X-Mailer: Yamail [ http://yandex.ru ] Errors-To: cvs-src@yandex.ru To: freebsd-usb@freebsd.org X-MsgDayCount: 3 X-BornDate: 1169586000 X-Source-Ip: 195.151.56.249 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Fw: Re: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cvs-src@yandex.ru List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 07:11:33 -0000 --- Forwarded message -- From: R.Mahmatkhanov To: Date: 20.06.07 11:09 Subject: Re: Panic on post-freeze current with ucom >On Wednesday 20 June 2007 12:37, R.Mahmatkhanov wrote: >> Good Day. >> > >Hi, > >The parsing of the USB descriptors in general is not very fault tolerant in >the old USB stack. Probably there is a missing range or NULL check somewhere. Yes, but i forgot to mention that it working like a charm in RELENG_6. In fact i believe that this problem is appeared rigth after recent usb-subsystem cleansing. > >Unfortunately my new USB stack does not yet compile on the latest 7-current. >Else you should try that, and if that fixes the problem, the people still >maintaining the old USB stack should backport the parsing routines for the >USB descriptors. Thanks, i will try. > >--HPS > >> I just move to latest -current/i386 after the code freeze. And i catch >> 100% reproduceble panic condition. It happens when i plug my mobile >> phone to USB port. How it does: >> >> ucom0: > 1.10/0.00, addr 2> on uhub1 >> Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 >> fault virtual address = 0x4 >> fault code = supervisor read, page not present >> instruction pointer = 0x20: 0xc06ca396 >> stack pointer = 0x28: 0xdd30a760 >> frame pointer = 0x28: 0xdd30a760 >> code segment = base 0x0, limit 0xfffff, type = 0x1b, DPL 0, pres 1, >> = def32 1, gran 1 >> processor eflags = interrupt enabled, resume; IOPL = 0 >> current process = 28 (usb1) >> [thread pid 28 tid 100023] >> Stopped at usb_get_interface_descruptor+0x6: movl 0x4(%eax), %eax >> db> >> --- End of forwarded message -- From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 07:14:08 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2FE3716A400; Wed, 20 Jun 2007 07:14:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0874C13C4AE; Wed, 20 Jun 2007 07:14:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5K7E7PT052827; Wed, 20 Jun 2007 07:14:07 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5K7E7v1052823; Wed, 20 Jun 2007 07:14:07 GMT (envelope-from linimon) Date: Wed, 20 Jun 2007 07:14:07 GMT From: Mark Linimon Message-Id: <200706200714.l5K7E7v1052823@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: kern/113837: [umass] unable to access 1024 sector size storage X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 07:14:08 -0000 Old Synopsis: unable to access 1024 sector size storage New Synopsis: [umass] unable to access 1024 sector size storage Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jun 20 07:13:29 UTC 2007 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=113837 From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 07:15:52 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1515116A476 for ; Wed, 20 Jun 2007 07:15:52 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 8F97113C4BC for ; Wed, 20 Jun 2007 07:15:51 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5K7EJ0g025793; Wed, 20 Jun 2007 01:14:19 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 20 Jun 2007 01:14:51 -0600 (MDT) Message-Id: <20070620.011451.1021576727.imp@bsdimp.com> To: cvs-src@yandex.ru From: "M. Warner Losh" In-Reply-To: <46790374.8040903@yandex.ru> References: <46790374.8040903@yandex.ru> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Wed, 20 Jun 2007 01:14:19 -0600 (MDT) Cc: freebsd-usb@freebsd.org Subject: Re: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 07:15:52 -0000 In message: <46790374.8040903@yandex.ru> "R.Mahmatkhanov" writes: : Good Day. : : I just move to latest -current/i386 after the code freeze. And i catch : 100% reproduceble panic condition. It happens when i plug my mobile : phone to USB port. How it does: : : ucom0: on uhub1 : Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 : fault virtual address = 0x4 : fault code = supervisor read, page not present : instruction pointer = 0x20: 0xc06ca396 : stack pointer = 0x28: 0xdd30a760 : frame pointer = 0x28: 0xdd30a760 : code segment = base 0x0, limit 0xfffff, type = 0x1b, DPL 0, pres 1, : = def32 1, gran 1 : processor eflags = interrupt enabled, resume; IOPL = 0 : current process = 28 (usb1) : [thread pid 28 tid 100023] : Stopped at usb_get_interface_descruptor+0x6: movl 0x4(%eax), %eax This looks like a null modem dereference. Which driver is causing this? Warner From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 07:19:32 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0505016A400 for ; Wed, 20 Jun 2007 07:19:32 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 9D06E13C45D for ; Wed, 20 Jun 2007 07:19:31 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5K7GVPr025803; Wed, 20 Jun 2007 01:16:31 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 20 Jun 2007 01:17:04 -0600 (MDT) Message-Id: <20070620.011704.-494097370.imp@bsdimp.com> To: hselasky@c2i.net From: "M. Warner Losh" In-Reply-To: <200706200857.25030.hselasky@c2i.net> References: <46790374.8040903@yandex.ru> <200706200857.25030.hselasky@c2i.net> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Wed, 20 Jun 2007 01:16:31 -0600 (MDT) Cc: cvs-src@yandex.ru, freebsd-usb@freebsd.org Subject: Re: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 07:19:32 -0000 In message: <200706200857.25030.hselasky@c2i.net> Hans Petter Selasky writes: : On Wednesday 20 June 2007 12:37, R.Mahmatkhanov wrote: : > Good Day. : > : : Hi, : : The parsing of the USB descriptors in general is not very fault tolerant in : the old USB stack. Probably there is a missing range or NULL check somewhere. This most likely is a careless mistake I made in the general cleanups I did recently... However if it isn't... : Unfortunately my new USB stack does not yet compile on the latest 7-current. : Else you should try that, and if that fixes the problem, the people still : maintaining the old USB stack should backport the parsing routines for the : USB descriptors. That sounds like a reasonable change to bite off. Can you suggest the set of routines that would work best to try to back port? Warner : --HPS : : > I just move to latest -current/i386 after the code freeze. And i catch : > 100% reproduceble panic condition. It happens when i plug my mobile : > phone to USB port. How it does: : > : > ucom0: 1.10/0.00, addr 2> on uhub1 : > Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 : > fault virtual address = 0x4 : > fault code = supervisor read, page not present : > instruction pointer = 0x20: 0xc06ca396 : > stack pointer = 0x28: 0xdd30a760 : > frame pointer = 0x28: 0xdd30a760 : > code segment = base 0x0, limit 0xfffff, type = 0x1b, DPL 0, pres 1, : > = def32 1, gran 1 : > processor eflags = interrupt enabled, resume; IOPL = 0 : > current process = 28 (usb1) : > [thread pid 28 tid 100023] : > Stopped at usb_get_interface_descruptor+0x6: movl 0x4(%eax), %eax : > db> : > : _______________________________________________ : freebsd-usb@freebsd.org mailing list : http://lists.freebsd.org/mailman/listinfo/freebsd-usb : To unsubscribe, send any mail to "freebsd-usb-unsubscribe@freebsd.org" : : From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 07:21:58 2007 Return-Path: X-Original-To: freebsd-usb@FreeBSD.ORG Delivered-To: freebsd-usb@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 803CB16A468 for ; Wed, 20 Jun 2007 07:21:58 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 3EDED13C4BC for ; Wed, 20 Jun 2007 07:21:58 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5K7LR3e025841; Wed, 20 Jun 2007 01:21:27 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 20 Jun 2007 01:22:00 -0600 (MDT) Message-Id: <20070620.012200.-816358519.imp@bsdimp.com> To: cvs-src@yandex.ru From: "M. Warner Losh" In-Reply-To: <4678D31D.000001.03344@webmail11.yandex.ru> References: <4678D31D.000001.03344@webmail11.yandex.ru> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Wed, 20 Jun 2007 01:21:28 -0600 (MDT) Cc: freebsd-usb@FreeBSD.ORG Subject: Re: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 07:21:58 -0000 In message: <4678D31D.000001.03344@webmail11.yandex.ru> "R.Mahmatkhanov" writes: : --- Forwarded message -- : From: R.Mahmatkhanov : To: : Date: 20.06.07 11:09 : Subject: Re: Panic on post-freeze current with ucom : : >On Wednesday 20 June 2007 12:37, R.Mahmatkhanov wrote: : >> Good Day. : >> : > : >Hi, : > : >The parsing of the USB descriptors in general is not very fault tolerant in : >the old USB stack. Probably there is a missing range or NULL check somewhere. : : Yes, but i forgot to mention that it working like a charm in RELENG_6. In fact i believe that this problem is appeared rigth after recent usb-subsystem cleansing. Yes. Which driver attaches to this device? Warner From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 07:47:24 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD2D916A400 for ; Wed, 20 Jun 2007 07:47:24 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from pantene.mail.yandex.net (pantene.mail.yandex.net [213.180.223.92]) by mx1.freebsd.org (Postfix) with ESMTP id 744DB13C45A for ; Wed, 20 Jun 2007 07:47:24 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from YAMAIL (pantene.yandex.ru) by mail.yandex.ru id ; Wed, 20 Jun 2007 11:23:51 +0400 Received: from [195.151.56.249] ([195.151.56.249]) by mail.yandex.ru with HTTP; Wed, 20 Jun 2007 11:23:38 +0400 (MSD) Date: Wed, 20 Jun 2007 11:23:38 +0400 (MSD) From: "R.Mahmatkhanov" Sender: cvs-src@yandex.ru Message-Id: <4678D5FA.000001.31958@pantene.yandex.ru> MIME-Version: 1.0 X-Mailer: Yamail [ http://yandex.ru ] Errors-To: cvs-src@yandex.ru To: imp@bsdimp.com X-MsgDayCount: 4 X-BornDate: 1169586000 In-Reply-To: <20070620.011451.1021576727.imp@bsdimp.com> References: <46790374.8040903@yandex.ru> <20070620.011451.1021576727.imp@bsdimp.com> X-Source-Ip: 195.151.56.249 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Cc: freebsd-usb@freebsd.org, cvs-src@yandex.ru Subject: Re: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cvs-src@yandex.ru List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 07:47:24 -0000 >In message: <46790374.8040903@yandex.ru> > "R.Mahmatkhanov" writes: >: Good Day. >: >: I just move to latest -current/i386 after the code freeze. And i catch >: 100% reproduceble panic condition. It happens when i plug my mobile >: phone to USB port. How it does: >: >: ucom0: : 1.10/0.00, addr 2> on uhub1 >: Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 >: fault virtual address = 0x4 >: fault code = supervisor read, page not present >: instruction pointer = 0x20: 0xc06ca396 >: stack pointer = 0x28: 0xdd30a760 >: frame pointer = 0x28: 0xdd30a760 >: code segment = base 0x0, limit 0xfffff, type = 0x1b, DPL 0, pres 1, >: = def32 1, gran 1 >: processor eflags = interrupt enabled, resume; IOPL = 0 >: current process = 28 (usb1) >: [thread pid 28 tid 100023] >: Stopped at usb_get_interface_descruptor+0x6: movl 0x4(%eax), %eax > >This looks like a null modem dereference. Which driver is causing >this? > >Warner It's umodem. From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 18:20:07 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE1CE16A41F for ; Wed, 20 Jun 2007 18:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7DA7913C43E for ; Wed, 20 Jun 2007 18:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5KIK7lw003312 for ; Wed, 20 Jun 2007 18:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5KIK7ZF003311; Wed, 20 Jun 2007 18:20:07 GMT (envelope-from gnats) Date: Wed, 20 Jun 2007 18:20:07 GMT Message-Id: <200706201820.l5KIK7ZF003311@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Ulrich Spoerlein Cc: Subject: Re: usb/103046: [ulpt] [patch] ulpt event driven I/O with select(2) and nonblock X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ulrich Spoerlein List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 18:20:07 -0000 The following reply was made to PR usb/103046; it has been noted by GNATS. From: Ulrich Spoerlein To: bug-followup@FreeBSD.org, sigsegv@radiotube.org Cc: netchild@FreeBSD.org, Peter van Heusden Subject: Re: usb/103046: [ulpt] [patch] ulpt event driven I/O with select(2) and nonblock Date: Wed, 20 Jun 2007 19:44:49 +0200 Hi, this patch fixes the problem in usb/113060 and I guess usb/112944 has a good chance of being fixed, too. I'd vote for inclusion of this patch. PR 113060 can be closed then. Thanks Ulrich Spoerlein From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 20:15:18 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 164A516A421; Wed, 20 Jun 2007 20:15:18 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E067613C48A; Wed, 20 Jun 2007 20:15:17 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5KKFHV8011195; Wed, 20 Jun 2007 20:15:17 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5KKFHX1011191; Wed, 20 Jun 2007 20:15:17 GMT (envelope-from linimon) Date: Wed, 20 Jun 2007 20:15:17 GMT From: Mark Linimon Message-Id: <200706202015.l5KKFHX1011191@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, freebsd-geom@FreeBSD.org Cc: Subject: Re: kern/113837: [geom] unable to access 1024 sector size storage X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 20:15:18 -0000 Old Synopsis: [umass] unable to access 1024 sector size storage New Synopsis: [geom] unable to access 1024 sector size storage Responsible-Changed-From-To: freebsd-usb->freebsd-geom Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jun 20 20:14:52 UTC 2007 Responsible-Changed-Why: mjacob suggests this reassignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=113837 From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 20:44:35 2007 Return-Path: X-Original-To: freebsd-usb@FreeBSD.org Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9AD3316A468; Wed, 20 Jun 2007 20:44:35 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 5C10513C455; Wed, 20 Jun 2007 20:44:35 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (unknown [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id A468417382; Wed, 20 Jun 2007 20:20:33 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.1/8.14.1) with ESMTP id l5KKKXpN007183; Wed, 20 Jun 2007 20:20:33 GMT (envelope-from phk@critter.freebsd.dk) To: Mark Linimon From: "Poul-Henning Kamp" In-Reply-To: Your message of "Wed, 20 Jun 2007 20:15:17 GMT." <200706202015.l5KKFHX1011191@freefall.freebsd.org> Date: Wed, 20 Jun 2007 20:20:33 +0000 Message-ID: <7182.1182370833@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Cc: freebsd-usb@FreeBSD.org, freebsd-geom@FreeBSD.org Subject: Re: kern/113837: [geom] unable to access 1024 sector size storage X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 20:44:35 -0000 In message <200706202015.l5KKFHX1011191@freefall.freebsd.org>, Mark Linimon wri tes: >New Synopsis: [geom] unable to access 1024 sector size storage Unless somebody broke something, this is certainly not a GEOM bug, because GEOM will access any sectorsize >= 512 bytes, and by "any" I don't just mean power-of-two sizes. Run: diskinfo -v /dev/da3 and see what it says. If it says anything but 1024 byte sector size, the problem is in scsi_da or umass, possibly both. If it says 1024 byte sector size, somebody broke GEOM. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 21:06:53 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 50DFD16A46D; Wed, 20 Jun 2007 21:06:53 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 0F36913C4D5; Wed, 20 Jun 2007 21:06:52 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5KL5KBk038547; Wed, 20 Jun 2007 15:05:21 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 20 Jun 2007 15:05:52 -0600 (MDT) Message-Id: <20070620.150552.-1548241557.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <7182.1182370833@critter.freebsd.dk> References: <200706202015.l5KKFHX1011191@freefall.freebsd.org> <7182.1182370833@critter.freebsd.dk> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Wed, 20 Jun 2007 15:05:21 -0600 (MDT) Cc: freebsd-usb@freebsd.org, linimon@freebsd.org, freebsd-geom@freebsd.org Subject: Re: kern/113837: [geom] unable to access 1024 sector size storage X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 21:06:53 -0000 In message: <7182.1182370833@critter.freebsd.dk> "Poul-Henning Kamp" writes: : In message <200706202015.l5KKFHX1011191@freefall.freebsd.org>, Mark Linimon wri : tes: : : >New Synopsis: [geom] unable to access 1024 sector size storage : : Unless somebody broke something, this is certainly not a GEOM bug, : because GEOM will access any sectorsize >= 512 bytes, and by "any" : I don't just mean power-of-two sizes. : : Run: : diskinfo -v /dev/da3 : and see what it says. : : If it says anything but 1024 byte sector size, the problem is in : scsi_da or umass, possibly both. : : If it says 1024 byte sector size, somebody broke GEOM. I know that GEOM works with 1056 byte sectors for the spi dataflash I have in my ARM box. No FS work with that, but that's not GEOM's fault. :-) Warner From owner-freebsd-usb@FreeBSD.ORG Wed Jun 20 21:57:53 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB70116A468 for ; Wed, 20 Jun 2007 21:57:53 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 494F613C44C for ; Wed, 20 Jun 2007 21:57:53 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5KLvYIt038999; Wed, 20 Jun 2007 15:57:35 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 20 Jun 2007 15:58:07 -0600 (MDT) Message-Id: <20070620.155807.1219864011.imp@bsdimp.com> To: cvs-src@yandex.ru From: "M. Warner Losh" In-Reply-To: <4678D5FA.000001.31958@pantene.yandex.ru> References: <46790374.8040903@yandex.ru> <20070620.011451.1021576727.imp@bsdimp.com> <4678D5FA.000001.31958@pantene.yandex.ru> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Wed, 20 Jun 2007 15:57:36 -0600 (MDT) Cc: freebsd-usb@freebsd.org Subject: Re: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2007 21:57:53 -0000 In message: <4678D5FA.000001.31958@pantene.yandex.ru> "R.Mahmatkhanov" writes: : >In message: <46790374.8040903@yandex.ru> : > "R.Mahmatkhanov" writes: : >: Good Day. : >: : >: I just move to latest -current/i386 after the code freeze. And i catch : >: 100% reproduceble panic condition. It happens when i plug my mobile : >: phone to USB port. How it does: : >: : >: ucom0: : 1.10/0.00, addr 2> on uhub1 : >: Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 : >: fault virtual address = 0x4 : >: fault code = supervisor read, page not present : >: instruction pointer = 0x20: 0xc06ca396 : >: stack pointer = 0x28: 0xdd30a760 : >: frame pointer = 0x28: 0xdd30a760 : >: code segment = base 0x0, limit 0xfffff, type = 0x1b, DPL 0, pres 1, : >: = def32 1, gran 1 : >: processor eflags = interrupt enabled, resume; IOPL = 0 : >: current process = 28 (usb1) : >: [thread pid 28 tid 100023] : >: Stopped at usb_get_interface_descruptor+0x6: movl 0x4(%eax), %eax : > : >This looks like a null modem dereference. Which driver is causing : >this? : > : >Warner : : It's umodem. doh! Consider applying Index: umodem.c =================================================================== RCS file: /cache/ncvs/src/sys/dev/usb/umodem.c,v retrieving revision 1.67 diff -c -u -r1.67 umodem.c cvs diff: conflicting specifications of output style --- umodem.c 20 Jun 2007 05:10:53 -0000 1.67 +++ umodem.c 20 Jun 2007 21:57:17 -0000 @@ -284,9 +284,6 @@ int i; struct ucom_softc *ucom; - id = usbd_get_interface_descriptor(sc->sc_ctl_iface); - device_printf(self, "iclass %d/%d", id->bInterfaceClass, - id->bInterfaceSubClass); ucom = &sc->sc_ucom; ucom->sc_dev = self; sc->sc_dev = self; @@ -296,6 +293,9 @@ sc->sc_udev = dev; sc->sc_ctl_iface = uaa->iface; sc->sc_ctl_iface_no = id->bInterfaceNumber; + id = usbd_get_interface_descriptor(sc->sc_ctl_iface); + device_printf(self, "iclass %d/%d", id->bInterfaceClass, + id->bInterfaceSubClass); umodem_get_caps(dev, &sc->sc_cm_cap, &sc->sc_acm_cap); and letting me know the results. Warner From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 04:39:54 2007 Return-Path: X-Original-To: usb@freebsd.org Delivered-To: freebsd-usb@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A4EE716A41F for ; Thu, 21 Jun 2007 04:39:54 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 3AF6B13C489 for ; Thu, 21 Jun 2007 04:39:54 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5L4crgL041530 for ; Wed, 20 Jun 2007 22:38:53 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 20 Jun 2007 22:39:25 -0600 (MDT) Message-Id: <20070620.223925.-432838182.imp@bsdimp.com> To: usb@freebsd.org From: "M. Warner Losh" X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Wed, 20 Jun 2007 22:38:54 -0600 (MDT) Cc: Subject: My current patches X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 04:39:54 -0000 In reviewing the current usb code after the 7.0 freeze, I discovered that I overlooked a large number of minor little things. These items are annoying, but wouldn't completely prevent one from using usb. usb modules weren't always loading, there's a panic in umodem, and a bunch of cleanup. If you have a spare minute and are running current, especially if you are having minor problems with things that were working a few days/weeks ago, please give this a try. http://people.freebsd.org/~imp/usb-1.diff Warner From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 07:24:30 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49DCC16A400 for ; Thu, 21 Jun 2007 07:24:30 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from webmail17.mail.yandex.net (webmail17.mail.yandex.net [213.180.200.46]) by mx1.freebsd.org (Postfix) with ESMTP id C78E413C43E for ; Thu, 21 Jun 2007 07:24:29 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from YAMAIL (webmail17) by mail.yandex.ru id S2375693AbXFUHY0 for ; Thu, 21 Jun 2007 11:24:26 +0400 Received: from [195.151.56.171] ([195.151.56.171]) by mail.yandex.ru with HTTP; Thu, 21 Jun 2007 11:24:25 +0400 From: "R.Mahmatkhanov" To: imp@bsdimp.com MIME-Version: 1.0 Message-Id: <69191182410665@webmail17.yandex.ru> Date: Thu, 21 Jun 2007 11:24:25 +0400 X-Mailer: Yamail [ http://yandex.ru ] 5.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain Cc: freebsd-usb@freebsd.org Subject: Re: Panic on post-freeze current with ucom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 07:24:30 -0000 > In message: <4678D5FA.000001.31958@pantene.yandex.ru> > "R.Mahmatkhanov" writes: > : >In message: <46790374.8040903@yandex.ru> > : > "R.Mahmatkhanov" writes: > : >: Good Day. > : >: > : >: I just move to latest -current/i386 after the code freeze. And i catch > : >: 100% reproduceble panic condition. It happens when i plug my mobile > : >: phone to USB port. How it does: > : >: > : >: ucom0: : >: 1.10/0.00, addr 2> on uhub1 > : >: Fatal trap 12: page fault while in kernel mode cpuid = 0; apic id = 00 > : >: fault virtual address = 0x4 > : >: fault code = supervisor read, page not present > : >: instruction pointer = 0x20: 0xc06ca396 > : >: stack pointer = 0x28: 0xdd30a760 > : >: frame pointer = 0x28: 0xdd30a760 > : >: code segment = base 0x0, limit 0xfffff, type = 0x1b, DPL 0, pres 1, > : >: = def32 1, gran 1 > : >: processor eflags = interrupt enabled, resume; IOPL = 0 > : >: current process = 28 (usb1) > : >: [thread pid 28 tid 100023] > : >: Stopped at usb_get_interface_descruptor+0x6: movl 0x4(%eax), %eax > : > > : >This looks like a null modem dereference. Which driver is causing > : >this? > : > > : >Warner > : > : It's umodem. > doh! > Consider applying It's now working again! Thank you much! > Index: umodem.c > > and letting me know the results. > Warner From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 14:50:07 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8006316A400 for ; Thu, 21 Jun 2007 14:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2BCBB13C45D for ; Thu, 21 Jun 2007 14:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LEo7vB008355 for ; Thu, 21 Jun 2007 14:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LEo7xd008354; Thu, 21 Jun 2007 14:50:07 GMT (envelope-from gnats) Date: Thu, 21 Jun 2007 14:50:07 GMT Message-Id: <200706211450.l5LEo7xd008354@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/77940: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 14:50:07 -0000 The following reply was made to PR usb/77940; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/77940: commit references a PR Date: Thu, 21 Jun 2007 14:42:42 +0000 (UTC) imp 2007-06-21 14:42:35 UTC FreeBSD src repository Modified files: sys/dev/usb ehci_pci.c if_rum.c if_ural.c ohci_pci.c ubser.c ucycom.c udbp.c ufm.c ufoma.c uhci_pci.c uhid.c uhub.c uipaq.c ukbd.c ulpt.c umass.c umodem.c ums.c urio.c usb_quirks.c usb_quirks.h uscanner.c Log: Latest round of usb cleanups: o Consistently use device_foo_t and bus_foo_t for functions implementing device_foo and bus_foo respectively. Adjust those routines that were wrong (we should do this throughout the tree). o make all the modules depend on usb. Otherwise these modules won't load. o ucycom doesn't need usb_port.h o Minor unifdefing o uhub, umass, ums, urio, uscanner conversion complete. o ukbd: Remove the NO_SET_PROTO quirk (fixes a PR 77940). NetBSD removed their check and setting the proto a long time ago. o umodem panic fixed. UQ_ASSUME_CM_OVER_DATA quirk removed because I've never seen a umodem that needed this rejection for proection (this gets rid of ~20% of the quirks). Approved by: re@ (kensmith) PR: 77940 Revision Changes Path 1.27 +5 -5 src/sys/dev/usb/ehci_pci.c 1.11 +1 -0 src/sys/dev/usb/if_rum.c 1.63 +1 -0 src/sys/dev/usb/if_ural.c 1.50 +4 -4 src/sys/dev/usb/ohci_pci.c 1.29 +1 -1 src/sys/dev/usb/ubser.c 1.6 +3 -4 src/sys/dev/usb/ucycom.c 1.39 +1 -0 src/sys/dev/usb/udbp.c 1.36 +1 -0 src/sys/dev/usb/ufm.c 1.9 +3 -3 src/sys/dev/usb/ufoma.c 1.61 +4 -7 src/sys/dev/usb/uhci_pci.c 1.96 +0 -1 src/sys/dev/usb/uhid.c 1.80 +38 -20 src/sys/dev/usb/uhub.c 1.7 +1 -1 src/sys/dev/usb/uipaq.c 1.70 +1 -9 src/sys/dev/usb/ukbd.c 1.80 +1 -0 src/sys/dev/usb/ulpt.c 1.152 +30 -9 src/sys/dev/usb/umass.c 1.68 +7 -12 src/sys/dev/usb/umodem.c 1.94 +37 -23 src/sys/dev/usb/ums.c 1.48 +31 -172 src/sys/dev/usb/urio.c 1.60 +1 -34 src/sys/dev/usb/usb_quirks.c 1.24 +0 -3 src/sys/dev/usb/usb_quirks.h 1.87 +31 -13 src/sys/dev/usb/uscanner.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 16:47:00 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3C7916A41F; Thu, 21 Jun 2007 16:47:00 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8B2CE13C447; Thu, 21 Jun 2007 16:47:00 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LGl0Cp018193; Thu, 21 Jun 2007 16:47:00 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LGl0dA018189; Thu, 21 Jun 2007 10:47:00 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 10:47:00 -0600 (MDT) From: Warner Losh Message-Id: <200706211647.l5LGl0dA018189@freefall.freebsd.org> To: jhanna@shaw.ca, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/77940: [quirk] [patch] insertion of usb keyboard panics system X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 16:47:00 -0000 Synopsis: [quirk] [patch] insertion of usb keyboard panics system State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 21 10:46:18 MDT 2007 State-Changed-Why: Put proposed fix into tree. The workaround then become OBE. http://www.freebsd.org/cgi/query-pr.cgi?pr=77940 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 16:48:46 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A734D16A468; Thu, 21 Jun 2007 16:48:46 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8145A13C484; Thu, 21 Jun 2007 16:48:46 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LGmkW1018300; Thu, 21 Jun 2007 16:48:46 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LGmjV2018296; Thu, 21 Jun 2007 10:48:45 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 10:48:45 -0600 (MDT) From: Warner Losh Message-Id: <200706211648.l5LGmjV2018296@freefall.freebsd.org> To: mg-spm@comcast.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/72732: [patch] Kyocera 7135 quirk. X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 16:48:46 -0000 Synopsis: [patch] Kyocera 7135 quirk. State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 10:48:17 MDT 2007 State-Changed-Why: UQ_ASSUME_CM_OVER_DATA is gone because it is no longer necessary. http://www.freebsd.org/cgi/query-pr.cgi?pr=72732 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 16:49:34 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 353E616A47D; Thu, 21 Jun 2007 16:49:34 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BDF3313C469; Thu, 21 Jun 2007 16:49:33 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LGnS5v018364; Thu, 21 Jun 2007 16:49:28 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LGnSKn018360; Thu, 21 Jun 2007 10:49:28 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 10:49:28 -0600 (MDT) From: Warner Losh Message-Id: <200706211649.l5LGnSKn018360@freefall.freebsd.org> To: jolly@thecoffinclub.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/74880: [ucom] [patch] Samsung N400 cellphone/acm fails to atach properly X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 16:49:34 -0000 Synopsis: [ucom] [patch] Samsung N400 cellphone/acm fails to atach properly State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 10:49:00 MDT 2007 State-Changed-Why: UQ_ASSUME_CM_OVER_DATA no longer needed, so this patch is OBE. http://www.freebsd.org/cgi/query-pr.cgi?pr=74880 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 16:50:23 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA9DF16A421; Thu, 21 Jun 2007 16:50:23 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C135513C44C; Thu, 21 Jun 2007 16:50:23 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LGoNaq018574; Thu, 21 Jun 2007 16:50:23 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LGoIml018551; Thu, 21 Jun 2007 10:50:18 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 10:50:18 -0600 (MDT) From: Warner Losh Message-Id: <200706211650.l5LGoIml018551@freefall.freebsd.org> To: fulda@seznam.cz, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/95805: [patch] Add Support for Siemens ES75 modem X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 16:50:24 -0000 Synopsis: [patch] Add Support for Siemens ES75 modem State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 10:49:41 MDT 2007 State-Changed-Why: OBE: UQ_ASSUME_CM_OVER_DATA eliminated. Patch no longer necessary. http://www.freebsd.org/cgi/query-pr.cgi?pr=95805 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 16:51:14 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6F5A16A46B; Thu, 21 Jun 2007 16:51:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BE1C913C45A; Thu, 21 Jun 2007 16:51:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LGpENL018747; Thu, 21 Jun 2007 16:51:14 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LGpEn6018743; Thu, 21 Jun 2007 10:51:14 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 10:51:14 -0600 (MDT) From: Warner Losh Message-Id: <200706211651.l5LGpEn6018743@freefall.freebsd.org> To: maxim@azarov.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/106462: [usbdevs] Motorola U6 PEBL not recognized by system via USB X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 16:51:15 -0000 Synopsis: [usbdevs] Motorola U6 PEBL not recognized by system via USB State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 10:50:36 MDT 2007 State-Changed-Why: OBE: UQ_ASSUME_CM_OVER_DATA no longer needed. http://www.freebsd.org/cgi/query-pr.cgi?pr=106462 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 16:51:44 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9B3F16A46C; Thu, 21 Jun 2007 16:51:44 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C368613C455; Thu, 21 Jun 2007 16:51:44 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LGpiA6018802; Thu, 21 Jun 2007 16:51:44 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LGphlX018798; Thu, 21 Jun 2007 10:51:43 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 10:51:43 -0600 (MDT) From: Warner Losh Message-Id: <200706211651.l5LGphlX018798@freefall.freebsd.org> To: jhanna@shaw.ca, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/77940: [quirk] [patch] insertion of usb keyboard panics system X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 16:51:45 -0000 Synopsis: [quirk] [patch] insertion of usb keyboard panics system State-Changed-From-To: closed->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 10:51:24 MDT 2007 State-Changed-Why: I think this should have gone from open -> patched rather than open -> closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=77940 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 16:54:50 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6CC6E16A469; Thu, 21 Jun 2007 16:54:50 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 45E7B13C465; Thu, 21 Jun 2007 16:54:50 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LGsoa8018934; Thu, 21 Jun 2007 16:54:50 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LGso3E018930; Thu, 21 Jun 2007 10:54:50 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 10:54:50 -0600 (MDT) From: Warner Losh Message-Id: <200706211654.l5LGso3E018930@freefall.freebsd.org> To: imp@FreeBSD.org, freebsd-usb@FreeBSD.org, imp@FreeBSD.org Cc: Subject: Re: usb/74849: [usbdevs] [patch] Samsung SPH-i500 does not attach properly as usb modem/Palm device under 5.3-RELEASE X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 16:54:50 -0000 Synopsis: [usbdevs] [patch] Samsung SPH-i500 does not attach properly as usb modem/Palm device under 5.3-RELEASE Responsible-Changed-From-To: freebsd-usb->imp Responsible-Changed-By: imp Responsible-Changed-When: Thu Jun 21 10:51:52 MDT 2007 Responsible-Changed-Why: I fixed the UQ_ASSUME_CM_OVER_DATA thing and have these patches in my tree. http://www.freebsd.org/cgi/query-pr.cgi?pr=74849 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 17:04:14 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B13216A476; Thu, 21 Jun 2007 17:04:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E86D613C469; Thu, 21 Jun 2007 17:04:13 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LH4Du3019658; Thu, 21 Jun 2007 17:04:13 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LH4Da1019654; Thu, 21 Jun 2007 11:04:13 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 11:04:13 -0600 (MDT) From: Warner Losh Message-Id: <200706211704.l5LH4Da1019654@freefall.freebsd.org> To: jofsama@yahoo.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/91263: [patch] USB quirk needed for Logitec USB Hard disk LHD-EB250U2S X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 17:04:14 -0000 Synopsis: [patch] USB quirk needed for Logitec USB Hard disk LHD-EB250U2S State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 21 11:03:36 MDT 2007 State-Changed-Why: Due to the large number of apple ipods, FreeBSD has eliminated the need for this quirk. http://www.freebsd.org/cgi/query-pr.cgi?pr=91263 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 17:38:04 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F389F16A41F; Thu, 21 Jun 2007 17:38:03 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C993B13C44C; Thu, 21 Jun 2007 17:38:03 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LHc3Tw022412; Thu, 21 Jun 2007 17:38:03 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LHc3UQ022408; Thu, 21 Jun 2007 11:38:03 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 11:38:03 -0600 (MDT) From: Warner Losh Message-Id: <200706211738.l5LHc3UQ022408@freefall.freebsd.org> To: imp@FreeBSD.org, freebsd-usb@FreeBSD.org, imp@FreeBSD.org Cc: Subject: Re: usb/108097: [usbgen] [patch] ADMtek 851X USB-to-LAN adapter X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 17:38:04 -0000 Synopsis: [usbgen] [patch] ADMtek 851X USB-to-LAN adapter Responsible-Changed-From-To: freebsd-usb->imp Responsible-Changed-By: imp Responsible-Changed-When: Thu Jun 21 11:37:48 MDT 2007 Responsible-Changed-Why: I'll merge this. http://www.freebsd.org/cgi/query-pr.cgi?pr=108097 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 17:50:39 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BB2516A46C; Thu, 21 Jun 2007 17:50:39 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0103913C489; Thu, 21 Jun 2007 17:50:38 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LHocOh023133; Thu, 21 Jun 2007 17:50:38 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LHocO3023129; Thu, 21 Jun 2007 11:50:38 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 11:50:38 -0600 (MDT) From: Warner Losh Message-Id: <200706211750.l5LHocO3023129@freefall.freebsd.org> To: yeasah@apocalypse.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/53025: [ugen] [patch] ugen does not allow O_NONBLOCK for interrupt endpts. X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 17:50:39 -0000 Synopsis: [ugen] [patch] ugen does not allow O_NONBLOCK for interrupt endpts. State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 21 11:50:23 MDT 2007 State-Changed-Why: The originator says it can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=53025 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 20:02:30 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E38016A421; Thu, 21 Jun 2007 20:02:30 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1FE2E13C489; Thu, 21 Jun 2007 20:02:30 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LK2TdI033109; Thu, 21 Jun 2007 20:02:30 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LK2TmV033105; Thu, 21 Jun 2007 14:02:29 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 14:02:29 -0600 (MDT) From: Warner Losh Message-Id: <200706212002.l5LK2TmV033105@freefall.freebsd.org> To: imp@FreeBSD.org, freebsd-usb@FreeBSD.org, imp@FreeBSD.org Cc: Subject: Re: usb/81308: [ugen] [patch] [2] polling a ugen(4) control endpoint causes a kernel panic X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 20:02:30 -0000 Old Synopsis: [ugen] [patch] polling a ugen(4) control endpoint causes a kernel panic New Synopsis: [ugen] [patch] [2] polling a ugen(4) control endpoint causes a kernel panic Responsible-Changed-From-To: freebsd-usb->imp Responsible-Changed-By: imp Responsible-Changed-When: Thu Jun 21 14:02:00 MDT 2007 Responsible-Changed-Why: I'll look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=81308 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 20:13:30 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF99516A474; Thu, 21 Jun 2007 20:13:30 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A179813C458; Thu, 21 Jun 2007 20:13:30 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LKDUkT033776; Thu, 21 Jun 2007 20:13:30 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LKDTsr033769; Thu, 21 Jun 2007 14:13:29 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 14:13:29 -0600 (MDT) From: Warner Losh Message-Id: <200706212013.l5LKDTsr033769@freefall.freebsd.org> To: n-tanaka@nagano.ac.jp, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/94742: [umass] [patch] umass driver does not recognise YANO external USB-HDD. X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 20:13:30 -0000 Synopsis: [umass] [patch] umass driver does not recognise YANO external USB-HDD. State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 14:13:19 MDT 2007 State-Changed-Why: committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=94742 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 21 20:20:09 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3EFA116A400 for ; Thu, 21 Jun 2007 20:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 30E8F13C448 for ; Thu, 21 Jun 2007 20:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5LKK8Nh034113 for ; Thu, 21 Jun 2007 20:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5LKK8Ar034110; Thu, 21 Jun 2007 20:20:08 GMT (envelope-from gnats) Date: Thu, 21 Jun 2007 20:20:08 GMT Message-Id: <200706212020.l5LKK8Ar034110@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/94742: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 20:20:09 -0000 The following reply was made to PR usb/94742; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/94742: commit references a PR Date: Thu, 21 Jun 2007 20:13:17 +0000 (UTC) imp 2007-06-21 20:13:07 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: Add support for YANO external USB-HDD. Submitted by: Norihiro TANAKA PR: 94742 Approved by: re (kensmith blanket) Revision Changes Path 1.153 +4 -0 src/sys/dev/usb/umass.c 1.298 +1 -0 src/sys/dev/usb/usbdevs _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:15:59 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A69E316A46C; Fri, 22 Jun 2007 05:15:59 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5E4F613C45D; Fri, 22 Jun 2007 05:15:59 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5Fw2i074461; Fri, 22 Jun 2007 05:15:59 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5Fw9R074457; Thu, 21 Jun 2007 23:15:58 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:15:58 -0600 (MDT) From: Warner Losh Message-Id: <200706220515.l5M5Fw9R074457@freefall.freebsd.org> To: stranger@sberbank.sibnet.ru, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/82436: [usbdevs] [patch] USL101 Host-to-Host bridge support on FreeBSD 5.4-RELEASE-p2 X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:15:59 -0000 Synopsis: [usbdevs] [patch] USL101 Host-to-Host bridge support on FreeBSD 5.4-RELEASE-p2 State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 23:15:42 MDT 2007 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=82436 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:20:09 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2341816A421 for ; Fri, 22 Jun 2007 05:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C569D13C455 for ; Fri, 22 Jun 2007 05:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5K85I074625 for ; Fri, 22 Jun 2007 05:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5K84f074624; Fri, 22 Jun 2007 05:20:08 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 05:20:08 GMT Message-Id: <200706220520.l5M5K84f074624@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/82436: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:20:09 -0000 The following reply was made to PR usb/82436; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/82436: commit references a PR Date: Fri, 22 Jun 2007 05:14:33 +0000 (UTC) imp 2007-06-22 05:14:27 UTC FreeBSD src repository Modified files: sys/dev/usb udbp.c usbdevs Log: USL101 Host-to-Host bridge support PR: 82436 Submitted by: Maxim M. Kazachek Approved by: re (kensmith) Revision Changes Path 1.40 +7 -3 src/sys/dev/usb/udbp.c 1.299 +1 -0 src/sys/dev/usb/usbdevs _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:20:57 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3984D16A468; Fri, 22 Jun 2007 05:20:57 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0FED313C4BE; Fri, 22 Jun 2007 05:20:57 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5KuT9074930; Fri, 22 Jun 2007 05:20:56 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5KugZ074926; Thu, 21 Jun 2007 23:20:56 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:20:56 -0600 (MDT) From: Warner Losh Message-Id: <200706220520.l5M5KugZ074926@freefall.freebsd.org> To: redzonemiata@yahoo.co.jp, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/86195: [usbdevs] [patch] allow USB Ethernet Adaptor "ELECOM LD-USB20" to be used. X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:20:57 -0000 Synopsis: [usbdevs] [patch] allow USB Ethernet Adaptor "ELECOM LD-USB20" to be used. State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 23:20:30 MDT 2007 State-Changed-Why: Committed http://www.freebsd.org/cgi/query-pr.cgi?pr=86195 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:25:07 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D68AA16A421; Fri, 22 Jun 2007 05:25:07 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id AC64A13C465; Fri, 22 Jun 2007 05:25:07 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5P7DY075246; Fri, 22 Jun 2007 05:25:07 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5P73j075242; Thu, 21 Jun 2007 23:25:07 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:25:07 -0600 (MDT) From: Warner Losh Message-Id: <200706220525.l5M5P73j075242@freefall.freebsd.org> To: mreimer@vpop.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/94148: [usbdevs] [patch] Make if_cdce work with ARM linux handhelds X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:25:08 -0000 Synopsis: [usbdevs] [patch] Make if_cdce work with ARM linux handhelds State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 21 23:24:47 MDT 2007 State-Changed-Why: Already in the tree http://www.freebsd.org/cgi/query-pr.cgi?pr=94148 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:28:46 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 220A816A41F; Fri, 22 Jun 2007 05:28:46 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EE48913C46A; Fri, 22 Jun 2007 05:28:45 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5Sj08075476; Fri, 22 Jun 2007 05:28:45 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5SjVs075472; Thu, 21 Jun 2007 23:28:45 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:28:45 -0600 (MDT) From: Warner Losh Message-Id: <200706220528.l5M5SjVs075472@freefall.freebsd.org> To: freebsd-bugs@spadger.best.vwh.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/95241: [patch] add USB ID for OEM Pharos 360 GPS X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:28:46 -0000 Synopsis: [patch] add USB ID for OEM Pharos 360 GPS State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 21 23:28:16 MDT 2007 State-Changed-Why: already in -current http://www.freebsd.org/cgi/query-pr.cgi?pr=95241 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:30:08 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8800416A400 for ; Fri, 22 Jun 2007 05:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6EC4413C44B for ; Fri, 22 Jun 2007 05:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5U8aQ075649 for ; Fri, 22 Jun 2007 05:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5U8WJ075647; Fri, 22 Jun 2007 05:30:08 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 05:30:08 GMT Message-Id: <200706220530.l5M5U8WJ075647@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/86195: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:30:08 -0000 The following reply was made to PR usb/86195; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/86195: commit references a PR Date: Fri, 22 Jun 2007 05:20:18 +0000 (UTC) imp 2007-06-22 05:20:11 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c usbdevs Log: USB Ethernet Adaptor "ELECOM LD-USB20" PR: 86195 Submitted by: kato Approved by: re (kensmith) Revision Changes Path 1.115 +1 -0 src/sys/dev/usb/if_aue.c 1.300 +1 -0 src/sys/dev/usb/usbdevs _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:33:36 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 232DB16A421; Fri, 22 Jun 2007 05:33:36 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EF90F13C48C; Fri, 22 Jun 2007 05:33:35 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5XZDl077059; Fri, 22 Jun 2007 05:33:35 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5XZNG077055; Thu, 21 Jun 2007 23:33:35 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:33:35 -0600 (MDT) From: Warner Losh Message-Id: <200706220533.l5M5XZNG077055@freefall.freebsd.org> To: simond@irrelevant.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/96714: [usbdevs] [patch] Update uvisor to support the Fossil Abacus Wrist PDA X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:33:36 -0000 Synopsis: [usbdevs] [patch] Update uvisor to support the Fossil Abacus Wrist PDA State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 23:33:23 MDT 2007 State-Changed-Why: committed http://www.freebsd.org/cgi/query-pr.cgi?pr=96714 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:37:51 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C1FD616A421; Fri, 22 Jun 2007 05:37:51 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9A95513C48C; Fri, 22 Jun 2007 05:37:51 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5bpsp077323; Fri, 22 Jun 2007 05:37:51 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5bpPU077319; Thu, 21 Jun 2007 23:37:51 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:37:51 -0600 (MDT) From: Warner Losh Message-Id: <200706220537.l5M5bpPU077319@freefall.freebsd.org> To: skafte@trollkarl.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/105518: [patch] epson perfection 3490 usb scanner def X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:37:51 -0000 Synopsis: [patch] epson perfection 3490 usb scanner def State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 21 23:37:00 MDT 2007 State-Changed-Why: The Epson 3590 and 3490 have the same usb IDs, and the 3590 is already in the tree. http://www.freebsd.org/cgi/query-pr.cgi?pr=105518 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:38:53 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ECE0A16A46B; Fri, 22 Jun 2007 05:38:53 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BF87213C45E; Fri, 22 Jun 2007 05:38:53 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5crFY077420; Fri, 22 Jun 2007 05:38:53 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5crsO077416; Thu, 21 Jun 2007 23:38:53 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:38:53 -0600 (MDT) From: Warner Losh Message-Id: <200706220538.l5M5crsO077416@freefall.freebsd.org> To: tut@nhamon.com.ua, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/106538: [patch] Can not burn DVD on Sony DRX-820UL external USB device X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:38:54 -0000 Synopsis: [patch] Can not burn DVD on Sony DRX-820UL external USB device State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 21 23:38:28 MDT 2007 State-Changed-Why: Already in the tree. http://www.freebsd.org/cgi/query-pr.cgi?pr=106538 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:40:11 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 12EFB16A400 for ; Fri, 22 Jun 2007 05:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0226813C44C for ; Fri, 22 Jun 2007 05:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5eAZu077577 for ; Fri, 22 Jun 2007 05:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5eA7g077576; Fri, 22 Jun 2007 05:40:10 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 05:40:10 GMT Message-Id: <200706220540.l5M5eA7g077576@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/96714: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:40:11 -0000 The following reply was made to PR usb/96714; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/96714: commit references a PR Date: Fri, 22 Jun 2007 05:33:29 +0000 (UTC) imp 2007-06-22 05:33:20 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs uvisor.c Log: Update uvisor to support the Fossil Abacus Wrist PDA Submitted by: Simon Dick PR: 96714 Approved by: re (kensmith, blanket) Revision Changes Path 1.301 +4 -0 src/sys/dev/usb/usbdevs 1.38 +1 -0 src/sys/dev/usb/uvisor.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:45:00 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1EA6416A48F; Fri, 22 Jun 2007 05:45:00 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id EA10113C4B7; Fri, 22 Jun 2007 05:44:59 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5ix41077946; Fri, 22 Jun 2007 05:44:59 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5ixxI077942; Thu, 21 Jun 2007 23:44:59 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:44:59 -0600 (MDT) From: Warner Losh Message-Id: <200706220544.l5M5ixxI077942@freefall.freebsd.org> To: jmw-ny@panix.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/107526: [usbdevs] Patch to support the Crystalfontz CFA-635 20x4 USB LCD X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:45:00 -0000 Synopsis: [usbdevs] Patch to support the Crystalfontz CFA-635 20x4 USB LCD State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 23:44:45 MDT 2007 State-Changed-Why: Committed http://www.freebsd.org/cgi/query-pr.cgi?pr=107526 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:50:08 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F2B116A484 for ; Fri, 22 Jun 2007 05:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5EE2D13C458 for ; Fri, 22 Jun 2007 05:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5o8x3078246 for ; Fri, 22 Jun 2007 05:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5o8qv078244; Fri, 22 Jun 2007 05:50:08 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 05:50:08 GMT Message-Id: <200706220550.l5M5o8qv078244@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/107526: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:50:08 -0000 The following reply was made to PR usb/107526; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/107526: commit references a PR Date: Fri, 22 Jun 2007 05:44:49 +0000 (UTC) imp 2007-06-22 05:44:42 UTC FreeBSD src repository Modified files: sys/dev/usb uftdi.c usbdevs Log: Crystalfontz CFA-635 20x4 USB LCD (plus minor sorting) Submitted by: John Wilson PR: 107526 Approved by: re (kensmith, blanket) Revision Changes Path 1.36 +2 -0 src/sys/dev/usb/uftdi.c 1.302 +11 -14 src/sys/dev/usb/usbdevs _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:50:17 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A36416A480 for ; Fri, 22 Jun 2007 05:50:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 31A0A13C465 for ; Fri, 22 Jun 2007 05:50:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5oGqc078313 for ; Fri, 22 Jun 2007 05:50:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5oG5I078312; Fri, 22 Jun 2007 05:50:16 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 05:50:16 GMT Message-Id: <200706220550.l5M5oG5I078312@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/110477: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:50:17 -0000 The following reply was made to PR usb/110477; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/110477: commit references a PR Date: Fri, 22 Jun 2007 05:49:24 +0000 (UTC) imp 2007-06-22 05:49:12 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs uscanner.c Log: add Benq 3300U/4300U support Submitted by: Denis Sadykov PR: 110477 Approved by: re (kensmith, blanket) Revision Changes Path 1.303 +1 -0 src/sys/dev/usb/usbdevs 1.88 +1 -0 src/sys/dev/usb/uscanner.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:53:24 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CDDB616A421; Fri, 22 Jun 2007 05:53:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A3FFC13C46A; Fri, 22 Jun 2007 05:53:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5rORE078573; Fri, 22 Jun 2007 05:53:24 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5rOQx078569; Thu, 21 Jun 2007 23:53:24 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:53:24 -0600 (MDT) From: Warner Losh Message-Id: <200706220553.l5M5rOQx078569@freefall.freebsd.org> To: jcharest@gmail.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/110992: [uftdi] [patch] Add Tactrix Openport support in uftdi X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:53:24 -0000 Synopsis: [uftdi] [patch] Add Tactrix Openport support in uftdi State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 23:53:09 MDT 2007 State-Changed-Why: Committed http://www.freebsd.org/cgi/query-pr.cgi?pr=110992 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 05:57:22 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8704416A469; Fri, 22 Jun 2007 05:57:22 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5DB0F13C483; Fri, 22 Jun 2007 05:57:22 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M5vMot078720; Fri, 22 Jun 2007 05:57:22 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5vL1S078716; Thu, 21 Jun 2007 23:57:21 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:57:21 -0600 (MDT) From: Warner Losh Message-Id: <200706220557.l5M5vL1S078716@freefall.freebsd.org> To: harry@omnisec.de, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/112392: [usbdevs] [patch] Make Epson Perfection 3490 recognized X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 05:57:22 -0000 Synopsis: [usbdevs] [patch] Make Epson Perfection 3490 recognized State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 21 23:57:01 MDT 2007 State-Changed-Why: Already in current: the 3490 and 3590 have the same ID. http://www.freebsd.org/cgi/query-pr.cgi?pr=112392 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 06:00:17 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C1BAA16A41F for ; Fri, 22 Jun 2007 06:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6E4D513C458 for ; Fri, 22 Jun 2007 06:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M60HQd078917 for ; Fri, 22 Jun 2007 06:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M60HMc078916; Fri, 22 Jun 2007 06:00:17 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 06:00:17 GMT Message-Id: <200706220600.l5M60HMc078916@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/110992: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 06:00:17 -0000 The following reply was made to PR usb/110992; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/110992: commit references a PR Date: Fri, 22 Jun 2007 05:53:12 +0000 (UTC) imp 2007-06-22 05:53:05 UTC FreeBSD src repository Modified files: sys/dev/usb uftdi.c usbdevs Log: Tactrix Openport support Submitted by: Jonathan Charest PR: 110992 Approved by: re (kensmith, blanket) Revision Changes Path 1.37 +6 -0 src/sys/dev/usb/uftdi.c 1.304 +3 -0 src/sys/dev/usb/usbdevs _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 06:00:23 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A1AE16A468 for ; Fri, 22 Jun 2007 06:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 793E513C46E for ; Fri, 22 Jun 2007 06:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M60MFv078952 for ; Fri, 22 Jun 2007 06:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M60M4l078951; Fri, 22 Jun 2007 06:00:22 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 06:00:22 GMT Message-Id: <200706220600.l5M60M4l078951@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/111710: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 06:00:23 -0000 The following reply was made to PR usb/111710; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/111710: commit references a PR Date: Fri, 22 Jun 2007 05:56:15 +0000 (UTC) imp 2007-06-22 05:56:06 UTC FreeBSD src repository Modified files: sys/dev/usb ubsa.c usbdevs Log: add support for Option GlobeTrotter 3G+ (PR says this may be from OpenBSD) Submitted by: Simun Mikecin PR: 111710 Approved by: re (kensmith, blanket) Revision Changes Path 1.32 +2 -0 src/sys/dev/usb/ubsa.c 1.305 +1 -0 src/sys/dev/usb/usbdevs _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 06:02:47 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B241316A468; Fri, 22 Jun 2007 06:02:47 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 89CAE13C4AD; Fri, 22 Jun 2007 06:02:47 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (imp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M62l67079193; Fri, 22 Jun 2007 06:02:47 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M62lXI079189; Fri, 22 Jun 2007 00:02:47 -0600 (MDT) (envelope-from imp) Date: Fri, 22 Jun 2007 00:02:47 -0600 (MDT) From: Warner Losh Message-Id: <200706220602.l5M62lXI079189@freefall.freebsd.org> To: lapo@lapo.it, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: kern/113324: [usb] [patch] Add support for Garmin iQue 3600 in uvisor(4) X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 06:02:47 -0000 Synopsis: [usb] [patch] Add support for Garmin iQue 3600 in uvisor(4) State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Fri Jun 22 00:02:23 MDT 2007 State-Changed-Why: Committed http://www.freebsd.org/cgi/query-pr.cgi?pr=113324 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 06:06:15 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6444F16A41F; Fri, 22 Jun 2007 06:06:15 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3C9EB13C45B; Fri, 22 Jun 2007 06:06:15 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from freefall.freebsd.org (smmsp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M66FY7079288; Fri, 22 Jun 2007 06:06:15 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M5nRoJ078100; Thu, 21 Jun 2007 23:49:27 -0600 (MDT) (envelope-from imp) Date: Thu, 21 Jun 2007 23:49:27 -0600 (MDT) From: Warner Losh Message-Id: <200706220549.l5M5nRoJ078100@freefall.freebsd.org> To: jabberw@mail.ru, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/110477: [usbdevs] [patch] add Benq 3300U/4300U support to FreeBSD X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 06:06:15 -0000 Synopsis: [usbdevs] [patch] add Benq 3300U/4300U support to FreeBSD State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Thu Jun 21 23:49:17 MDT 2007 State-Changed-Why: committed http://www.freebsd.org/cgi/query-pr.cgi?pr=110477 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 06:10:11 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74FE616A41F for ; Fri, 22 Jun 2007 06:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6559D13C44C for ; Fri, 22 Jun 2007 06:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5M6ABLL079449 for ; Fri, 22 Jun 2007 06:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5M6ABB7079448; Fri, 22 Jun 2007 06:10:11 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 06:10:11 GMT Message-Id: <200706220610.l5M6ABB7079448@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/113324: commit references a PR X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 06:10:11 -0000 The following reply was made to PR kern/113324; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/113324: commit references a PR Date: Fri, 22 Jun 2007 06:02:27 +0000 (UTC) imp 2007-06-22 06:02:20 UTC FreeBSD src repository Modified files: sys/dev/usb usbdevs uvisor.c Log: Add support for Garmin iQue 3600 Submitted by: Lapo Luchini PR: 113324 Approved by: re (kensmith, blanket) Revision Changes Path 1.306 +19 -15 src/sys/dev/usb/usbdevs 1.39 +1 -0 src/sys/dev/usb/uvisor.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 09:39:06 2007 Return-Path: X-Original-To: freebsd-usb@FreeBSD.org Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C07AD16A46B; Fri, 22 Jun 2007 09:39:06 +0000 (UTC) (envelope-from fico@del.ufrj.br) Received: from mailhost.del.ufrj.br (zeus.del.ufrj.br [146.164.70.2]) by mx1.freebsd.org (Postfix) with ESMTP id 878D813C45B; Fri, 22 Jun 2007 09:39:05 +0000 (UTC) (envelope-from fico@del.ufrj.br) Received: from [127.0.0.1] (loghost02.del.ufrj.br [146.164.70.27]) by mailhost.del.ufrj.br (Postfix) with ESMTP id B5DC4EBC84; Fri, 22 Jun 2007 06:20:58 -0300 (BRT) Message-ID: <467B9516.8060101@del.ufrj.br> Date: Fri, 22 Jun 2007 11:23:34 +0200 From: Federico Galvez-Durand Besnard User-Agent: Thunderbird 1.5.0.10 (X11/20070308) MIME-Version: 1.0 To: Gavin Atkinson References: <200706141750.l5EHoEma011804@freefall.freebsd.org> In-Reply-To: <200706141750.l5EHoEma011804@freefall.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-usb@FreeBSD.org, Federico Galvez-Durand Subject: Re: usb/74453: Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 09:39:06 -0000 Gavin Atkinson wrote: > Synopsis: Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work > > State-Changed-From-To: open->feedback > State-Changed-By: gavin > State-Changed-When: Thu Jun 14 17:49:00 UTC 2007 > State-Changed-Why: > > To submitter: Is this still a problem on more recent versions of > FreeBSD? Have you tried the suggestion in the PR of using the > WRONG_CSWSIG quirk? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=74453 > > > Yes, it is still the same problem: ++++ Begin Follow-up ++++ camelot# uname -a FreeBSD camelot.local 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #0: Thu Jun 21 19:23:02 CEST 2007 root@camelot.local:/usr/obj/usr/src/sys/CAMELOT i386 camelot# dmesg | grep umass0 umass0: ScanLogic USBIDE ScanLogic USBIDE, rev 1.10/2.61, addr 2 umass0: Invalid CSW: tag 849 should be 1 umass0: Invalid CSW: tag 849 should be 2 umass0: Invalid CSW: tag 849 should be 3 umass0: Invalid CSW: tag 849 should be 4 umass0: Invalid CSW: tag 849 should be 5 umass0: Invalid CSW: tag 849 should be 6 (da0:umass-sim0:0:0:0): got CAM status 0x4 (da0:umass-sim0:0:0:0): fatal error, failed to attach to device (da0:umass-sim0:0:0:0): lost device umass0: Invalid CSW: tag 849 should be 7 umass0: Invalid CSW: tag 849 should be 8 umass0: Invalid CSW: tag 849 should be 9 umass0: Invalid CSW: tag 849 should be 10 umass0: Invalid CSW: tag 849 should be 11 (da0:umass-sim0:0:0:0): removing device entry Opened disk da0 -> 5 root@camelot# camcontrol devlist -v scbus0 on ata0 bus 0: < > at scbus0 target -1 lun -1 () scbus1 on ata1 bus 0: at scbus1 target 0 lun 0 (pass0,cd0) < > at scbus1 target -1 lun -1 () scbus2 on umass-sim0 bus 0: < > at scbus2 target 0 lun 0 (pass1) scbus-1 on xpt0 bus 0: < > at scbus-1 target -1 lun -1 (xpt0) root@camelot# usbdevs -v Controller /dev/usb0: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 addr 2: full speed, self powered, config 1, ScanLogic USBIDE(0x0002), ScanLogic USBIDE(0x04ce), rev 2.61 port 2 powered root@camelot# diff -u umass.c.orig /usr/src/sys/dev/usb/umass.c --- umass.c.orig Thu Jun 21 19:02:27 2007 +++ /usr/src/sys/dev/usb/umass.c Thu Jun 21 19:02:58 2007 @@ -460,7 +460,7 @@ }, { USB_VENDOR_SCANLOGIC, USB_PRODUCT_SCANLOGIC_SL11R, RID_WILDCARD, UMASS_PROTO_ATAPI | UMASS_PROTO_BBB, - NO_INQUIRY + NO_INQUIRY | WRONG_CSWSIG }, { USB_VENDOR_SHUTTLE, USB_PRODUCT_SHUTTLE_EUSB, RID_WILDCARD, UMASS_PROTO_ATAPI | UMASS_PROTO_CBI_I, ++++ End Follow-up ++++ Some comments: This was my original post: http://lists.freebsd.org/mailman/htdig/freebsd-usb/2004-December/000318.html I went through my files and found some work I did and reported to this list: http://lists.freebsd.org/mailman/htdig/freebsd-usb/2005-February/000660.html As far as I remember, I managed to mount this CDROM and use it in RO mode. I could not make the kernel recognise it as a RW device. At that time, I got many cheap working flash drives > 512MB and a new machine, so this machine (PIII@800MHz/384MB mem) was assigned to a mission in which backup on CD was no longer necessary. This hacking was no longer a priority. And now I guess I did not report my work in the right way because I can't see these messages: http://lists.freebsd.org/mailman/htdig/freebsd-usb/2004-December/000318.html http://lists.freebsd.org/mailman/htdig/freebsd-usb/2005-February/000660.html linked to my orginial PR: Number: 74453 Category: usb Synopsis: Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work Severity: non-critical Priority: low Responsible: freebsd-usb@FreeBSD.org State: feedback Class: sw-bug Arrival-Date: Sat Nov 27 17:30:24 GMT 2004 Closed-Date: Last-Modified: Thu Jun 14 17:50:21 GMT 2007 Originator: Federico Besnard Release: 5.3 Stable I need to pay more attention on how to handle a PR. Thanks. From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 13:25:40 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7891316A46B; Fri, 22 Jun 2007 13:25:40 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5176113C489; Fri, 22 Jun 2007 13:25:40 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (gavin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5MDPe9I035194; Fri, 22 Jun 2007 13:25:40 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5MDPdqd035190; Fri, 22 Jun 2007 13:25:39 GMT (envelope-from gavin) Date: Fri, 22 Jun 2007 13:25:39 GMT From: Gavin Atkinson Message-Id: <200706221325.l5MDPdqd035190@freefall.freebsd.org> To: m.rosellen@gmx.de, gavin@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/83022: ALI USB 2.0 EHCI Controller is not detected X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 13:25:40 -0000 Synopsis: ALI USB 2.0 EHCI Controller is not detected State-Changed-From-To: open->feedback State-Changed-By: gavin State-Changed-When: Fri Jun 22 13:24:25 UTC 2007 State-Changed-Why: To submitter: Is this still an issue for you on more recent versions of FreeBSD? http://www.freebsd.org/cgi/query-pr.cgi?pr=83022 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 22 13:30:08 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98B2216A46B for ; Fri, 22 Jun 2007 13:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4949F13C43E for ; Fri, 22 Jun 2007 13:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5MDU8fv035395 for ; Fri, 22 Jun 2007 13:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5MDU8Vh035393; Fri, 22 Jun 2007 13:30:08 GMT (envelope-from gnats) Date: Fri, 22 Jun 2007 13:30:08 GMT Message-Id: <200706221330.l5MDU8Vh035393@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Gavin Atkinson Cc: Subject: Re: usb/74453: Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gavin Atkinson List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jun 2007 13:30:08 -0000 The following reply was made to PR usb/74453; it has been noted by GNATS. From: Gavin Atkinson To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/74453: Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work Date: Fri, 22 Jun 2007 14:28:37 +0100 For the audit-trail: -------- Forwarded Message -------- From: Federico Galvez-Durand Besnard Date: Fri, 22 Jun 2007 11:23:34 +0200 Yes, it is still the same problem: ++++ Begin Follow-up ++++ camelot# uname -a FreeBSD camelot.local 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #0: Thu Jun 21 19:23:02 CEST 2007 root@camelot.local:/usr/obj/usr/src/sys/CAMELOT i386 camelot# dmesg | grep umass0 umass0: ScanLogic USBIDE ScanLogic USBIDE, rev 1.10/2.61, addr 2 umass0: Invalid CSW: tag 849 should be 1 umass0: Invalid CSW: tag 849 should be 2 umass0: Invalid CSW: tag 849 should be 3 umass0: Invalid CSW: tag 849 should be 4 umass0: Invalid CSW: tag 849 should be 5 umass0: Invalid CSW: tag 849 should be 6 (da0:umass-sim0:0:0:0): got CAM status 0x4 (da0:umass-sim0:0:0:0): fatal error, failed to attach to device (da0:umass-sim0:0:0:0): lost device umass0: Invalid CSW: tag 849 should be 7 umass0: Invalid CSW: tag 849 should be 8 umass0: Invalid CSW: tag 849 should be 9 umass0: Invalid CSW: tag 849 should be 10 umass0: Invalid CSW: tag 849 should be 11 (da0:umass-sim0:0:0:0): removing device entry Opened disk da0 -> 5 root@camelot# camcontrol devlist -v scbus0 on ata0 bus 0: < > at scbus0 target -1 lun -1 () scbus1 on ata1 bus 0: at scbus1 target 0 lun 0 (pass0,cd0) < > at scbus1 target -1 lun -1 () scbus2 on umass-sim0 bus 0: < > at scbus2 target 0 lun 0 (pass1) scbus-1 on xpt0 bus 0: < > at scbus-1 target -1 lun -1 (xpt0) root@camelot# usbdevs -v Controller /dev/usb0: addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 addr 2: full speed, self powered, config 1, ScanLogic USBIDE(0x0002), ScanLogic USBIDE(0x04ce), rev 2.61 port 2 powered root@camelot# diff -u umass.c.orig /usr/src/sys/dev/usb/umass.c --- umass.c.orig Thu Jun 21 19:02:27 2007 +++ /usr/src/sys/dev/usb/umass.c Thu Jun 21 19:02:58 2007 @@ -460,7 +460,7 @@ }, { USB_VENDOR_SCANLOGIC, USB_PRODUCT_SCANLOGIC_SL11R, RID_WILDCARD, UMASS_PROTO_ATAPI | UMASS_PROTO_BBB, - NO_INQUIRY + NO_INQUIRY | WRONG_CSWSIG }, { USB_VENDOR_SHUTTLE, USB_PRODUCT_SHUTTLE_EUSB, RID_WILDCARD, UMASS_PROTO_ATAPI | UMASS_PROTO_CBI_I, ++++ End Follow-up ++++ Some comments: This was my original post: http://lists.freebsd.org/mailman/htdig/freebsd-usb/2004-December/000318.html I went through my files and found some work I did and reported to this list: http://lists.freebsd.org/mailman/htdig/freebsd-usb/2005-February/000660.html As far as I remember, I managed to mount this CDROM and use it in RO mode. I could not make the kernel recognise it as a RW device. At that time, I got many cheap working flash drives > 512MB and a new machine, so this machine (PIII@800MHz/384MB mem) was assigned to a mission in which backup on CD was no longer necessary. This hacking was no longer a priority. And now I guess I did not report my work in the right way because I can't see these messages: http://lists.freebsd.org/mailman/htdig/freebsd-usb/2004-December/000318.html http://lists.freebsd.org/mailman/htdig/freebsd-usb/2005-February/000660.html linked to my orginial PR: Number: 74453 Category: usb Synopsis: Q-lity CD-RW USB ECW-043 (ScanLogic SL11R chipset) does not work Severity: non-critical Priority: low Responsible: freebsd-usb@FreeBSD.org State: feedback Class: sw-bug Arrival-Date: Sat Nov 27 17:30:24 GMT 2004 Closed-Date: Last-Modified: Thu Jun 14 17:50:21 GMT 2007 Originator: Federico Besnard Release: 5.3 Stable I need to pay more attention on how to handle a PR. Thanks. From owner-freebsd-usb@FreeBSD.ORG Sat Jun 23 07:40:44 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CC0916A468; Sat, 23 Jun 2007 07:40:44 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe06.swip.net [212.247.154.161]) by mx1.freebsd.org (Postfix) with ESMTP id 32BD213C465; Sat, 23 Jun 2007 07:40:42 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [193.217.102.48] (account mc467741@c2i.net HELO [10.0.0.64]) by mailfe06.swip.net (CommuniGate Pro SMTP 5.1.9) with ESMTPA id 527404785; Sat, 23 Jun 2007 09:40:41 +0200 From: Hans Petter Selasky To: freebsd-current@freebsd.org Date: Sat, 23 Jun 2007 09:40:39 +0200 User-Agent: KMail/1.9.5 References: <467C343C.60707@freebsdbrasil.com.br> In-Reply-To: <467C343C.60707@freebsdbrasil.com.br> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706230940.39928.hselasky@c2i.net> Cc: stable@freebsd.org, current@freebsd.org, fli+freebsd-hackers@shapeshifter.se, hackers@freebsd.org, freebsd-usb@freebsd.org, Patrick Tracanelli Subject: Re: UPEK/TouchChip Biometric Device problem X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 07:40:44 -0000 On Friday 22 June 2007 22:42, Patrick Tracanelli wrote: > Hello all, > > I have used the mentioned devices on FreeBSD 5.4 in the past, and they > worked just fine, but now I get problems with the same device, on top of > 6.2-STABLE and also 7.0-CURRENT. > > From `usbdevs -v`, I get: > > Controller /dev/usb2: > addr 1: full speed, self powered, config 1, UHCI root hub(0x0000), > Intel(0x0000), rev 1.00 > port 1 addr 2: full speed, power 100 mA, config 1, Biometric > Coprocessor(0x2016), STMicroelectronics(0x0483), rev 0.01 > port 2 powered > > I have security/bsp_upektfmess, security/pam_bsdbioapi and > security/bioapi installed. It is a 6.2-STABLE system from 2 hours ago. > > Listing bsp devices, I get: > > # bbdm -l bsp > UUID {ffffffff-ffff-ffff-ffff-ffffffffffff} > Example Vendor libbioapi_dummy100.so (BioAPI v1.1 Dummy BSP) > UUID {263a41e0-71eb-11d4-9c34-124037000000} > BioAPI Consortium libpwbsp.so (BioAPI Password BSP) > UUID {5550454b-2054-464d-2f45-535320425350} > UPEK, Inc. libtfmessbsp.so (TouchChip TFM/ESS Fingerprint BSP) > > Backend configurations: > > # bbdm -l birdb > Installed BIRDB modules > filedb Filebacked database (b-tree) > plain Plain text file > > And now, the problem: > > # bbdm -b "{5550454b-2054-464d-2f45-535320425350}" -m filedb -c eksffa > bbdm: Failed to initate BSP {5550454b-2054-464d-2f45-535320425350} > > And on /var/log/messages as well as dmesg, I get: > > All threads purged from ugen1.1 > All threads purged from ugen1.2 > All threads purged from ugen1.3 > > What is this about "threads purged"? Also, the port want libintl.so.6 > while 6.2-STABLE has libintl.so.8. I have tried 1) linking .8 to .6 and > also copied .6 from another system (also, 6.2-STABLE) to the current > one. Didnt work both way. Same behavior, exactly. > > On 7.0-CURRENT things are worse. libpthread is not found, and the same > command core dumps. Anyway, 6.2-STABLE is more important to me right > now, since I need this device to work on FreeBSD for an ongoing project, > but if a solution to 7.0 happens first my work can move to that version. > There is a list called "freebsd-usb@freebsd.org" maybe we can handle this issue there. First of all, can you turn on more debugging in your "bbdm"? The default USB kernel is usually not compiled with USB debugging. There exists an: options USB_DEBUG I think. If you have time you can also try the my new USB stack: See: http://www.turbocat.net/~hselasky/usb4bsd/ Download the SVN version. If my new USB stack solves the problem then it is probably a regression issue in 6.2-STABLE, and as I recall there have been lots of changes. What kind of platform are you using? --HPS From owner-freebsd-usb@FreeBSD.ORG Sat Jun 23 11:50:04 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 262EE16A46B for ; Sat, 23 Jun 2007 11:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E7F7F13C4E5 for ; Sat, 23 Jun 2007 11:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5NBo3Ik059688 for ; Sat, 23 Jun 2007 11:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5NBo3wp059687; Sat, 23 Jun 2007 11:50:03 GMT (envelope-from gnats) Resent-Date: Sat, 23 Jun 2007 11:50:03 GMT Resent-Message-Id: <200706231150.l5NBo3wp059687@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-usb@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kazuaki ODA Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8710F16A400 for ; Sat, 23 Jun 2007 11:41:08 +0000 (UTC) (envelope-from kazuaki@aliceblue.jp) Received: from pd5f7be.tokyff01.ap.so-net.ne.jp (pd5f7be.tokyff01.ap.so-net.ne.jp [202.213.247.190]) by mx1.freebsd.org (Postfix) with ESMTP id 207C813C469 for ; Sat, 23 Jun 2007 11:41:08 +0000 (UTC) (envelope-from kazuaki@aliceblue.jp) Received: from eyes.aliceblue.jp (dhcp21.aliceblue.jp [192.168.11.21]) by pd5f7be.tokyff01.ap.so-net.ne.jp (Postfix) with ESMTP id 86EDF597C72 for ; Sat, 23 Jun 2007 20:41:07 +0900 (JST) Received: from eyes.aliceblue.jp (localhost [127.0.0.1]) by eyes.aliceblue.jp (8.14.1/8.14.1) with ESMTP id l5NBa6dS001749 for ; Sat, 23 Jun 2007 20:36:06 +0900 (JST) (envelope-from kazuaki@aliceblue.jp) Received: (from kazuaki@localhost) by eyes.aliceblue.jp (8.14.1/8.14.1/Submit) id l5NBa61H001748; Sat, 23 Jun 2007 20:36:06 +0900 (JST) (envelope-from kazuaki@aliceblue.jp) Message-Id: <200706231136.l5NBa61H001748@eyes.aliceblue.jp> Date: Sat, 23 Jun 2007 20:36:06 +0900 (JST) From: Kazuaki ODA To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: usb/113964: [patch] ucom(4): kernel panic when dropping a connection X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kazuaki ODA List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 11:50:04 -0000 >Number: 113964 >Category: usb >Synopsis: [patch] ucom(4): kernel panic when dropping a connection >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 23 11:50:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Kazuaki ODA >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD eyes.aliceblue.jp 7.0-CURRENT FreeBSD 7.0-CURRENT #1: Sat Jun 23 17:59:18 JST 2007 kazuaki@eyes.aliceblue.jp:/usr/obj/usr/src/sys/EYES i386 >Description: # kgdb kernel.debug /var/crash/vmcore.0 [GDB will not be able to debug user-mode threads: /usr/lib/libthread_db.so: Undefined symbol "ps_pglobal_lookup"] GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd". Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 01 fault virtual address = 0x0 fault code = supervisor write, page not present instruction pointer = 0x20:0xc06cabf9 stack pointer = 0x28:0xe671c970 frame pointer = 0x28:0xe671c970 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 858 (cu) trap number = 12 panic: page fault cpuid = 1 Uptime: 2m58s Physical memory: 1001 MB Dumping 55 MB: 40 24 8 #0 doadump () at pcpu.h:195 195 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); (kgdb) bt #0 doadump () at pcpu.h:195 #1 0xc074b6d7 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:409 #2 0xc074b999 in panic (fmt=Variable "fmt" is not available. ) at /usr/src/sys/kern/kern_shutdown.c:563 #3 0xc0a0411e in trap_fatal (frame=0xe671c930, eva=0) at /usr/src/sys/i386/i386/trap.c:870 #4 0xc0a043a0 in trap_pfault (frame=0xe671c930, usermode=0, eva=0) at /usr/src/sys/i386/i386/trap.c:784 #5 0xc0a04d02 in trap (frame=0xe671c930) at /usr/src/sys/i386/i386/trap.c:462 #6 0xc09eacab in calltrap () at /usr/src/sys/i386/i386/exception.s:139 #7 0xc06cabf9 in usbd_setup_xfer (xfer=0x0, pipe=0x0, priv=0xc4618600, buffer=0xc45f9d00, length=1, flags=1, timeout=0, callback=0xc0d9f860) at /usr/src/sys/dev/usb/usbdi.c:545 #8 0xc0d9f45d in ?? () #9 0x00000000 in ?? () #10 0x00000000 in ?? () #11 0xc4618600 in ?? () #12 0xc45f9d00 in ?? () #13 0x00000001 in ?? () #14 0x00000001 in ?? () #15 0x00000000 in ?? () #16 0xc0d9f860 in ?? () #17 0x00000001 in ?? () #18 0xc4098800 in ?? () #19 0x00000003 in ?? () #20 0xe671c9b0 in ?? () #21 0xc078c9b8 in ttstart (tp=0xc4098800) at tty.h:393 Previous frame identical to this frame (corrupt stack?) (kgdb) frame 7 #7 0xc06cabf9 in usbd_setup_xfer (xfer=0x0, pipe=0x0, priv=0xc4618600, buffer=0xc45f9d00, length=1, flags=1, timeout=0, callback=0xc0d9f860) at /usr/src/sys/dev/usb/usbdi.c:545 545 xfer->pipe = pipe; (kgdb) p xfer $1 = 0x0 (kgdb) quit >How-To-Repeat: 1) Login to serial console on a remote machine via USB-serial converter. For example: # cu -l /dev/cuaU0 -s 115200 2) And run the following command on the remote machine. # sh -c "while true; do echo 'Hello, world!'; done" 3) Type ~. to drop the connection while running above command. So you will get a kernel panic. >Fix: I don't know the proper fix but the following patch is workaround for me. --- ucom.c.patch begins here --- --- sys/dev/usb/ucom.c.orig 2007-06-22 23:45:37.000000000 +0900 +++ sys/dev/usb/ucom.c 2007-06-23 17:47:18.000000000 +0900 @@ -532,6 +532,9 @@ if (sc->sc_dying) return; + if (sc->sc_oxfer == NULL) + return; + s = spltty(); if (tp->t_state & TS_TBLOCK) { --- ucom.c.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Sat Jun 23 13:32:16 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B423216A468 for ; Sat, 23 Jun 2007 13:32:16 +0000 (UTC) (envelope-from eksffa@freebsdbrasil.com.br) Received: from capeta.freebsdbrasil.com.br (vrrp.freebsdbrasil.com.br [200.210.70.30]) by mx1.freebsd.org (Postfix) with SMTP id D922113C45A for ; Sat, 23 Jun 2007 13:32:15 +0000 (UTC) (envelope-from eksffa@freebsdbrasil.com.br) Received: (qmail 11777 invoked from network); 23 Jun 2007 10:05:58 -0300 Received: by simscan 1.1.0 ppid: 11746, pid: 11766, t: 1.5176s scanners: clamav: 0.90.2/m:43/d:3087 spam: 3.1.1 X-Spam-Checker-Version: SpamAssassin: -last, FreeBSD Brasil LTDA rulesets: Yes X-Spam-Status: No, hits=-2.1 required=3.7 Received: from unknown (HELO claire.freebsdbrasil.com.br) (eksffa@freebsdbrasil.com.br@201.80.0.53) by capeta.freebsdbrasil.com.br with SMTP; 23 Jun 2007 10:05:56 -0300 Message-ID: <467D1A94.7020000@freebsdbrasil.com.br> Date: Sat, 23 Jun 2007 10:05:24 -0300 From: Patrick Tracanelli User-Agent: Thunderbird 2.0.0.0 (X11/20070612) MIME-Version: 1.0 To: Hans Petter Selasky References: <467C343C.60707@freebsdbrasil.com.br> <200706230940.39928.hselasky@c2i.net> In-Reply-To: <200706230940.39928.hselasky@c2i.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Fredrik Lindberg , hackers@freebsd.org, freebsd-usb@freebsd.org Subject: Re: UPEK/TouchChip Biometric Device problem X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 13:32:16 -0000 > First of all, can you turn on more debugging in your "bbdm"? # bbdm -b "{5550454b-2054-464d-2f45-535320425350}" -m filedb -c eksffa ; echo $? usb_set_debug: Setting debugging level to 3 (on) usb_os_find_busses: Found /dev/usb0 usb_os_find_busses: Found /dev/usb1 usb_os_find_busses: Found /dev/usb2 usb_os_find_busses: Found /dev/usb3 usb_os_find_busses: Found /dev/usb4 usb_os_find_devices: Found /dev/ugen1 on /dev/usb2 usb_control_msg: 128 6 512 0 0xbfbfdee8 8 1000 usb_control_msg: 128 6 512 0 0x8058a80 39 1000 usb_os_find_devices: Found /dev/ugen0 on /dev/usb4 usb_control_msg: 128 6 512 0 0xbfbfdee8 8 1000 usb_control_msg: 128 6 512 0 0x8055200 396 1000 skipping descriptor 0xB skipped 1 class/vendor specific endpoint descriptors skipped 5 class/vendor specific interface descriptors skipping descriptor 0x25 skipped 1 class/vendor specific endpoint descriptors skipped 7 class/vendor specific interface descriptors usb_control_msg: 64 12 256 1024 0xbfbfdf80 1 100 usb_os_close: closing endpoint 14 usb_os_close: closing endpoint 15 bbdm: Failed to initate BSP {5550454b-2054-464d-2f45-535320425350} > If you have time you can also try the my new USB stack: > > See: > > http://www.turbocat.net/~hselasky/usb4bsd/ > > Download the SVN version. > > If my new USB stack solves the problem then it is probably a regression issue > in 6.2-STABLE, and as I recall there have been lots of changes. I did it. In fact I am running a kernel with your USB stack in this minute, following the page instructions. (I had, btw, 2 hunks ignored when patching, after "make install" but it is ural, and you mention it as non critical. Anyway, it is not related). Debug messages with the curret -STABLE stack or with your current USB stack from this SVN seem to change very few, if anything. > > What kind of platform are you using? i386 right now. Thank you. From owner-freebsd-usb@FreeBSD.ORG Sat Jun 23 18:30:08 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 983A816A41F for ; Sat, 23 Jun 2007 18:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 83F4A13C480 for ; Sat, 23 Jun 2007 18:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5NIU888090330 for ; Sat, 23 Jun 2007 18:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5NIU8Et090329; Sat, 23 Jun 2007 18:30:08 GMT (envelope-from gnats) Date: Sat, 23 Jun 2007 18:30:08 GMT Message-Id: <200706231830.l5NIU8Et090329@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: "M. Warner Losh" Cc: Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a connection X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "M. Warner Losh" List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 18:30:08 -0000 The following reply was made to PR usb/113964; it has been noted by GNATS. From: "M. Warner Losh" To: kazuaki@aliceblue.jp Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a connection Date: Sat, 23 Jun 2007 12:25:20 -0600 (MDT) In message: <200706231136.l5NBa61H001748@eyes.aliceblue.jp> Kazuaki ODA writes: : I don't know the proper fix but the following patch is workaround for : me. : : --- ucom.c.patch begins here --- : --- sys/dev/usb/ucom.c.orig 2007-06-22 23:45:37.000000000 +0900 : +++ sys/dev/usb/ucom.c 2007-06-23 17:47:18.000000000 +0900 : @@ -532,6 +532,9 @@ : if (sc->sc_dying) : return; : : + if (sc->sc_oxfer == NULL) : + return; : + : s = spltty(); : : if (tp->t_state & TS_TBLOCK) { : --- ucom.c.patch ends here --- This is a good workaround. However, why does the tty->t_oproc get called after the tty->t_close routine which sets sc->sc_oxfer to NULL? Warner From owner-freebsd-usb@FreeBSD.ORG Sat Jun 23 20:00:15 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 20BBF16A41F for ; Sat, 23 Jun 2007 20:00:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id C3D2613C448 for ; Sat, 23 Jun 2007 20:00:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5NK0E6t095651 for ; Sat, 23 Jun 2007 20:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5NK0EHZ095650; Sat, 23 Jun 2007 20:00:14 GMT (envelope-from gnats) Date: Sat, 23 Jun 2007 20:00:14 GMT Message-Id: <200706232000.l5NK0EHZ095650@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Kazuaki ODA Cc: Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a connection X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kazuaki ODA List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 20:00:15 -0000 The following reply was made to PR usb/113964; it has been noted by GNATS. From: Kazuaki ODA To: "M. Warner Losh" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a connection Date: Sun, 24 Jun 2007 04:56:22 +0900 M. Warner Losh wrote: > In message: <200706231136.l5NBa61H001748@eyes.aliceblue.jp> > Kazuaki ODA writes: > : I don't know the proper fix but the following patch is workaround for > : me. > : > : --- ucom.c.patch begins here --- > : --- sys/dev/usb/ucom.c.orig 2007-06-22 23:45:37.000000000 +0900 > : +++ sys/dev/usb/ucom.c 2007-06-23 17:47:18.000000000 +0900 > : @@ -532,6 +532,9 @@ > : if (sc->sc_dying) > : return; > : > : + if (sc->sc_oxfer == NULL) > : + return; > : + > : s = spltty(); > : > : if (tp->t_state & TS_TBLOCK) { > : --- ucom.c.patch ends here --- > > This is a good workaround. However, why does the tty->t_oproc get > called after the tty->t_close routine which sets sc->sc_oxfer to NULL? > > Warner Unfortunately, I have no idea. But it seems the changes of tty subsystem and ucom.c rev. 1.56 are related to the issue. * On 5.x-RELEASE, where ucom.c rev. 1.56 has been MFCed, we get no panic. * On 6.x-RELEASE or 7.0-CURRENT, we get a panic. * After backing out ucom.c rev. 1.56, no panic on 6.x-RELEASE or 7.0-CURRENT. -- Kazuaki ODA From owner-freebsd-usb@FreeBSD.ORG Sat Jun 23 21:24:02 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 634E616A41F; Sat, 23 Jun 2007 21:24:02 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe11.swip.net [212.247.155.65]) by mx1.freebsd.org (Postfix) with ESMTP id 4BE5513C457; Sat, 23 Jun 2007 21:24:00 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [193.217.102.48] (account mc467741@c2i.net HELO [10.0.0.64]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.1.9) with ESMTPA id 358244581; Sat, 23 Jun 2007 23:23:59 +0200 From: Hans Petter Selasky To: freebsd-current@freebsd.org Date: Sat, 23 Jun 2007 23:23:56 +0200 User-Agent: KMail/1.9.5 References: <1182632058.1217.3.camel@worf> In-Reply-To: <1182632058.1217.3.camel@worf> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706232323.56543.hselasky@c2i.net> Cc: =?iso-8859-1?q?S=F8ren_Schmidt?= , current@freebsd.org, freebsd-usb@freebsd.org, Pascal Hofstee Subject: Re: recent USB changes break building of atausb module X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 21:24:02 -0000 On Saturday 23 June 2007 22:54, Pascal Hofstee wrote: > Hi, > > I just updated to a fresh current today to notice that with the recent > slew of commits to the usb subsystem, the atausb module no longer > compiles. I think this is because Warner Losh is doing some cleanup in the old USB stack. --HPS > > cc -O2 -fno-strict-aliasing -pipe -march=athlon-mp -D_KERNEL > -DKLD_MODULE -std=c99 -nostdinc -I. -I@ -I@/contrib/altq > -finline-limit=8000 --param inline-unit-growth=100 --param > large-function-growth=1000 -fno-common -mno-align-long-strings > -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 > -mno-sse3 -ffreestanding -Wall -Wredundant-decls -Wnested-externs > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline > -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions > -c /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:151: warning: > data definition has no type or storage class > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:151: warning: > type defaults to 'int' in declaration of 'USB_DECLARE_DRIVER' > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:151: warning: > parameter names (without types) in function declaration > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:152: error: > 'atausb_driver' undeclared here (not in a function) > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:152: error: > 'atausb_devclass' undeclared here (not in a function) > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c: In function > 'atausb_attach': > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:278: warning: > implicit declaration of function 'atausb_detach' > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:278: warning: > nested extern declaration of 'atausb_detach' > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c: At top > level: > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:353: error: > static declaration of 'atausb_detach' follows non-static declaration > /usr/src/sys/modules/ata/atausb/../../../dev/ata/ata-usb.c:278: error: > previous implicit declaration of 'atausb_detach' was here > *** Error code 1 > > I know it's not exactly critical as atausb is not built on default but > would appreciate it if somebody could have a closer look at this. From owner-freebsd-usb@FreeBSD.ORG Sat Jun 23 21:52:25 2007 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABAA416A46D; Sat, 23 Jun 2007 21:52:25 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 547C813C44C; Sat, 23 Jun 2007 21:52:25 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.8/8.13.4) with ESMTP id l5NLpsoR085601; Sat, 23 Jun 2007 15:51:54 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sat, 23 Jun 2007 15:52:29 -0600 (MDT) Message-Id: <20070623.155229.660264947.imp@bsdimp.com> To: hselasky@c2i.net From: "M. Warner Losh" In-Reply-To: <200706232323.56543.hselasky@c2i.net> References: <1182632058.1217.3.camel@worf> <200706232323.56543.hselasky@c2i.net> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sat, 23 Jun 2007 15:51:55 -0600 (MDT) Cc: caelian@gmail.com, freebsd-current@freebsd.org, current@freebsd.org, freebsd-usb@freebsd.org, sos@freebsd.org Subject: Re: recent USB changes break building of atausb module X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 21:52:25 -0000 In message: <200706232323.56543.hselasky@c2i.net> Hans Petter Selasky writes: : On Saturday 23 June 2007 22:54, Pascal Hofstee wrote: : > Hi, : > : > I just updated to a fresh current today to notice that with the recent : > slew of commits to the usb subsystem, the atausb module no longer : > compiles. : : I think this is because Warner Losh is doing some cleanup in the old USB : stack. Yup. Fixed. Warner From owner-freebsd-usb@FreeBSD.ORG Sat Jun 23 23:00:07 2007 Return-Path: X-Original-To: freebsd-usb@hub.freebsd.org Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1836016A468 for ; Sat, 23 Jun 2007 23:00:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E7A6313C458 for ; Sat, 23 Jun 2007 23:00:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5NN06Td007158 for ; Sat, 23 Jun 2007 23:00:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5NN06fX007157; Sat, 23 Jun 2007 23:00:06 GMT (envelope-from gnats) Resent-Date: Sat, 23 Jun 2007 23:00:06 GMT Resent-Message-Id: <200706232300.l5NN06fX007157@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-usb@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dieter Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F4D716A400 for ; Sat, 23 Jun 2007 22:50:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.freebsd.org (Postfix) with ESMTP id EF30C13C44C for ; Sat, 23 Jun 2007 22:50:18 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id l5NMoGGD015259 for ; Sat, 23 Jun 2007 22:50:16 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l5NMoGAv015258; Sat, 23 Jun 2007 22:50:16 GMT (envelope-from nobody) Message-Id: <200706232250.l5NMoGAv015258@www.freebsd.org> Date: Sat, 23 Jun 2007 22:50:16 GMT From: Dieter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: usb/113977: Need a way to set mode of USB disk's write cache X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2007 23:00:07 -0000 >Number: 113977 >Category: usb >Synopsis: Need a way to set mode of USB disk's write cache >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 23 23:00:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Dieter >Release: 6.2 >Organization: >Environment: 6.2-RELEASE amd64 >Description: Need a way to set a USB disk's write cache to write-through mode, to prevent filesystem corruption. As far as I can tell, putting "hw.ata.wc=0" in loader.conf only affects directly connected PATA/SATA disks, not disks connected via a USB-to-*ATA bridge. Perhaps via camcontrol? But "camcontrol modepage da0 -l -v" returns nothing. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: