From owner-freebsd-usb@FreeBSD.ORG Sun Jun 24 06:20: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 52F4A16A41F for ; Sun, 24 Jun 2007 06:20: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 3F6F913C458 for ; Sun, 24 Jun 2007 06: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 l5O6K8D9038032 for ; Sun, 24 Jun 2007 06: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 l5O6K7r1038031; Sun, 24 Jun 2007 06:20:08 GMT (envelope-from gnats) Date: Sun, 24 Jun 2007 06:20:08 GMT Message-Id: <200706240620.l5O6K7r1038031@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: Sun, 24 Jun 2007 06:20: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: Sun, 24 Jun 2007 00:14:21 -0600 (MDT) In message: <467D7AE6.2090302@aliceblue.jp> Kazuaki ODA writes: : 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. OK. This is an important hint. However, it will take a while to study it. Warner From owner-freebsd-usb@FreeBSD.ORG Sun Jun 24 06: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 6F3AC16A400 for ; Sun, 24 Jun 2007 06: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 12D6513C44B for ; Sun, 24 Jun 2007 06: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 l5O6o7p3040735 for ; Sun, 24 Jun 2007 06: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 l5O6o7CZ040728; Sun, 24 Jun 2007 06:50:07 GMT (envelope-from gnats) Date: Sun, 24 Jun 2007 06:50:07 GMT Message-Id: <200706240650.l5O6o7CZ040728@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: Sun, 24 Jun 2007 06:50: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, re@FreeBSD.ORG Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a connection Date: Sun, 24 Jun 2007 00:48:08 -0600 (MDT) In message: <467D7AE6.2090302@aliceblue.jp> Kazuaki ODA writes: : 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. I think that the problem is the addition of ucomstart() at the end of ucomstop(). I think that the tty layer calls t_stop() as part of the ttyflush() routine. ttyflush() is called inside of tty_close(), which is called after the tt_close() call in ttyclose(). The addition appears to have been taken from sio, either directly, or at the recommendation of Bruce. The sio routines are written such that the close doesn't delete data that's referenced later. In our case, it is the right thing to do in ucomclose(), so we need to guard against it later when the data might be used. Since ucom chose to have ucomstart() called from ucomstop(), I think it is up to ucom to guard against known calling paths. I think this is not only a good workaround, therefore, but may be a correct fix on its own merit. Warner P.S. I'm not sure that I got my head wrapped around code that uses ttyfoo(), tty_foo() and tt_foo(), but I sure hope so. From owner-freebsd-usb@FreeBSD.ORG Sun Jun 24 09:30: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 7ECA216A468 for ; Sun, 24 Jun 2007 09:30: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 3C8BB13C455 for ; Sun, 24 Jun 2007 09:30: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 l5O9U7NE058846 for ; Sun, 24 Jun 2007 09:30:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5O9U7xL058845; Sun, 24 Jun 2007 09:30:07 GMT (envelope-from gnats) Resent-Date: Sun, 24 Jun 2007 09:30:07 GMT Resent-Message-Id: <200706240930.l5O9U7xL058845@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, Nino Ivanov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D42516A400 for ; Sun, 24 Jun 2007 09:25:14 +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 1DA7213C44C for ; Sun, 24 Jun 2007 09:25:14 +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 l5O9PDbC027163 for ; Sun, 24 Jun 2007 09:25:13 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l5O9PDQk027147; Sun, 24 Jun 2007 09:25:13 GMT (envelope-from nobody) Message-Id: <200706240925.l5O9PDQk027147@www.freebsd.org> Date: Sun, 24 Jun 2007 09:25:13 GMT From: Nino Ivanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: usb/113981: umount -f /mnt causing a crash if USB-stick is removed before umount 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: Sun, 24 Jun 2007 09:30:07 -0000 >Number: 113981 >Category: usb >Synopsis: umount -f /mnt causing a crash if USB-stick is removed before umount >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Jun 24 09:30:06 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Nino Ivanov >Release: FreeBSD 6.2 >Organization: >Environment: FreeBSD .localdomain 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 10:40:27 UTC 2007 root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Dear Sir or Madam, umount -f /mnt causes a crash for me under the following circumstances: - Plug in a USB-Stick - Issue the command: sudo mount_msdosfs /dev/da0s1 /mnt - Plug out the USB-Stick - Issue the command: sudo umount -f /mnt My system then crashes, whether typing that in an xterm or from the command-line with no X started. I have been able to cause this behaviour on two different machines. I did the same with a floppy disk: No crash occured; I was instead returned to the command prompt. If I simply issue umount -f /mnt without mounting anything beforehand, no crash happens, either. I know this is not the way unmounting should be done; yet I mention it out of stability considerations. Kind Regards, Nino Ivanov >How-To-Repeat: - Plug in a USB-Stick - Issue the command: sudo mount_msdosfs /dev/da0s1 /mnt - Plug out the USB-Stick - Issue the command: sudo umount -f /mnt >Fix: Not a fix, but it does not happen with floppies for me. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Sun Jun 24 11:50: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 737D916A400 for ; Sun, 24 Jun 2007 11:50: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 1103613C465 for ; Sun, 24 Jun 2007 11:50: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 l5OBo8xN071063 for ; Sun, 24 Jun 2007 11: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 l5OBo82c071058; Sun, 24 Jun 2007 11:50:08 GMT (envelope-from gnats) Date: Sun, 24 Jun 2007 11:50:08 GMT Message-Id: <200706241150.l5OBo82c071058@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Hellmuth Michaelis Cc: Subject: Re: usb/90162: [usb] [patch] Add support for the MS Wireless USB Mouse X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Hellmuth Michaelis List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jun 2007 11:50:09 -0000 The following reply was made to PR usb/90162; it has been noted by GNATS. From: Hellmuth Michaelis To: bug-followup@freebsd.org Cc: Subject: Re: usb/90162: [usb] [patch] Add support for the MS Wireless USB Mouse Date: Sun, 24 Jun 2007 13:27:20 +0200 Just for the archives, recently i bought another M$ notebook mouse, which looks exactly like the one mentioned in this PR (from the top, it looks different from the bottom, the wireless dongle is of another type) but behaves differently, the output of usbdevs -dv is: low speed, power 100 mA, config 1, Microsoft Wireless Optical Mouse=C2=AE= 1.00(0x00e1), Microsoft(0x045e), rev 0.07 =46ollowing is an updated patch to make both mice work with 6.2-STABLE: diff -ur usb-62S/ums.c usb/ums.c =2D-- usb-62S/ums.c Sun Jan 21 03:27:30 2007 +++ usb/ums.c Sun Jun 24 12:44:41 2007 @@ -188,8 +188,9 @@ if (err) return (UMATCH_NONE); =20 =2D if (hid_is_collection(desc, size, =2D HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_MOUSE))) + if (id->bInterfaceClass =3D=3D UICLASS_HID && + id->bInterfaceSubClass =3D=3D UISUBCLASS_BOOT && + id->bInterfaceProtocol =3D=3D UIPROTO_MOUSE) ret =3D UMATCH_IFACECLASS; else ret =3D UMATCH_NONE; @@ -320,6 +321,30 @@ USB_ATTACH_ERROR_RETURN; } =20 + /* + * The Microsoft Wireless Notebook Optical Mouse seems to be in wor= se + * shape than the Wireless Intellimouse 2.0, as its X, Y, wheel, an= d all + * of its other button positions are all off. It also reports that = it + * has two addional buttons and a tilt wheel. + */ + if (uaa->vendor =3D=3D USB_VENDOR_MICROSOFT && + (uaa->product =3D=3D USB_PRODUCT_MICROSOFT_WLUSBMOUSE || + uaa->product =3D=3D USB_PRODUCT_MICROSOFT_WLUSBMOUSE3)) { + sc->flags =3D UMS_Z; + sc->flags |=3D UMS_SPUR_BUT_UP; + sc->nbuttons =3D 3; + sc->sc_isize =3D 5; + sc->sc_iid =3D 0; + + /* 1st byte of descriptor report contains garbage for this mouse */ + sc->sc_loc_x.pos =3D 16; + sc->sc_loc_y.pos =3D 24; + sc->sc_loc_z.pos =3D 32; + sc->sc_loc_btn[0].pos =3D 8; + sc->sc_loc_btn[1].pos =3D 9; + sc->sc_loc_btn[2].pos =3D 10; + } + sc->sc_ep_addr =3D ed->bEndpointAddress; sc->sc_disconnected =3D 0; free(desc, M_TEMP); @@ -458,12 +483,20 @@ * This should sort that. * Currently it's the only user of UMS_T so use it as an identifier. * We probably should switch to some more official quirk. + * + * UPDATE: This problem affects the M$ Wireless Notebook Optical Mo= use, + * too. However, the leading byte for this mouse is normally 0x11, + * and the phantom mouse click occurs when its 0x14. */ if (sc->flags & UMS_T) { if (sc->sc_iid) { if (*ibuf++ =3D=3D 0x02) return; } + } else if (sc->flags & UMS_SPUR_BUT_UP) { + DPRINTFN(5, ("ums_intr: #### ibuf[0] =3D %d ####\n", *ibuf)= ); + if (*ibuf =3D=3D 0x14 || *ibuf =3D=3D 0x15) + return; } else { if (sc->sc_iid) { if (*ibuf++ !=3D sc->sc_iid) Only in usb: ums.c.orig diff -ur usb-62S/usb.h usb/usb.h =2D-- usb-62S/usb.h Fri Jan 20 23:47:49 2006 +++ usb/usb.h Fri Jun 22 10:11:19 2007 @@ -426,6 +426,7 @@ #define UICLASS_HID 0x03 #define UISUBCLASS_BOOT 1 #define UIPROTO_BOOT_KEYBOARD 1 +#define UIPROTO_MOUSE 2 =20 #define UICLASS_PHYSICAL 0x05 =20 Only in usb: usb.h.orig Only in usb: usb.h.rej diff -ur usb-62S/usbdevs usb/usbdevs =2D-- usb-62S/usbdevs Wed Feb 14 20:57:15 2007 +++ usb/usbdevs Sun Jun 24 12:21:52 2007 @@ -1260,6 +1260,8 @@ product MICROSOFT INTELLIEYE 0x0025 IntelliEye mouse product MICROSOFT INETPRO2 0x002b Internet Keyboard Pro product MICROSOFT MN110 0x007a 10/100 USB NIC +product MICROSOFT WLUSBMOUSE 0x00b9 Wireless Notebook Optical Mouse (Model= 1023) +product MICROSOFT WLUSBMOUSE3 0x00e1 Wireless Notebook Optical Mouse 3000 = (Model 1056) =20 /* Microtech products */ product MICROTECH SCSIDB25 0x0004 USB-SCSI-DB25 hellmuth =2D-=20 Hellmuth Michaelis HM1-RIPE mobil +49 (0)160 / 96 45 56 = 96 From owner-freebsd-usb@FreeBSD.ORG Sun Jun 24 16:10:05 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 A6C3C16A400 for ; Sun, 24 Jun 2007 16:10:05 +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 49DDC13C469 for ; Sun, 24 Jun 2007 16:10:05 +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 l5OG9cWZ097053 for ; Sun, 24 Jun 2007 10:09:39 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 24 Jun 2007 10:10:14 -0600 (MDT) Message-Id: <20070624.101014.58456209.imp@bsdimp.com> To: freebsd-usb@freebsd.org From: "M. Warner Losh" In-Reply-To: <200706240650.l5O6o7CZ040728@freefall.freebsd.org> References: <200706240650.l5O6o7CZ040728@freefall.freebsd.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]); Sun, 24 Jun 2007 10:09:39 -0600 (MDT) 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 List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jun 2007 16:10:05 -0000 In message: <200706240650.l5O6o7CZ040728@freefall.freebsd.org> "M. Warner Losh" writes: : 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, re@FreeBSD.ORG : Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a : connection : Date: Sun, 24 Jun 2007 00:48:08 -0600 (MDT) : : In message: <467D7AE6.2090302@aliceblue.jp> : Kazuaki ODA writes: : : 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. : : I think that the problem is the addition of ucomstart() at the end of : ucomstop(). I think that the tty layer calls t_stop() as part of the : ttyflush() routine. ttyflush() is called inside of tty_close(), which : is called after the tt_close() call in ttyclose(). The addition : appears to have been taken from sio, either directly, or at the : recommendation of Bruce. The sio routines are written such that the : close doesn't delete data that's referenced later. In our case, it is : the right thing to do in ucomclose(), so we need to guard against it : later when the data might be used. Since ucom chose to have : ucomstart() called from ucomstop(), I think it is up to ucom to guard : against known calling paths. I think this is not only a good : workaround, therefore, but may be a correct fix on its own merit. I don't know if we need to do something to discard the characters in the buffer or not. Warner From owner-freebsd-usb@FreeBSD.ORG Mon Jun 25 02:29:20 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 2D87416A46C; Mon, 25 Jun 2007 02:29:20 +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 EF52D13C4C2; Mon, 25 Jun 2007 02:29:19 +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 l5P2TJtA048980; Mon, 25 Jun 2007 02:29:19 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5P2TJtj048976; Mon, 25 Jun 2007 02:29:19 GMT (envelope-from linimon) Date: Mon, 25 Jun 2007 02:29:19 GMT From: Mark Linimon Message-Id: <200706250229.l5P2TJtj048976@freefall.freebsd.org> To: ports@logvinov.com, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/114002: Re: [uplcom] panic while accessing /dev/cuaU0 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, 25 Jun 2007 02:29:20 -0000 Synopsis: Re: [uplcom] panic while accessing /dev/cuaU0 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Mon Jun 25 02:28:31 UTC 2007 State-Changed-Why: Misfiled followup to usb/107935; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Mon Jun 25 02:28:31 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=114002 From owner-freebsd-usb@FreeBSD.ORG Mon Jun 25 04:32:13 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 0ACFB16A473 for ; Mon, 25 Jun 2007 04:32:13 +0000 (UTC) (envelope-from streamsendbouncer@me21507.mailengine1.com) Received: from me21507.mailengine1.com (me21507.mailengine1.com [66.59.24.112]) by mx1.freebsd.org (Postfix) with ESMTP id CA6F513C46C for ; Mon, 25 Jun 2007 04:32:12 +0000 (UTC) (envelope-from streamsendbouncer@me21507.mailengine1.com) Received: by me21507.mailengine1.com (PowerMTA(TM) v3.0r29) id hfrhr60anbgf for ; Sun, 24 Jun 2007 14:20:25 -0700 (envelope-from ) MIME-Version: 1.0 X-Mailer: StreamSend - 3326 X-Report-Abuse-At: abuse@streamsend.com X-Report-Abuse-Info: It is important to please include full email headers in the report X-Streamsendid: 3326+5+360372+20+me21507.mailengine1.com Date: Sun, 24 Jun 2007 21:16:50 -0700 From: "SCSS 2007 Online E-Conference" To: usb@freebsd.org Message-Id: <20070625043212.CA6F513C46C@mx1.freebsd.org> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: The Third International SCSS Conference 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, 25 Jun 2007 04:32:13 -0000 Dear Colleagues, If you received this email in error, please forward it to the appropriate department at your institution.  Please do not reply to this message. If you need to contact us please email us at info@cisse2007online.org ************************************************************ *          The Third International Conference on     * * Systems, Computing Sciences and Software Engineering  * *                                                          * *                      (SCSS 2007)                   * *                                                         * *               http://www.cisse2007online.org             * *                                                          * *                                                    * *                     December 3 - 12, 2007                * ************************************************************                                    Technically Co-Sponsored by: Institute of Electrical & Electronics Engineers (IEEE) University of Bridgeport --------------------------------------------------------------------- CONFERENCE OVERVIEW ------------------------------ --------------------------------------- SCSS 2007 provides a virtual forum for presentation and discussion of the state-of the-art research on computers, information and systems sciences and engineering. SCSS 2007 is one of the sub-confernces in the CISSE series of international joint e-conferences. CISSE is the World's first Engineering / Computing and Systems Research E-Conference. CISSE 2005 was the first high-caliber Research Conference in the world to be completely conducted online in real-time via the internet. CISSE 2005 received 255 research paper submissions and the final program included 140 accepted papers, from more than 45 countries. CISSE 2006 received 691 research paper submissions and the final program included 390 accepted papers, from more than 70 countries. The virtual conference will be conducted through the Internet using web-conferencing tools, made available by the conference. Authors will be presenting their PowerPoint, audio or video presentations using web-conferencing tools without the need for travel. Conference sessions will be broadcast to all the conference participants, where session participants can interact with the presenter during the presentation and (or) during the Q&A slot that follows the presentation. This international conference will be held entirely on-line. The accepted and presented papers will be made available and sent to the authors after the conference both on a DVD (including all papers, powerpoint presentations and audio presentations) and as a book publication. Springer, the official publisher for CISSE, published the 2005 proceedings in 2 books and the CISSE 2006 proceedings in four books. Conference participants - authors, presenters and attendees - only need an internet connection and sound available on their computers in order to be able to contribute and participate in this international ground-breaking conference. The on-line structure of this high-quality event will allow academic professionals and industry participants to contribute their work and attend world-class technical presentations based on rigorously refereed submissions, live, without the need for investing significant travel funds or time out of the office.   The concept and format of CISSE is very exciting and ground-breaking. The PowerPoint presentations, final paper manuscripts and time schedule for live presentations over the web had been available for weeks prior to the start of the conference for all registrants, so that the participants can choose the presentations they want to attend and think about questions that they might want to ask. The live audio presentations were also recorded and are part of the permanent CISSE on-line archive - accessible to all registrants- which also includes all the papers, PowerPoint and audio presentations. Potential non-author conference attendees who cannot make the on-line conference dates are encouraged to register, as the entire joint conferences will be archived for future viewing. The CISSE conference audio room provides superb audio even over low speed internet connections, the ability to display PowerPoint presentations, and cross-platform compatibility (the conferencing software runs on Windows, Mac, and any other operating system that supports Java). In addition, the conferencing system allowed for an unlimited number of participants, which in turn granted us the opportunity to allow all CISSE participants to attend all presentations, as opposed to limiting the number of available seats for each session. Prospective authors are invited to submit full papers electronically in Microsoft Word format through the website of the conference at http://www.cisse2007online.org. Accepted papers must be presented in the virtual conference by one of the authors. To submit your paper, visit http://www.cisse2007online.org The topics covered by the Third International Conference on Systems, Computing Sciences and Software Engineering (SCSS 07) include but are not limited to the following: Topics: Grid Computing, Internet-based Computing Models, Resource Discovery, Programming Models and tools, e-Science and Virtual Instrumentation, Biometric Authentication, Computers for People of Special Needs, Human Computer Interaction, Information and Knowledge Engineering, Algorithms, Parallel and Distributed processing, Modeling and Simulation, Services and Applications, Embedded Systems and Applications, Databases, Programming Languages, Signal Processing Theory and Methods, Signal Processing for Communication, Signal Processing Architectures and Implementation, Information  Processing, Geographical Information Systems, Object Based Software Engineering, Parallel and Distributed Computing, Real Time Systems, Multiprocessing, File Systems and I/O, Kernel and OS Structures. Paper Submission ================= Prospective authors are invited to submit full papers electronically in Microsoft Word format through the website of the conference at http://www.cisse2007online.org. Accepted papers must be presented in the virtual conference by one of the authors. To submit your paper, visit http://www.cisse2007online.org Paper submission Deadline:        October 5th, 2007 Notification of Acceptance:      November 2nd, 2007 Final Manuscript and Registration: November 23rd, 2007 -------------------------------------------------------------------------- Khaled Elleithy, Ph.D. CISSE 2007 General Co-Chair Associate Dean, School of Engineering University of Bridgeport                  e-mail: info@cisse2007online.org Bridgeport, CT 06604, U.S.A.       http://www.cisse2007online.org --------------------------------------------------------------------------   Click here on http://server1.streamsend.com/streamsend/unsubscribe.php?cd=3326&md=20&ud=6f02458de045ff415719b15b0027639f to update your profile or Unsubscribe From owner-freebsd-usb@FreeBSD.ORG Mon Jun 25 06:50:12 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 5C87516A4EA for ; Mon, 25 Jun 2007 06:50:12 +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 BD4EE13C469 for ; Mon, 25 Jun 2007 06:50: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 l5P6oBsx071079 for ; Mon, 25 Jun 2007 06:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5P6oBVL071078; Mon, 25 Jun 2007 06:50:11 GMT (envelope-from gnats) Date: Mon, 25 Jun 2007 06:50:11 GMT Message-Id: <200706250650.l5P6oBVL071078@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/113964: 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: Mon, 25 Jun 2007 06:50:12 -0000 The following reply was made to PR usb/113964; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/113964: commit references a PR Date: Mon, 25 Jun 2007 06:40:29 +0000 (UTC) imp 2007-06-25 06:40:20 UTC FreeBSD src repository Modified files: sys/dev/usb ucom.c Log: Starting in version 1.56, ucomstop started calling ucomstart to work around an output freezing problem (see the CVS log for details). This is the same approach that sio takes to solve that problem. However, ucom has a problem that sio doesn't have. Consider the case where output is pending, and the device is closed. ttyclose calls tt_close (which indirects to ucomclose) and then calls ttyflush which calls tt_stop (which indirects to ucomstop). Since ucomclose removed all the usb transfer points, sc_oxfer will be NULL when ucomstop calls ucomstart. This results in a null pointer dereference. Since calling ucomstart in ucomstart solves other problems, we need to work with this calling sequence. The easiest way to do that is to bail early if sc_oxfer is NULL. Kazuaki ODA-san came up with this patch, and filed a PR. I had seen this bug at work and this patch does seem to solve it. He had no idea why it worked, but knew that either this patch, or backing out ucom.c 1.56 fixed his panic. I just did the legwork of chasing down the code paths that would cause this, and added a comment. This is obscure enough to warrant a comment, I think. Submitted by: Kazuaki ODA-san PR: 113964 Approved by: re (bmah) Revision Changes Path 1.64 +10 -0 src/sys/dev/usb/ucom.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 Mon Jun 25 11:08:54 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 03D9516A4D5 for ; Mon, 25 Jun 2007 11:08:54 +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 E501613C480 for ; Mon, 25 Jun 2007 11:08:53 +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 l5PB8r71098884 for ; Mon, 25 Jun 2007 11:08:53 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5PB8qvR098880 for freebsd-usb@FreeBSD.org; Mon, 25 Jun 2007 11:08:52 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 25 Jun 2007 11:08:52 GMT Message-Id: <200706251108.l5PB8qvR098880@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, 25 Jun 2007 11:08:54 -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 p usb/77940 usb [quirk] [patch] insertion of usb keyboard panics syste f usb/78989 usb please add USB keyboard support to install CD's f usb/79140 usb [patch] WD Firewire/USB Combo hangs under load on USB 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/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/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 p 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/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 o usb/113851 usb Unable to boot install cd from USB-CDROM o usb/113964 usb [patch] ucom(4): kernel panic when dropping a connecti o usb/113977 usb Need a way to set mode of USB disk's write cache 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/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] p 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 p 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 p usb/82436 usb [usbdevs] [patch] USL101 Host-to-Host bridge support o f 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 p 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/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 p 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 p 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/106041 usb FreeBSD does not recognise Mustek BearPaw 2400TA usb s o usb/106070 usb devd recognizes ucom, but ttyU is the device actually p usb/106462 usb [usbdevs] Motorola U6 PEBL not recognized by system vi 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 p 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 p 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 p 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/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 usb/113432 usb WARNING: attempt to net_add_domain(netgraph) after dom o usb/113454 usb EHCI error 6/EHCI Hub error 4 -CURRENT o usb/113981 usb umount -f /mnt causing a crash if USB-stick is removed 132 problems total. From owner-freebsd-usb@FreeBSD.ORG Mon Jun 25 19:06: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 C77BF16A468; Mon, 25 Jun 2007 19:06:36 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9418813C469; Mon, 25 Jun 2007 19:06:36 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (remko@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5PJ6a5b043658; Mon, 25 Jun 2007 19:06:36 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5PJ6apK043654; Mon, 25 Jun 2007 19:06:36 GMT (envelope-from remko) Date: Mon, 25 Jun 2007 19:06:36 GMT From: Remko Lodder Message-Id: <200706251906.l5PJ6apK043654@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: conf/114013: [patch] WITHOUT_USB allow to compil a lot of USB stuff 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, 25 Jun 2007 19:06:36 -0000 Synopsis: [patch] WITHOUT_USB allow to compil a lot of USB stuff Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: remko Responsible-Changed-When: Mon Jun 25 19:06:25 UTC 2007 Responsible-Changed-Why: USB related. http://www.freebsd.org/cgi/query-pr.cgi?pr=114013 From owner-freebsd-usb@FreeBSD.ORG Tue Jun 26 12:55:39 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 BE55116A421; Tue, 26 Jun 2007 12:55:39 +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 29BD113C45B; Tue, 26 Jun 2007 12:55:38 +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.10) with ESMTPA id 528734700; Tue, 26 Jun 2007 14:55:36 +0200 From: Hans Petter Selasky To: freebsd-current@freebsd.org, freebsd-usb@freebsd.org Date: Tue, 26 Jun 2007 14:55:34 +0200 User-Agent: KMail/1.9.5 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706261455.34821.hselasky@c2i.net> Cc: Ian FREISLICH Subject: Re: USB mouse works again in current!!! 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, 26 Jun 2007 12:55:39 -0000 Hi Ian, On Tuesday 26 June 2007 14:03, Ian FREISLICH wrote: > Hans Petter Selasky wrote: > > Hi Ian, > > > > Debugging Host Controller Halted is not so easy. It usually means that > > the DMA memory corrupted. > > I gathered it's not that easy. The controller that breaks is this one: > > uhci3@pci0:29:3: class=0x0c0300 card=0x72708086 chip=0x27cb8086 > rev=0x02 hdr=0x00 vendor = 'Intel Corporation' > device = '82801G (ICH7 Family) USB Universal Host Controller' > class = serial bus > subclass = USB > > uhci3: port 0x4040-0x405f irq 16 at device > 29.3 on pci0 uhci3: [GIANT-LOCKED] > uhci3: [ITHREAD] > uhci3: LegSup = 0x1010 > usb3: on uhci3 > usb3: USB revision 1.0 > usbd_get_string: getting lang failed, using 0 > uhub3: on usb3 > uhub3: 2 ports with 2 removable, self powered > > > Have you tried my new USB stack, popularly called HPS USB stack ? > > No, I'm going to try that now. I'm assuming it's: > http://www.turbocat.net/~hselasky/usb4bsd/ Yes, that is correct. If you are building with the latest FreeBSD-7 current, then be aware that it might break. You need to zero at least "/usr/src/sys/dev/usb/umass.c" after installation. In general, just zero out the files that won't compile, if you get any build errors. HINT: Use the "-k" option after "make" to get all the compile errors in one go: tcsh cd /usr/src make -k buildkernel KERNCONF=custom -DNOCLEAN -DNO_CLEAN >& compile_log.txt Else my USB stack compiles fine on FreeBSD 6.2. --HPS > > I tried building 1.6.1, but I got the following: That is an old version. There has been many changes since that release. > > So I'm trying the latest. > > > And what kind of platform are you using? > > It's an Apple MacBook Pro. > Ok. --HPS From owner-freebsd-usb@FreeBSD.ORG Tue Jun 26 13:35:11 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 EF32716A468 for ; Tue, 26 Jun 2007 13:35:11 +0000 (UTC) (envelope-from ianf@clue.co.za) Received: from munchkin.clue.co.za (munchkin.clue.co.za [66.219.59.160]) by mx1.freebsd.org (Postfix) with ESMTP id B9CFB13C46C for ; Tue, 26 Jun 2007 13:35:11 +0000 (UTC) (envelope-from ianf@clue.co.za) DomainKey-Signature: a=rsa-sha1; q=dns; c=simple; s=20070313; d=clue.co.za; h=Received:Received:Received:To:cc:From:Subject:In-Reply-To:X-Attribution:Date:Message-Id; b=q7wDgTy5+F/hhrv+76ZGzCdexPemp6iGHJvqnTJjgPfd6lWUc9ugRpZ72pIiQWWzMcEozpbOQulHjVwgSl5k6aCLRP7XNgLnPB52lJVkaRmdelQc1ObckEzl7BtzSaIYnOnWTyEIFCQiA/ZYKd/YfknEV/fhfEylNqc+lAeLzAL54UHsFvRt2nKnat7W1WZPJOgJXG6Dot/bl9FqnkA8xBd7OptnGLWd5I9RUO+GP4+pAyEkyXlc8KUnMicm5nfs; Received: from uucp by munchkin.clue.co.za with local (Exim 4.66) (envelope-from ) id 1I3Asv-0000U8-0K; Tue, 26 Jun 2007 13:15:09 +0000 Received: from atlas.clue.co.za ([10.0.0.18] helo=clue.co.za) by urchin.clue.co.za with esmtpa (Exim 4.66) (envelope-from ) id 1I3Asa-0003Tl-CU; Tue, 26 Jun 2007 13:14:48 +0000 Received: from localhost ([127.0.0.1] helo=clue.co.za) by clue.co.za with esmtp (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I3AsZ-000Pnd-BI; Tue, 26 Jun 2007 15:14:47 +0200 To: Hans Petter Selasky From: Ian FREISLICH In-Reply-To: Message from Hans Petter Selasky of "Tue, 26 Jun 2007 14:55:34 +0200." <200706261455.34821.hselasky@c2i.net> X-Attribution: BOFH Date: Tue, 26 Jun 2007 15:14:47 +0200 Message-Id: Cc: freebsd-usb@freebsd.org Subject: Re: USB mouse works again in current!!! 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, 26 Jun 2007 13:35:12 -0000 Hans Petter Selasky wrote: > Hi Ian, > > On Tuesday 26 June 2007 14:03, Ian FREISLICH wrote: > > Hans Petter Selasky wrote: > > > Hi Ian, > > > > > > Debugging Host Controller Halted is not so easy. It usually means that > > > the DMA memory corrupted. > > > > I gathered it's not that easy. The controller that breaks is this one: > > > > uhci3@pci0:29:3: class=0x0c0300 card=0x72708086 chip=0x27cb8086 > > rev=0x02 hdr=0x00 vendor = 'Intel Corporation' > > device = '82801G (ICH7 Family) USB Universal Host Controller' > > class = serial bus > > subclass = USB > > > > uhci3: port 0x4040-0x405f irq 16 at device > > 29.3 on pci0 uhci3: [GIANT-LOCKED] > > uhci3: [ITHREAD] > > uhci3: LegSup = 0x1010 > > usb3: on uhci3 > > usb3: USB revision 1.0 > > usbd_get_string: getting lang failed, using 0 > > uhub3: on usb3 > > uhub3: 2 ports with 2 removable, self powered > > > > > Have you tried my new USB stack, popularly called HPS USB stack ? > > > > No, I'm going to try that now. I'm assuming it's: > > http://www.turbocat.net/~hselasky/usb4bsd/ > > Yes, that is correct. > > If you are building with the latest FreeBSD-7 current, then be aware that it > might break. You need to zero at least "/usr/src/sys/dev/usb/umass.c" after > installation. > > In general, just zero out the files that won't compile, if you get any build > errors. I'm running the latest current. After doing as you suggest, will I still have access to USB mass storage? If not, then this isn't really a workable solution. Ian -- Ian Freislich From owner-freebsd-usb@FreeBSD.ORG Tue Jun 26 14:50:42 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 796C716A400 for ; Tue, 26 Jun 2007 14:50:42 +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 E04C113C46E for ; Tue, 26 Jun 2007 14:50:41 +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.10) with ESMTPA id 360562351; Tue, 26 Jun 2007 16:50:40 +0200 From: Hans Petter Selasky To: Ian FREISLICH Date: Tue, 26 Jun 2007 16:50:38 +0200 User-Agent: KMail/1.9.5 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706261650.38869.hselasky@c2i.net> Cc: freebsd-usb@freebsd.org Subject: Re: USB mouse works again in current!!! 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, 26 Jun 2007 14:50:42 -0000 On Tuesday 26 June 2007 15:14, Ian FREISLICH wrote: > Hans Petter Selasky wrote: > > Hi Ian, > > > > On Tuesday 26 June 2007 14:03, Ian FREISLICH wrote: > > > Hans Petter Selasky wrote: > > > > Hi Ian, > > > > > > > > Debugging Host Controller Halted is not so easy. It usually means > > > > that the DMA memory corrupted. > > > > > > I gathered it's not that easy. The controller that breaks is this one: > > > > > > uhci3@pci0:29:3: class=0x0c0300 card=0x72708086 chip=0x27cb8086 > > > rev=0x02 hdr=0x00 vendor = 'Intel Corporation' > > > device = '82801G (ICH7 Family) USB Universal Host Controller' > > > class = serial bus > > > subclass = USB > > > > > > uhci3: port 0x4040-0x405f irq 16 at > > > device 29.3 on pci0 uhci3: [GIANT-LOCKED] > > > uhci3: [ITHREAD] > > > uhci3: LegSup = 0x1010 > > > usb3: on uhci3 > > > usb3: USB revision 1.0 > > > usbd_get_string: getting lang failed, using 0 > > > uhub3: on usb3 > > > uhub3: 2 ports with 2 removable, self powered > > > > > > > Have you tried my new USB stack, popularly called HPS USB stack ? > > > > > > No, I'm going to try that now. I'm assuming it's: > > > http://www.turbocat.net/~hselasky/usb4bsd/ > > > > Yes, that is correct. > > > > If you are building with the latest FreeBSD-7 current, then be aware that > > it might break. You need to zero at least "/usr/src/sys/dev/usb/umass.c" > > after installation. > > > > In general, just zero out the files that won't compile, if you get any > > build errors. > > I'm running the latest current. After doing as you suggest, will > I still have access to USB mass storage? If not, then this isn't > really a workable solution. No, you will not have access to USB mass storage unless you update "umass.c" so that it compiles. This is because they recently changed the CAM API. I will probably fix this at some point, but not right now. Also there is a contigmalloc bug in FreeBSD-7 current, last time I checked, which you maybe also want to patch. --HPS From owner-freebsd-usb@FreeBSD.ORG Tue Jun 26 18:01: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 EB43D16A473 for ; Tue, 26 Jun 2007 18:01:33 +0000 (UTC) (envelope-from andrew@dobrohot.org) Received: from smtp-4.masterhost.ru (smtp-4.masterhost.ru [83.222.24.104]) by mx1.freebsd.org (Postfix) with SMTP id 51FF613C45E for ; Tue, 26 Jun 2007 18:01:32 +0000 (UTC) (envelope-from andrew@dobrohot.org) Received: (qmail 72446 invoked from network); 26 Jun 2007 18:01:15 -0000 Received: from one.globax.biz (HELO inspirra.localdomain) (izdat%dobrohot.org@81.177.8.165) by smtp1.masterhost.ru with SMTP; 26 Jun 2007 18:01:15 -0000 Received: from inspirra.localdomain (inspirra.localdomain [192.168.2.1]) by inspirra.localdomain (8.14.1/8.13.8) with ESMTP id l5QI0HSi022821 for ; Tue, 26 Jun 2007 22:00:17 +0400 (MSD) (envelope-from andrew@dobrohot.org) Message-ID: <46815431.2010208@dobrohot.org> Date: Tue, 26 Jun 2007 22:00:17 +0400 From: Andrew Muhametshin Organization: =?windows-1251?Q?=C0=CD=CE_=22=C4=EE=E1=F0=EE=F5=EE=F2=22?= User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: freebsd-usb@freebsd.org References: <465D00D1.2030705@dobrohot.org> In-Reply-To: <465D00D1.2030705@dobrohot.org> Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: umass0: Samsung VY-H350 Voice recorder 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, 26 Jun 2007 18:01:34 -0000 Andrew Muhametshin ïèøåò: > Hello > > It is not possible to connect the device "Samsung VY-H350 Voice recorder"... > I installed the SVN version new USB a stack. > > =======START=========== > May 30 07:53:16 inspirra kernel: umass0: > May 30 07:53:16 inspirra kernel: umass0: SCSI over Bulk-Only; quirks = 0x0000 > May 30 07:53:17 inspirra kernel: umass0:6:0:-1: Attached to scbus6 > May 30 07:53:22 inspirra kernel: xptioctl: pass driver is not in the kernel > May 30 07:53:22 inspirra kernel: xptioctl: put "device pass0" in your kernel config file > May 30 07:53:27 inspirra kernel: (da0:umass-sim0:0:0:0): got CAM status 0x4 > May 30 07:53:27 inspirra kernel: (da0:umass-sim0:0:0:0): fatal error, failed to attach to device > May 30 07:53:27 inspirra kernel: (da0:umass-sim0:0:0:0): lost device > May 30 07:53:27 inspirra kernel: (da0:umass-sim0:0:0:0): removing device entry > > $ ls /dev/pass0 > /dev/pass0 > > $ uname -a > FreeBSD inspirra.localdomain 6.2-STABLE FreeBSD 6.2-STABLE #0: Wed May 30 03:46:39 MSD 2007 root@inspirra.localdomain:/SHARED/obj.inspirra/usr/src/sys/INSPIRRA i386 > =======STOP============ > I have found the description (and solution) similar problems with not supported umass-devices, here: http://root.org/~nate/freebsd/scsi/quirks.html and here: http://www.freebsd.org/cgi/query-pr.cgi?pr=65436 By analogy, has tried to create patch... I have applied my patch, and have rebuild a kernel... But unfortunately, my patch has not given result. Where I have made a mistake? Here a patch which I applied: ============================START==================================== *** sys/dev/usb/usbdevs.orig Tue Jun 19 09:34:56 2007 --- sys/dev/usb/usbdevs Tue Jun 19 06:21:10 2007 *************** *** 1679,1684 **** --- 1679,1685 ---- /* Samsung products */ product SAMSUNG ML6060 0x3008 ML-6060 laser printer + product SAMSUNG VYH350 0x500b VY-H350 Voice recorder /* SanDisk products */ product SANDISK SDDR05A 0x0001 ImageMate SDDR-05a *** src/sys/cam/scsi/scsi_da.c.orig Tue Jun 19 05:14:52 2007 --- src/sys/cam/scsi/scsi_da.c Tue Jun 19 09:27:35 2007 *************** *** 475,480 **** --- 475,487 ---- {T_DIRECT, SIP_MEDIA_REMOVABLE, "EM732X", "MP3 Player*", "1.0"}, /*quirks*/ DA_Q_NO_SYNC_CACHE }, + { + /* + * SAMSUNG VY-H350 1.00 Voice Recorder + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "*", "VY-H350*", "*"}, + /*quirks*/ DA_Q_NO_SYNC_CACHE + }, }; static disk_strategy_t dastrategy; *** sys/dev/usb/umass.c.orig Tue Jun 19 09:32:03 2007 --- sys/dev/usb/umass.c Tue Jun 19 09:32:25 2007 *************** *** 540,545 **** --- 540,549 ---- UMASS_PROTO_ATAPI | UMASS_PROTO_CBI_I, FORCE_SHORT_INQUIRY }, + { USB_VENDOR_SAMSUNG, USB_PRODUCT_SAMSUNG_VYH350, RID_WILDCARD, + UMASS_PROTO_SCSI | UMASS_PROTO_BBB, + IGNORE_RESIDUE + }, { VID_EOT, PID_EOT, RID_EOT, 0, 0 } }; ============================STOP===================================== before my patch: kernel: umass0: kernel: umass0: SCSI over Bulk-Only; quirks = 0x0000 kernel: umass0:6:0:-1: Attached to scbus6 kernel: (da0:umass-sim0:0:0:0): got CAM status 0x4 kernel: (da0:umass-sim0:0:0:0): fatal error, failed to attach to device kernel: (da0:umass-sim0:0:0:0): lost device kernel: (da0:umass-sim0:0:0:0): removing device entry after my patch: kernel: umass0: kernel: umass0: SCSI over Bulk-Only; quirks = 0x0080 kernel: umass0:6:0:-1: Attached to scbus6 kernel: (da0:umass-sim0:0:0:0): got CAM status 0x4 kernel: (da0:umass-sim0:0:0:0): fatal error, failed to attach to device kernel: (da0:umass-sim0:0:0:0): lost device kernel: (da0:umass-sim0:0:0:0): removing device entry From owner-freebsd-usb@FreeBSD.ORG Tue Jun 26 21:29:16 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 34A7816A400; Tue, 26 Jun 2007 21:29:16 +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 0BE6B13C457; Tue, 26 Jun 2007 21:29:16 +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 l5QLTFpg074690; Tue, 26 Jun 2007 21:29:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5QLTF27074686; Tue, 26 Jun 2007 21:29:15 GMT (envelope-from linimon) Date: Tue, 26 Jun 2007 21:29:15 GMT From: Mark Linimon Message-Id: <200706262129.l5QLTF27074686@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/76653: [umass] [patch] Problem with Asahi Optical usb device (Pentax Optio S50) 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, 26 Jun 2007 21:29:16 -0000 Old Synopsis: Problem with Asahi Optical usb device (Pentax Optio S50) New Synopsis: [umass] [patch] Problem with Asahi Optical usb device (Pentax Optio S50) Responsible-Changed-From-To: freebsd-i386->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Tue Jun 26 21:28:42 UTC 2007 Responsible-Changed-Why: Reassign. http://www.freebsd.org/cgi/query-pr.cgi?pr=76653 From owner-freebsd-usb@FreeBSD.ORG Tue Jun 26 21:53:19 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 8745D16A46F; Tue, 26 Jun 2007 21:53:19 +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 5510E13C468; Tue, 26 Jun 2007 21:53:19 +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 l5QLrIAw077540; Tue, 26 Jun 2007 21:53:18 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5QLrIPq077536; Tue, 26 Jun 2007 21:53:18 GMT (envelope-from gavin) Date: Tue, 26 Jun 2007 21:53:18 GMT From: Gavin Atkinson Message-Id: <200706262153.l5QLrIPq077536@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: Tue, 26 Jun 2007 21:53:19 -0000 Synopsis: ALI USB 2.0 EHCI Controller is not detected State-Changed-From-To: feedback->closed State-Changed-By: gavin State-Changed-When: Tue Jun 26 21:51:48 UTC 2007 State-Changed-Why: Submitter reports (in private email) that this is now resolved http://www.freebsd.org/cgi/query-pr.cgi?pr=83022 From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 03: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 EB65216A400 for ; Wed, 27 Jun 2007 03: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 955DF13C43E for ; Wed, 27 Jun 2007 03: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 l5R3K96N002796 for ; Wed, 27 Jun 2007 03:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5R3K9Mn002795; Wed, 27 Jun 2007 03:20:09 GMT (envelope-from gnats) Date: Wed, 27 Jun 2007 03:20:09 GMT Message-Id: <200706270320.l5R3K9Mn002795@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Alexander Logvinov 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: Alexander Logvinov List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jun 2007 03:20:10 -0000 The following reply was made to PR usb/113964; it has been noted by GNATS. From: Alexander Logvinov To: bug-followup@FreeBSD.org, kazuaki@aliceblue.jp Cc: Warner Losh Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a connection Date: Wed, 27 Jun 2007 13:12:51 +1000 Hello! Can you look on usb/107935? May it be a similar promlem? -- Best regards, Alexander From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 05: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 ED0E716A468 for ; Wed, 27 Jun 2007 05: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 94C8C13C487 for ; Wed, 27 Jun 2007 05:00:15 +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 l5R50Fkf011310 for ; Wed, 27 Jun 2007 05:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5R50FHA011309; Wed, 27 Jun 2007 05:00:15 GMT (envelope-from gnats) Date: Wed, 27 Jun 2007 05:00:15 GMT Message-Id: <200706270500.l5R50FHA011309@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: Wed, 27 Jun 2007 05:00:16 -0000 The following reply was made to PR usb/113964; it has been noted by GNATS. From: "M. Warner Losh" To: ports@logvinov.com Cc: bug-followup@FreeBSD.org, kazuaki@aliceblue.jp Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a connection Date: Tue, 26 Jun 2007 22:49:50 -0600 (MDT) In message: <408834993.20070627131251@logvinov.com> Alexander Logvinov writes: : Can you look on usb/107935? May it be a similar promlem? I'm not so sure... I'll have to try to recreate this problem on -current. Warner From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 05:20: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 0EDBB16A41F for ; Wed, 27 Jun 2007 05:20: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 D893613C458 for ; Wed, 27 Jun 2007 05: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 l5R5K79M012367 for ; Wed, 27 Jun 2007 05: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 l5R5K72f012366; Wed, 27 Jun 2007 05:20:07 GMT (envelope-from gnats) Date: Wed, 27 Jun 2007 05:20:07 GMT Message-Id: <200706270520.l5R5K72f012366@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Alexander Logvinov 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: Alexander Logvinov List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jun 2007 05:20:08 -0000 The following reply was made to PR usb/113964; it has been noted by GNATS. From: Alexander Logvinov To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/113964: [patch] ucom(4): kernel panic when dropping a connection Date: Wed, 27 Jun 2007 15:17:42 +1000 Hello! Anyway I'll try to patch my 6.2-RELEASE for test. -- Best regards, Alexander From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 06:28: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 9A55416A41F; Wed, 27 Jun 2007 06:28:11 +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 6FA1A13C43E; Wed, 27 Jun 2007 06:28:11 +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 l5R6SBsp017307; Wed, 27 Jun 2007 06:28:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5R6SBUH017303; Wed, 27 Jun 2007 06:28:11 GMT (envelope-from linimon) Date: Wed, 27 Jun 2007 06:28:11 GMT From: Mark Linimon Message-Id: <200706270628.l5R6SBUH017303@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/97174: [umass] [patch] Y-E DATA USB-FDU quirk: no synchronize 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: Wed, 27 Jun 2007 06:28:11 -0000 Synopsis: [umass] [patch] Y-E DATA USB-FDU quirk: no synchronize cache Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jun 27 06:27:48 UTC 2007 Responsible-Changed-Why: Reassign. http://www.freebsd.org/cgi/query-pr.cgi?pr=97174 From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 10:06:12 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 8DED116A400; Wed, 27 Jun 2007 10:06:12 +0000 (UTC) (envelope-from ianf@clue.co.za) Received: from munchkin.clue.co.za (munchkin.clue.co.za [66.219.59.160]) by mx1.freebsd.org (Postfix) with ESMTP id 65F0013C447; Wed, 27 Jun 2007 10:06:12 +0000 (UTC) (envelope-from ianf@clue.co.za) DomainKey-Signature: a=rsa-sha1; q=dns; c=simple; s=20070313; d=clue.co.za; h=Received:Received:Received:To:cc:From:Subject:In-Reply-To:X-Attribution:Date:Message-Id; b=Hm5tyAG0jShYpxpMiQMp+zTHugsYwfz3Wvg180V6lGPid1yk5qSQ7UDJ03SEeN3vPGv66x9a8tV6E3rWjdchqEkyNu5ExLXPkGY+KPsT39PbAF5MgdLMdhFB5pa9+wZcxcE+6kjNxZj9zU1LCkBE2DGuSmgVl55S0kx9VvdxsUhaRIVn/a5X++W4OoAVhx4T5Z3t0WM6+x6JwEzhgBvqo7Jy35uwVst6uflzcjxwRX7bHSYGgNGNR3++e1TC/3Vq; Received: from uucp by munchkin.clue.co.za with local (Exim 4.66) (envelope-from ) id 1I3UPZ-0002Uw-O3; Wed, 27 Jun 2007 10:06:09 +0000 Received: from atlas.clue.co.za ([10.0.0.18] helo=clue.co.za) by urchin.clue.co.za with esmtpa (Exim 4.66) (envelope-from ) id 1I3UOy-0001Ph-CE; Wed, 27 Jun 2007 10:05:32 +0000 Received: from localhost ([127.0.0.1] helo=clue.co.za) by clue.co.za with esmtp (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I3UOx-000130-Ic; Wed, 27 Jun 2007 12:05:31 +0200 To: Hans Petter Selasky From: Ian FREISLICH In-Reply-To: Message from Hans Petter Selasky of "Tue, 26 Jun 2007 14:55:34 +0200." <200706261455.34821.hselasky@c2i.net> X-Attribution: BOFH Date: Wed, 27 Jun 2007 12:05:31 +0200 Message-Id: Cc: freebsd-current@freebsd.org, freebsd-usb@freebsd.org Subject: Re: USB mouse works again in current!!! 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, 27 Jun 2007 10:06:12 -0000 Hans Petter Selasky wrote: > Yes, that is correct. > > If you are building with the latest FreeBSD-7 current, then be aware that it > might break. You need to zero at least "/usr/src/sys/dev/usb/umass.c" after > installation. Your USB stack fixes the external mouse which is nice. It's a pity that it breaks the trackpad and umass. Ian -- Ian Freislich From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 11:57: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 099F716A421 for ; Wed, 27 Jun 2007 11:57:10 +0000 (UTC) (envelope-from nike_d@cytexbg.com) Received: from office.suresupport.com (office.suresupport.com [213.145.98.15]) by mx1.freebsd.org (Postfix) with SMTP id 2744713C483 for ; Wed, 27 Jun 2007 11:57:08 +0000 (UTC) (envelope-from nike_d@cytexbg.com) Received: (qmail 20347 invoked by uid 1026); 27 Jun 2007 11:30:26 -0000 Received: from 213.145.98.14 by office.suresupport.com (envelope-from , uid 1004) with qmail-scanner-2.01 (clamdscan: 0.88.4/1784. Clear:RC:1(213.145.98.14):. Processed in 0.012305 secs); 27 Jun 2007 11:30:26 -0000 Received: from unknown (HELO ndenev.office.suresupport.com) (213.145.98.14) by office.suresupport.com with SMTP; 27 Jun 2007 11:30:25 -0000 Message-ID: <46824A51.4090308@cytexbg.com> Date: Wed, 27 Jun 2007 14:30:25 +0300 From: Niki Denev User-Agent: Thunderbird 2.0.0.0 (X11/20070531) MIME-Version: 1.0 To: Ian FREISLICH References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org, freebsd-usb@freebsd.org Subject: Re: USB mouse works again in current!!! 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, 27 Jun 2007 11:57:10 -0000 Ian FREISLICH wrote: > Hans Petter Selasky wrote: > >> Yes, that is correct. >> >> If you are building with the latest FreeBSD-7 current, then be aware that it >> might break. You need to zero at least "/usr/src/sys/dev/usb/umass.c" after >> installation. >> > > Your USB stack fixes the external mouse which is nice. > > It's a pity that it breaks the trackpad and umass. > > Ian > > -- > Ian Freislich > > I believe umass.c needs very little change to make it work in 7-Current, atleast it worked for me after simply adding one zero as the missing argument for the function that had changed from 6-stable to 7-current. I haven't tested how reliably it will work after this though, but my umass devices seem to be recognized. This is what i changed : --- umass-hps-orig 2007-06-27 14:25:32.000000000 +0000 +++ umass-hps-fixed 2007-06-27 14:27:17.000000000 +0000 @@ -2305,7 +2305,7 @@ mtx_lock(&(sc->sc_mtx)); #endif - if(xpt_bus_register(sc->sc_sim, sc->sc_unit) != CAM_SUCCESS) { + if(xpt_bus_register(sc->sc_sim, NULL, sc->sc_unit) != CAM_SUCCESS) { #if (__FreeBSD_version >= 700037) mtx_unlock(&(sc->sc_mtx)); #endif From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 14:10:03 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 3743416A421 for ; Wed, 27 Jun 2007 14:10:03 +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 14EEB13C44B for ; Wed, 27 Jun 2007 14:10: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 l5REA2sT059321 for ; Wed, 27 Jun 2007 14:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5REA2rt059320; Wed, 27 Jun 2007 14:10:02 GMT (envelope-from gnats) Resent-Date: Wed, 27 Jun 2007 14:10:02 GMT Resent-Message-Id: <200706271410.l5REA2rt059320@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, Andrew Muhametshin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 959CE16A421 for ; Wed, 27 Jun 2007 14:04:51 +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 8701913C44B for ; Wed, 27 Jun 2007 14:04:51 +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 l5RE4o5k005984 for ; Wed, 27 Jun 2007 14:04:51 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id l5RE4oLb005983; Wed, 27 Jun 2007 14:04:50 GMT (envelope-from nobody) Message-Id: <200706271404.l5RE4oLb005983@www.freebsd.org> Date: Wed, 27 Jun 2007 14:04:50 GMT From: Andrew Muhametshin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: usb/114068: Problems with connection of the umass device (Samsung VY-H350 Voice recorder) 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, 27 Jun 2007 14:10:03 -0000 >Number: 114068 >Category: usb >Synopsis: Problems with connection of the umass device (Samsung VY-H350 Voice recorder) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 27 14:10:02 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Andrew Muhametshin >Release: FreeBSD-6.2-STABLE >Organization: >Environment: $ uname -a FreeBSD inspirra.localdomain 6.2-STABLE FreeBSD 6.2-STABLE #7: Tue Jun 19 08:38:32 MSD 2007 root@inspirra.localdomain:/SHARED/obj.inspirra/usr/src/sys/INSPIRRA i386 >Description: After connection of the device (Samsung VY-H350 Voice recorder): kernel: umass0: kernel: umass0: SCSI over Bulk-Only; quirks = 0x0000 kernel: umass0:6:0:-1: Attached to scbus6 kernel: (da0:umass-sim0:0:0:0): got CAM status 0x4 kernel: (da0:umass-sim0:0:0:0): fatal error, failed to attach to device kernel: (da0:umass-sim0:0:0:0): lost device kernel: (da0:umass-sim0:0:0:0): removing device entry I have found the description (and solution) similar problems with not supported umass-devices, here: http://root.org/~nate/freebsd/scsi/quirks.html and here: http://www.freebsd.org/cgi/query-pr.cgi?pr=65436 By analogy, has tried to create patch: ============================START==================================== *** sys/dev/usb/usbdevs.orig Tue Jun 19 09:34:56 2007 --- sys/dev/usb/usbdevs Tue Jun 19 06:21:10 2007 *************** *** 1679,1684 **** --- 1679,1685 ---- /* Samsung products */ product SAMSUNG ML6060 0x3008 ML-6060 laser printer + product SAMSUNG VYH350 0x500b VY-H350 Voice recorder /* SanDisk products */ product SANDISK SDDR05A 0x0001 ImageMate SDDR-05a *** src/sys/cam/scsi/scsi_da.c.orig Tue Jun 19 05:14:52 2007 --- src/sys/cam/scsi/scsi_da.c Tue Jun 19 09:27:35 2007 *************** *** 475,480 **** --- 475,487 ---- {T_DIRECT, SIP_MEDIA_REMOVABLE, "EM732X", "MP3 Player*", "1.0"}, /*quirks*/ DA_Q_NO_SYNC_CACHE }, + { + /* + * SAMSUNG VY-H350 1.00 Voice Recorder + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "*", "VY-H350*", "*"}, + /*quirks*/ DA_Q_NO_SYNC_CACHE + }, }; static disk_strategy_t dastrategy; *** sys/dev/usb/umass.c.orig Tue Jun 19 09:32:03 2007 --- sys/dev/usb/umass.c Tue Jun 19 09:32:25 2007 *************** *** 540,545 **** --- 540,549 ---- UMASS_PROTO_ATAPI | UMASS_PROTO_CBI_I, FORCE_SHORT_INQUIRY }, + { USB_VENDOR_SAMSUNG, USB_PRODUCT_SAMSUNG_VYH350, RID_WILDCARD, + UMASS_PROTO_SCSI | UMASS_PROTO_BBB, + IGNORE_RESIDUE + }, { VID_EOT, PID_EOT, RID_EOT, 0, 0 } }; ============================STOP===================================== I have applied my patch, and have rebuild a kernel... But unfortunately, my patch has not given result. Where I have made a mistake? Connection of the device after my patch: kernel: umass0: kernel: umass0: SCSI over Bulk-Only; quirks = 0x0080 kernel: umass0:6:0:-1: Attached to scbus6 kernel: (da0:umass-sim0:0:0:0): got CAM status 0x4 kernel: (da0:umass-sim0:0:0:0): fatal error, failed to attach to device kernel: (da0:umass-sim0:0:0:0): lost device kernel: (da0:umass-sim0:0:0:0): removing device entry $ usbdevs -v Controller /dev/usb0: addr 125: full speed, self powered, config 1, VY-H350 Voice recorder(0x500b), Samsung(0x04e8), rev 1.00 addr 126: full speed, power 100 mA, config 1, Jabra - A320s(0x2101), Broadcom Corp(0x0a5c), rev 1.00 addr 127: full speed, self powered, config 1, OHCI root hub(0x0000), nVidia(0x0000), rev 1.00 port 1 powered port 2 powered port 3 powered port 4 powered port 5 addr 126: full speed, power 100 mA, config 1, Jabra - A320s(0x2101), Broadcom Corp(0x0a5c), rev 1.00 port 6 addr 125: full speed, self powered, config 1, VY-H350 Voice recorder(0x500b), Samsung(0x04e8), rev 1.00 port 7 powered port 8 powered >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 14:18:49 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 97E6C16A400 for ; Wed, 27 Jun 2007 14:18:49 +0000 (UTC) (envelope-from andrew@dobrohot.org) Received: from smtp-13.masterhost.ru (smtp-13.masterhost.ru [83.222.24.113]) by mx1.freebsd.org (Postfix) with SMTP id E70B113C4B7 for ; Wed, 27 Jun 2007 14:18:48 +0000 (UTC) (envelope-from andrew@dobrohot.org) Received: (qmail 86917 invoked from network); 27 Jun 2007 14:18:31 -0000 Received: from ns.km10433.keymachine.de (HELO inspirra.localdomain) (izdat%dobrohot.org@62.141.50.149) by smtp1.masterhost.ru with SMTP; 27 Jun 2007 14:18:31 -0000 Received: from inspirra.localdomain (inspirra.localdomain [192.168.2.1]) by inspirra.localdomain (8.14.1/8.13.8) with ESMTP id l5REI5Yb051276 for ; Wed, 27 Jun 2007 18:18:05 +0400 (MSD) (envelope-from andrew@dobrohot.org) Message-ID: <4682719C.5080707@dobrohot.org> Date: Wed, 27 Jun 2007 18:18:04 +0400 From: Andrew Muhametshin Organization: =?windows-1251?Q?=C0=CD=CE_=22=C4=EE=E1=F0=EE=F5=EE=F2=22?= User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit Subject: buildworld RELENG_6 + New USB stack - Stop in /usr/src/usr.bin/kdump 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, 27 Jun 2007 14:18:49 -0000 Hello It is impossible to buildworld with a new USB stack. ================ 1. Update(csup RELENG_6) /usr/src in 2007-06-26 2. $ svn --username anonsvn --password anonsvn \ checkout svn://svn.turbocat.net/i4b <...> Checked out revision 527. $cd i4b/trunk/i4b/FreeBSD.usb $ make install <...> 3. rm -rf /usr/obj 4. cd /usr/src make buildworld <...>skip<...> ===> usr.bin/kdump (all) cc -O2 -fno-strict-aliasing -pipe -march=athlon-tbird -I/usr/src/usr.bin/kdump/../ktrace -I/usr/src/usr.bin/kdump/../.. -c /usr/src/usr.bin/kdump/kdump.c cc -O2 -fno-strict-aliasing -pipe -march=athlon-tbird -I/usr/src/usr.bin/kdump/../ktrace -I/usr/src/usr.bin/kdump/../.. -c ioctl.c ioctl.c: In function `ioctlname': ioctl.c:973: error: syntax error before ';' token ioctl.c:1191: error: syntax error before ';' token ioctl.c:1517: error: syntax error before ';' token ioctl.c:1653: error: syntax error before ';' token ioctl.c:2193: error: syntax error before ';' token ioctl.c:2869: error: syntax error before ';' token *** Error code 1 Stop in /usr/src/usr.bin/kdump. *** Error code 1 5. $ nl -b a /usr/obj/usr/src/usr.bin/kdump/ioctl.c | egrep "^ +(973|1191|2193|1653|1517|2869)" 973 if (val == USB_DEVICE_POLL_URB) 1191 if (val == USB_DEVICE_VEP_SETUP) 1517 if (val == USB_DEVICE_GET_URB) 1653 if (val == USB_DEVICE_CANCEL_URB) 2193 if (val == USB_DEVICE_VEP_UNSETUP) 2869 if (val == USB_DEVICE_PUT_URB) From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 16:05: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 02DC016A48F for ; Wed, 27 Jun 2007 16:05:25 +0000 (UTC) (envelope-from rea-fbsd@codelabs.ru) Received: from pobox.codelabs.ru (pobox.codelabs.ru [144.206.177.45]) by mx1.freebsd.org (Postfix) with ESMTP id AEA6913C4AD for ; Wed, 27 Jun 2007 16:05:24 +0000 (UTC) (envelope-from rea-fbsd@codelabs.ru) DomainKey-Signature: a=rsa-sha1; q=dns; c=simple; s=one; d=codelabs.ru; h=Received:Date:From:To:Cc:Message-ID:References:MIME-Version:Content-Type:Content-Disposition:In-Reply-To:Sender:X-Spam-Status:Subject; b=ntRLxLIbCcxA9QSd2kqA45AEM8fuypXYVPCXrBmPK03csV9SxXrbTMiNU8MQmtZKzzkxz1K/uCdpCY7BQ22Ii25G5EeS0W/NNYPjetX8eQ9n5xzv3OpKcaTUJ9v2R/rwPtuRqnIjGuIeGyf40GbzU6cuqnrVNSYxUDDOwRZ2SYU=; Received: from void.codelabs.ru (void.codelabs.ru [144.206.177.25]) by pobox.codelabs.ru with esmtpsa (TLSv1:AES256-SHA:256) id 1I3ZrL-0004LO-Rz; Wed, 27 Jun 2007 19:55:11 +0400 Date: Wed, 27 Jun 2007 19:55:07 +0400 From: Eygene Ryabinkin To: freebsd-usb@freebsd.org Message-ID: <20070627155507.GQ937@void.codelabs.ru> References: <4682719C.5080707@dobrohot.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <4682719C.5080707@dobrohot.org> Sender: rea-fbsd@codelabs.ru X-Spam-Status: No, score=-2.2 required=4.0 tests=ALL_TRUSTED,AWL,BAYES_05 Cc: Subject: Re: buildworld RELENG_6 + New USB stack - Stop in /usr/src/usr.bin/kdump 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, 27 Jun 2007 16:05:25 -0000 Andrew, *, good day. Wed, Jun 27, 2007 at 06:18:04PM +0400, Andrew Muhametshin wrote: > Hello > > It is impossible to buildworld with a new USB stack. +1 from me: does not work on 7-CURRENT too. The same diagnostics. > make buildworld > <...>skip<...> > ===> usr.bin/kdump (all) > cc -O2 -fno-strict-aliasing -pipe -march=athlon-tbird > -I/usr/src/usr.bin/kdump/../ktrace -I/usr/src/usr.bin/kdump/../.. -c > /usr/src/usr.bin/kdump/kdump.c > cc -O2 -fno-strict-aliasing -pipe -march=athlon-tbird > -I/usr/src/usr.bin/kdump/../ktrace -I/usr/src/usr.bin/kdump/../.. -c ioctl.c > ioctl.c: In function `ioctlname': > ioctl.c:973: error: syntax error before ';' token > ioctl.c:1191: error: syntax error before ';' token > ioctl.c:1517: error: syntax error before ';' token > ioctl.c:1653: error: syntax error before ';' token > ioctl.c:2193: error: syntax error before ';' token > ioctl.c:2869: error: syntax error before ';' token > *** Error code 1 > > Stop in /usr/src/usr.bin/kdump. > *** Error code 1 -- Eygene From owner-freebsd-usb@FreeBSD.ORG Wed Jun 27 16:20:05 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 1D81416A41F for ; Wed, 27 Jun 2007 16:20:05 +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 89E4013C4B0 for ; Wed, 27 Jun 2007 16:20:04 +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.10) with ESMTPA id 529937075; Wed, 27 Jun 2007 18:20:01 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Wed, 27 Jun 2007 18:19:59 +0200 User-Agent: KMail/1.9.5 References: <4682719C.5080707@dobrohot.org> <20070627155507.GQ937@void.codelabs.ru> In-Reply-To: <20070627155507.GQ937@void.codelabs.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706271819.59920.hselasky@c2i.net> Cc: Subject: Re: buildworld RELENG_6 + New USB stack - Stop in /usr/src/usr.bin/kdump 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, 27 Jun 2007 16:20:05 -0000 On Wednesday 27 June 2007 17:55, Eygene Ryabinkin wrote: > Andrew, *, good day. > > Wed, Jun 27, 2007 at 06:18:04PM +0400, Andrew Muhametshin wrote: > > Hello > > > > It is impossible to buildworld with a new USB stack. > > +1 from me: does not work on 7-CURRENT too. The same diagnostics. > > > make buildworld > > <...>skip<...> > > ===> usr.bin/kdump (all) > > cc -O2 -fno-strict-aliasing -pipe -march=athlon-tbird > > -I/usr/src/usr.bin/kdump/../ktrace -I/usr/src/usr.bin/kdump/../.. -c > > /usr/src/usr.bin/kdump/kdump.c > > cc -O2 -fno-strict-aliasing -pipe -march=athlon-tbird > > -I/usr/src/usr.bin/kdump/../ktrace -I/usr/src/usr.bin/kdump/../.. -c > > ioctl.c ioctl.c: In function `ioctlname': > > ioctl.c:973: error: syntax error before ';' token > > ioctl.c:1191: error: syntax error before ';' token > > ioctl.c:1517: error: syntax error before ';' token > > ioctl.c:1653: error: syntax error before ';' token > > ioctl.c:2193: error: syntax error before ';' token > > ioctl.c:2869: error: syntax error before ';' token > > *** Error code 1 > > > > Stop in /usr/src/usr.bin/kdump. > > *** Error code 1 I've committed the following to my SVN repo: Index: usb.h =================================================================== --- usb.h (revision 519) +++ usb.h (working copy) @@ -815,12 +815,12 @@ #define USB_DEVICESTATS _IOR ('U', 5, struct usb_device_stats) #define USB_DEVICEENUMERATE _IOW ('U', 6, struct usb_device_enumerate) -#define USB_DEVICE_VEP_SETUP _IOW ('U',10, struct usb_device_vep_setup); -#define USB_DEVICE_VEP_UNSETUP _IOW ('U',11, struct usb_device_vep_unsetup); -#define USB_DEVICE_PUT_URB _IOW ('U',12, struct usb_device_put_urb); -#define USB_DEVICE_GET_URB _IOW ('U',13, struct usb_device_get_urb); -#define USB_DEVICE_CANCEL_URB _IOW ('U',14, struct usb_device_cancel_urb); -#define USB_DEVICE_POLL_URB _IOR ('U',15, struct usb_device_poll_urb); +#define USB_DEVICE_VEP_SETUP _IOW ('U',10, struct usb_device_vep_setup) +#define USB_DEVICE_VEP_UNSETUP _IOW ('U',11, struct usb_device_vep_unsetup) +#define USB_DEVICE_PUT_URB _IOW ('U',12, struct usb_device_put_urb) +#define USB_DEVICE_GET_URB _IOW ('U',13, struct usb_device_get_urb) +#define USB_DEVICE_CANCEL_URB _IOW ('U',14, struct usb_device_cancel_urb) +#define USB_DEVICE_POLL_URB _IOR ('U',15, struct usb_device_poll_urb) /* Generic HID device */ #define USB_GET_REPORT_DESC _IOR ('U', 21, struct usb_ctl_report_desc) Seems like a ";" sneaked in after some not yet in use ioctl definitions. Try a "svn update" and copy in the "usb.h" file from the repo to "/usr/src/sys/dev/usb/usb.h" . Thanks for reporting. --HPS From owner-freebsd-usb@FreeBSD.ORG Thu Jun 28 05: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 6798416A41F for ; Thu, 28 Jun 2007 05: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 13F2013C455 for ; Thu, 28 Jun 2007 05:00:15 +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 l5S50EBe036524 for ; Thu, 28 Jun 2007 05: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 l5S50EED036523; Thu, 28 Jun 2007 05:00:14 GMT (envelope-from gnats) Date: Thu, 28 Jun 2007 05:00:14 GMT Message-Id: <200706280500.l5S50EED036523@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/107101: 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, 28 Jun 2007 05:00:15 -0000 The following reply was made to PR usb/107101; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/107101: commit references a PR Date: Thu, 28 Jun 2007 04:51:30 +0000 (UTC) imp 2007-06-28 04:51:19 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Quirk for Denver MP3 player usb. Submitted by: Ed Schouten PR: 107101 Approved by: re (blanket for device supprot) Revision Changes Path 1.216 +8 -0 src/sys/cam/scsi/scsi_da.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 28 05:03: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 ABDCE16A468; Thu, 28 Jun 2007 05:03: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 8572613C483; Thu, 28 Jun 2007 05:03:39 +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 l5S53dcl036940; Thu, 28 Jun 2007 05:03:39 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5S53dFl036936; Wed, 27 Jun 2007 23:03:39 -0600 (MDT) (envelope-from imp) Date: Wed, 27 Jun 2007 23:03:39 -0600 (MDT) From: Warner Losh Message-Id: <200706280503.l5S53dFl036936@freefall.freebsd.org> To: ed@fxq.nl, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/107101: [umass] [patch] Quirk for Denver MP3 player 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, 28 Jun 2007 05:03:39 -0000 Synopsis: [umass] [patch] Quirk for Denver MP3 player State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Wed Jun 27 23:03:23 MDT 2007 State-Changed-Why: Fixed! http://www.freebsd.org/cgi/query-pr.cgi?pr=107101 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 28 05:20:10 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 1573316A421 for ; Thu, 28 Jun 2007 05:20:10 +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 05B6313C4BB for ; Thu, 28 Jun 2007 05:20:10 +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 l5S5K9L9037685 for ; Thu, 28 Jun 2007 05:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5S5K9Hu037683; Thu, 28 Jun 2007 05:20:09 GMT (envelope-from gnats) Date: Thu, 28 Jun 2007 05:20:09 GMT Message-Id: <200706280520.l5S5K9Hu037683@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/110122: 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, 28 Jun 2007 05:20:10 -0000 The following reply was made to PR usb/110122; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/110122: commit references a PR Date: Thu, 28 Jun 2007 05:15:43 +0000 (UTC) imp 2007-06-28 05:15:34 UTC FreeBSD src repository Modified files: sys/dev/usb ugen.c Log: For both interrupt and isochronous (the patch was unclear which one it applied to, but I'd think both), honor the timeout that's been set. Return 0 bytes to be consistant with what libusb expects. By default, the timeout will be zero, so only applications that change the default will see a change. The patch only seems to apply to the interrupt end points, but it should also apply to isochronous endpoints as well. Submitted by: Maurice Castro PR: 110122 Approved by: re (blanket) Revision Changes Path 1.110 +13 -3 src/sys/dev/usb/ugen.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 28 05:51: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 2B4A616A46B; Thu, 28 Jun 2007 05:51:11 +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 0490A13C44B; Thu, 28 Jun 2007 05:51:11 +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 l5S5pACB040689; Thu, 28 Jun 2007 05:51:10 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5S5pAk7040685; Wed, 27 Jun 2007 23:51:10 -0600 (MDT) (envelope-from imp) Date: Wed, 27 Jun 2007 23:51:10 -0600 (MDT) From: Warner Losh Message-Id: <200706280551.l5S5pAk7040685@freefall.freebsd.org> To: maurice@castro.aus.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/110122: [ugen] [patch] usb_interrupt_read does not respect timeout 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, 28 Jun 2007 05:51:11 -0000 Synopsis: [ugen] [patch] usb_interrupt_read does not respect timeout State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Wed Jun 27 23:50:55 MDT 2007 State-Changed-Why: fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=110122 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 28 05:52:28 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 4B92D16A469; Thu, 28 Jun 2007 05:52:28 +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 21DA513C45B; Thu, 28 Jun 2007 05:52:28 +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 l5S5qSMW040855; Thu, 28 Jun 2007 05:52:28 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5S5qRRk040851; Wed, 27 Jun 2007 23:52:27 -0600 (MDT) (envelope-from imp) Date: Wed, 27 Jun 2007 23:52:27 -0600 (MDT) From: Warner Losh Message-Id: <200706280552.l5S5qRRk040851@freefall.freebsd.org> To: xdivac02@stud.fit.vutbr.cz, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/74609: [umodem] [patch] allowing cdma modems to work at full speed 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, 28 Jun 2007 05:52:28 -0000 Synopsis: [umodem] [patch] allowing cdma modems to work at full speed State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Wed Jun 27 23:51:38 MDT 2007 State-Changed-Why: Bumped the default buffer size. No need to be stingy these days. http://www.freebsd.org/cgi/query-pr.cgi?pr=74609 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 28 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 6D5A116A468 for ; Thu, 28 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 1721113C458 for ; Thu, 28 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 l5S60GC8041345 for ; Thu, 28 Jun 2007 06:00:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5S60GSm041344; Thu, 28 Jun 2007 06:00:16 GMT (envelope-from gnats) Date: Thu, 28 Jun 2007 06:00:16 GMT Message-Id: <200706280600.l5S60GSm041344@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/74609: 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, 28 Jun 2007 06:00:17 -0000 The following reply was made to PR usb/74609; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/74609: commit references a PR Date: Thu, 28 Jun 2007 05:50:21 +0000 (UTC) imp 2007-06-28 05:50:14 UTC FreeBSD src repository Modified files: sys/dev/usb umodem.c Log: With the advent of G3/CDMA modems, the old buffer sizes are no longer adequate. Increase them to 1k. The referenced PR made this a sysctl, but that seems like overkill to me. The difference between 320 and 2048 bytes in modern systems, even embedded ones, seems to be in the noise to be worth the extra hair to make it settable. PR: 74609 Submitted by: Divacky Roman Approved by: re (blanket) Revision Changes Path 1.70 +4 -4 src/sys/dev/usb/umodem.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 28 06:20:10 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 78B4216A41F for ; Thu, 28 Jun 2007 06:20:10 +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 6911413C457 for ; Thu, 28 Jun 2007 06:20:10 +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 l5S6K9BU042498 for ; Thu, 28 Jun 2007 06:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5S6K9vU042497; Thu, 28 Jun 2007 06:20:09 GMT (envelope-from gnats) Date: Thu, 28 Jun 2007 06:20:09 GMT Message-Id: <200706280620.l5S6K9vU042497@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/92306: 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, 28 Jun 2007 06:20:10 -0000 The following reply was made to PR usb/92306; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/92306: commit references a PR Date: Thu, 28 Jun 2007 06:13:03 +0000 (UTC) imp 2007-06-28 06:12:55 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Support for iRiver U10 USB connection PR: 92306 Submitted by: Soren Dossing Approved by: re (blanket) Revision Changes Path 1.217 +8 -0 src/sys/cam/scsi/scsi_da.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 28 06:30: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 3E1A916A468 for ; Thu, 28 Jun 2007 06:30: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 DEDBD13C455 for ; Thu, 28 Jun 2007 06: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 l5S6U8N5043248 for ; Thu, 28 Jun 2007 06: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 l5S6U8tA043245; Thu, 28 Jun 2007 06:30:08 GMT (envelope-from gnats) Date: Thu, 28 Jun 2007 06:30:08 GMT Message-Id: <200706280630.l5S6U8tA043245@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/94311: 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, 28 Jun 2007 06:30:09 -0000 The following reply was made to PR usb/94311; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/94311: commit references a PR Date: Thu, 28 Jun 2007 06:22:48 +0000 (UTC) imp 2007-06-28 06:22:40 UTC FreeBSD src repository Modified files: sys/dev/usb ugen.c Log: The timeout is in milliseconds, not in hz. Only the portion of the patch that converts ms to ticks was used. Another PR states that a return code of 0 is the right one for libusb. Submitted by: Lonnie Mendez PR: 94311 Approved by: re (blanket) Revision Changes Path 1.111 +2 -2 src/sys/dev/usb/ugen.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 28 15:18: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 69F8A16A469; Thu, 28 Jun 2007 15:18: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 413A613C480; Thu, 28 Jun 2007 15:18: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 l5SFIMru087349; Thu, 28 Jun 2007 15:18:22 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5SFIMjq087345; Thu, 28 Jun 2007 09:18:22 -0600 (MDT) (envelope-from imp) Date: Thu, 28 Jun 2007 09:18:22 -0600 (MDT) From: Warner Losh Message-Id: <200706281518.l5SFIMjq087345@freefall.freebsd.org> To: jpandrusky@gmail.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/85992: [uhid] [patch] USB stops working when trying to read from a uhid device on the Saitek Gaming Keyboard 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, 28 Jun 2007 15:18:22 -0000 Synopsis: [uhid] [patch] USB stops working when trying to read from a uhid device on the Saitek Gaming Keyboard State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Thu Jun 28 09:17:50 MDT 2007 State-Changed-Why: This has already been fixed in hps' stack, and was a bug report about that stack. http://www.freebsd.org/cgi/query-pr.cgi?pr=85992 From owner-freebsd-usb@FreeBSD.ORG Thu Jun 28 22:31:20 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 69A3316A400 for ; Thu, 28 Jun 2007 22:31:20 +0000 (UTC) (envelope-from andrew@dobrohot.org) Received: from smtp-18.masterhost.ru (smtp-18.masterhost.ru [83.222.24.118]) by mx1.freebsd.org (Postfix) with SMTP id B525313C4BE for ; Thu, 28 Jun 2007 22:31:19 +0000 (UTC) (envelope-from andrew@dobrohot.org) Received: (qmail 67078 invoked from network); 28 Jun 2007 22:31:02 -0000 Received: from one.globax.biz (HELO inspirra.localdomain) (izdat%dobrohot.org@81.177.8.165) by smtp1.masterhost.ru with SMTP; 28 Jun 2007 22:31:02 -0000 Received: from inspirra.localdomain (inspirra.localdomain [192.168.2.1]) by inspirra.localdomain (8.14.1/8.13.8) with ESMTP id l5SMUJud060780 for ; Fri, 29 Jun 2007 02:30:19 +0400 (MSD) (envelope-from andrew@dobrohot.org) Message-ID: <4684367B.3090504@dobrohot.org> Date: Fri, 29 Jun 2007 02:30:19 +0400 From: Andrew Muhametshin Organization: =?windows-1251?Q?=C0=CD=CE_=22=C4=EE=E1=F0=EE=F5=EE=F2=22?= User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit Subject: conflict between USB and VGA 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, 28 Jun 2007 22:31:20 -0000 Hello RELENG_6_20070628 New USB stack (revision 528) # dmesg -a | egrep "usb2|uscanner|nvidia|CPU:|avail memory" CPU: AMD Duron(tm) Processor (700.03-MHz 686-class CPU) avail memory = 511643648 (487 MB) nvidia0: mem 0xdc000000-0xdcffffff,0xd0000000-0xd7ffffff irq 11 at device 0.0 on pci1 nvidia0: [GIANT-LOCKED] usb2: EHCI version 0.95 usb2: on ehci0 usb2: 480MBps High Speed USB v2.0 uscanner0: After scanning, with use of the "Sane" program (through usanner), there are extraneous strips on the image, but much more often process of scanning hangs(interrupts). But(!) I have found out, that this behaviour appears only at the working Xorg. Having investigated more in detail this behaviour, I have found out dependence between activity during work in the Xwindow and problems of scanning. I have tried to disconnect "Assign IRQ For VGA" in BIOS, but in this case the "Sane" program cannot define my scanner, in spite of the fact that system (at loading the uscanner-module) defines it. And as there are two more problems and is possible they as that are interconnected: 1. If I include line "device usb" in my kernel configuration file - my usb controller is not defined. But if I build kernel without this line, but I load "usb.ko" as the module - in this case usb controller is defined. 2. Sane program does not define my scanner through the "ugen" device, but only through the "uscanner" device. In spite of the fact that system (at loading the ugen-module) defines it. With best regards Andrew M. P.S. I am sorry for my English. I am compelled to use the electronic translator. From owner-freebsd-usb@FreeBSD.ORG Fri Jun 29 19:35:43 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 B9A4316A469 for ; Fri, 29 Jun 2007 19:35:43 +0000 (UTC) (envelope-from jani.piitulainen@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id 52F6C13C468 for ; Fri, 29 Jun 2007 19:35:43 +0000 (UTC) (envelope-from jani.piitulainen@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so445702uge for ; Fri, 29 Jun 2007 12:35:42 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=uXle+eyz0Kjg8CcGHt4d2ndlYUDWQ+KaPGfnBK8tuDsqfcagehs2t60NMHcf4ZkbRixnM3Xqj1NcPzEeBb6ZixtWbvqwb25DLaUG4q6pKwGs/fZKjtW+CzPjcbRYTL8jDBe5xE1Yx9XYC4lXYgCYzxugOq7QOPWOlVyP7CZhDrA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=Tzvh6FN1bDX4gJ/3ZGnRTuFsaVcPo91/85Bn2jEhVyKHG7u4zTwyyKw6BTzch1zClMic9XBDW6E8PksNxNOU0juxsML7r94uikX/IUABL4fff3WEZ61yzI6Wyl1cJhS5BpwZFBolyiIxRALq6nu4R8ExFKBVgPoByu4Z4mXVelQ= Received: by 10.82.112.3 with SMTP id k3mr6898174buc.1183144226947; Fri, 29 Jun 2007 12:10:26 -0700 (PDT) Received: from ?192.168.1.100? ( [62.143.233.37]) by mx.google.com with ESMTP id e8sm32237526muf.2007.06.29.12.10.26 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 29 Jun 2007 12:10:26 -0700 (PDT) Message-ID: <46855928.8040508@gmail.com> Date: Fri, 29 Jun 2007 21:10:32 +0200 From: Jani Piitulainen User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: RTL8187 USB wireless dongle 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, 29 Jun 2007 19:35:43 -0000 Hi, I'd want to attempt partly writing or porting Linux driver to FreeBSD. Which readymade usb-wifi driver would be a good "template" to start from? Any GPL-license issues if I choose to port the Linux driver? RTL8187 appears to be a common 802.11g chipset now, in a local store most dongles were based on that chipset (like Netgear wg111v2, D-link and several OEMs for ex. Digitus) and it's also been integrated on many motherboards. Linux driver for RTL8187 can be found at "http://sourceforge.net/projects/rtl8180-sa2400". /Jani From owner-freebsd-usb@FreeBSD.ORG Fri Jun 29 19:50:19 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 1D6AB16A421 for ; Fri, 29 Jun 2007 19:50:19 +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 CF04013C448 for ; Fri, 29 Jun 2007 19:50:18 +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 l5TJo3nA062235; Fri, 29 Jun 2007 13:50:04 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 29 Jun 2007 13:50:41 -0600 (MDT) Message-Id: <20070629.135041.43008293.imp@bsdimp.com> To: jani.piitulainen@gmail.com From: "M. Warner Losh" In-Reply-To: <46855928.8040508@gmail.com> References: <46855928.8040508@gmail.com> 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]); Fri, 29 Jun 2007 13:50:04 -0600 (MDT) Cc: freebsd-usb@freebsd.org Subject: Re: RTL8187 USB wireless dongle 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, 29 Jun 2007 19:50:19 -0000 In message: <46855928.8040508@gmail.com> Jani Piitulainen writes: : I'd want to attempt partly writing or porting Linux driver to FreeBSD. Cool! : Which readymade usb-wifi driver would be a good "template" to start : from? if_rum I think is the most modern, but if_ural isn't bad either. I've not looked at the others. : Any GPL-license issues if I choose to port the Linux driver? As for GPL code, if you create a derivative work, you must license it under GPL. If the driver is GPL'd, then it won't be in the default kernel. If you use it as a hardware manual for the device and write your own driver from scratch, then you are free to license it however you want. Do not cut and paste code between the two, which is a definite legal no no. It would be better if you made sure that things weren't too similar either. Obviously, tables of register values to write to the card are hard to do differently, and copyright law recognizes this and tends not to offer copyright protection to those sorts of things[*]. : RTL8187 appears to be a common 802.11g chipset now, in a local store : most dongles were based on that chipset (like Netgear wg111v2, D-link : and several OEMs for ex. Digitus) and it's also been integrated on many : motherboards. : : Linux driver for RTL8187 can be found at : "http://sourceforge.net/projects/rtl8180-sa2400". They were selling here for $20 a little while ago. Warner [*] I'm not a lawyer, but merely relating a layman's understanding to another layman. If you need legal advise, consult with a competent lawyer. Copyright law can get quite murky at times around the edges and you are best off not trying to guess which side of the line any specific action would be w/o consulting a lawyer. From owner-freebsd-usb@FreeBSD.ORG Fri Jun 29 20:15:38 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 28BB016A4C2 for ; Fri, 29 Jun 2007 20:15:38 +0000 (UTC) (envelope-from james-freebsd-amd64@jrv.org) Received: from mail.jrv.org (rrcs-24-73-246-106.sw.biz.rr.com [24.73.246.106]) by mx1.freebsd.org (Postfix) with ESMTP id BDE8F13C46E for ; Fri, 29 Jun 2007 20:15:37 +0000 (UTC) (envelope-from james-freebsd-amd64@jrv.org) Received: from imac.housenet.jrv (iMac.housenet.jrv [192.168.3.150]) by mail.jrv.org (8.14.1/8.13.1) with ESMTP id l5TJKL6E027802; Fri, 29 Jun 2007 14:20:21 -0500 (CDT) (envelope-from james-freebsd-amd64@jrv.org) DKIM-Signature: v=0.5; a=rsa-sha256; c=simple/simple; d=jrv.org; s=enigma; t=1183144822; bh=Hu3ENXXn+gJqUFB0W+/DNvLszk16dhyvx8JEH9jIRso=; h=DomainKey-Signature: Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: Content-Type:Content-Transfer-Encoding; b=WN3Bk2W5MyYaZVKnHTJDN2lH 5SsYGEmUF7T4uFov1rAZm+QPOZb0WO8j1w/VLhS197Xcxetj/tU1xJur6ob7rypf5L2 M1nqW4kEhBGhC4BkroF66Rz6WhXu200KmdiDqFrgQCBN+l7XpF3KJuTc05EeJDqgM82 pstK43hVjjw2k= DomainKey-Signature: a=rsa-sha1; s=enigma; d=jrv.org; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: content-type:content-transfer-encoding; b=IPkjPP3nxeRoscEIgUi08MygAxNijHjIK4mIdnS0AYpvXa2FHv6DXBGeoGaMnUHVm /4Pa2agXgashFPNIFG7lVyCtgRyD9nTY1RY0XI4BqlFGhdOH7+oGbDr+xcm+QCbQyYS j4EjiCpPP0p9XY6ZUdkCPBnyE3JltXcDSdzDGpY= Message-ID: <46855B75.5010309@jrv.org> Date: Fri, 29 Jun 2007 14:20:21 -0500 From: "James R. Van Artsdalen" User-Agent: Thunderbird 2.0.0.4 (Macintosh/20070604) MIME-Version: 1.0 To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: sb/113454: EHCI error 6/EHCI Hub error 4 -CURRENT 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, 29 Jun 2007 20:15:38 -0000 *Larry Rosenman writes: *> During boot, I see: > ehci0: mem 0xd8500400-0xd85007ff irq 17 at device 29.7 on pci0 > ehci0: Reserved 0x400 bytes for rid 0x10 type 3 at 0xd8500400 > ehci0: [GIANT-LOCKED] > ehci0: [ITHREAD] > usb3: EHCI version 1.0 > usb3: companion controllers, 2 ports each: usb0 usb1 usb2 > usb3: on ehci0 > usb3: USB revision 2.0 > uhub3: on usb3 > device_attach: uhub3 attach returned 6 > usb3: port 0, set config at addr 1 failed > usb3: root hub problem, error=4 I see this only if more than 4GB of RAM is used. Below are the interesting parts of a diff between booting an 8GB system normally and with hw.physmem=4g set in the loader: *** 4gb Fri Jun 29 07:57:40 2007 --- 8gb Fri Jun 29 07:38:43 2007 *************** *** 404,410 **** usb1: on uhci1 usb1: USB revision 1.0 uhub1: on usb1 ! uhub1: 2 ports with 2 removable, self powered uhci2: port 0xff40-0xff5f irq 18 at device 29.2 on pci0 uhci2: Reserved 0x20 bytes for rid 0x20 type 4 at 0xff40 ioapic0: routing intpin 18 (PCI IRQ 18) to vector 53 --- 405,413 ---- usb1: on uhci1 usb1: USB revision 1.0 uhub1: on usb1 ! device_attach: uhub1 attach returned 6 ! usb1: port 0, set config at addr 1 failed ! usb1: root hub problem, error=4 uhci2: port 0xff40-0xff5f irq 18 at device 29.2 on pci0 uhci2: Reserved 0x20 bytes for rid 0x20 type 4 at 0xff40 ioapic0: routing intpin 18 (PCI IRQ 18) to vector 53 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 29 20:21:37 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 CB70016A473; Fri, 29 Jun 2007 20:21:37 +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 A0BA113C45B; Fri, 29 Jun 2007 20:21:37 +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 l5TKLbDa041772; Fri, 29 Jun 2007 20:21:37 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5TKLbld041768; Fri, 29 Jun 2007 14:21:37 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 14:21:37 -0600 (MDT) From: Warner Losh Message-Id: <200706292021.l5TKLbld041768@freefall.freebsd.org> To: maho@horneffer.dyndns.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/71605: [umass] [patch] umass doesn't recognize multiple slots of many-in-one USB card reader/writer [4.10] 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, 29 Jun 2007 20:21:37 -0000 Synopsis: [umass] [patch] umass doesn't recognize multiple slots of many-in-one USB card reader/writer [4.10] State-Changed-From-To: open->closed State-Changed-By: imp State-Changed-When: Fri Jun 29 14:21:01 MDT 2007 State-Changed-Why: FreeBSD 6.x (and maybe 5.x) work correctly. http://www.freebsd.org/cgi/query-pr.cgi?pr=71605 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 29 20:27: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 8EA6216A46E; Fri, 29 Jun 2007 20:27:04 +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 623DB13C46C; Fri, 29 Jun 2007 20:27:04 +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 l5TKR4lo041965; Fri, 29 Jun 2007 20:27:04 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5TKR4b9041961; Fri, 29 Jun 2007 14:27:04 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 14:27:04 -0600 (MDT) From: Warner Losh Message-Id: <200706292027.l5TKR4b9041961@freefall.freebsd.org> To: lmendez19@austin.rr.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/94311: [ugen][PATCH] allow interrupt IN transactions to be affected by USB_SET_TIMEOUT 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, 29 Jun 2007 20:27:04 -0000 Synopsis: [ugen][PATCH] allow interrupt IN transactions to be affected by USB_SET_TIMEOUT State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 14:26:45 MDT 2007 State-Changed-Why: This has been updated in -current. http://www.freebsd.org/cgi/query-pr.cgi?pr=94311 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 29 20:32:37 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 4693A16A469; Fri, 29 Jun 2007 20:32:37 +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 1E02213C44C; Fri, 29 Jun 2007 20:32:37 +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 l5TKWaeO044248; Fri, 29 Jun 2007 20:32:36 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5TKWaMa044244; Fri, 29 Jun 2007 14:32:36 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 14:32:36 -0600 (MDT) From: Warner Losh Message-Id: <200706292032.l5TKWaMa044244@freefall.freebsd.org> To: lmendez19@austin.rr.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/94946: [uhub] [patch] code dynamic status size for status change endpoint 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, 29 Jun 2007 20:32:37 -0000 Synopsis: [uhub] [patch] code dynamic status size for status change endpoint State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 14:32:23 MDT 2007 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=94946 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 29 20:40: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 B07F716A400 for ; Fri, 29 Jun 2007 20:40: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 9F3F513C45A for ; Fri, 29 Jun 2007 20:40: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 l5TKe9oR045464 for ; Fri, 29 Jun 2007 20:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5TKe9aS045463; Fri, 29 Jun 2007 20:40:09 GMT (envelope-from gnats) Date: Fri, 29 Jun 2007 20:40:09 GMT Message-Id: <200706292040.l5TKe9aS045463@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/94946: 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, 29 Jun 2007 20:40:09 -0000 The following reply was made to PR usb/94946; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/94946: commit references a PR Date: Fri, 29 Jun 2007 20:34:51 +0000 (UTC) imp 2007-06-29 20:34:43 UTC FreeBSD src repository Modified files: sys/dev/usb uhub.c Log: Change uhub to dynamic status size for status change endpoint. From a pr, the submitter says: Found this while running freebsd as guest in qemu with -usb parameter. The patch implements the missing dynamic size based on number of ports a hub has. Submitted by: Lonnie Mendez PR: 94946 Approved by: re@ (blanket) Revision Changes Path 1.81 +2 -2 src/sys/dev/usb/uhub.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 29 21:10:10 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 B8F8416A421 for ; Fri, 29 Jun 2007 21:10:10 +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 A8FCB13C447 for ; Fri, 29 Jun 2007 21:10:10 +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 l5TLAAET047155 for ; Fri, 29 Jun 2007 21:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5TLAAj4047152; Fri, 29 Jun 2007 21:10:10 GMT (envelope-from gnats) Date: Fri, 29 Jun 2007 21:10:10 GMT Message-Id: <200706292110.l5TLAAj4047152@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/90162: 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, 29 Jun 2007 21:10:10 -0000 The following reply was made to PR usb/90162; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/90162: commit references a PR Date: Fri, 29 Jun 2007 21:07:48 +0000 (UTC) imp 2007-06-29 21:07:41 UTC FreeBSD src repository Modified files: sys/dev/usb ums.c usb_quirks.c usb_quirks.h usbdevs Log: Add support for various MS Wirless usb mice. the patch is from Hellmuth with some refinements by myself and flz@. It works for me with my non-MS mice, so nothing should be broken by it. Submitted by: Hellmuth Michaelis PR: 90162 Approved by: re (blanket) Revision Changes Path 1.95 +36 -4 src/sys/dev/usb/ums.c 1.61 +8 -0 src/sys/dev/usb/usb_quirks.c 1.25 +17 -15 src/sys/dev/usb/usb_quirks.h 1.312 +72 -64 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 29 21:13: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 53C1A16A400; Fri, 29 Jun 2007 21:13:04 +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 2C82913C43E; Fri, 29 Jun 2007 21:13:04 +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 l5TLD4hE047566; Fri, 29 Jun 2007 21:13:04 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5TLD4wM047562; Fri, 29 Jun 2007 15:13:04 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 15:13:04 -0600 (MDT) From: Warner Losh Message-Id: <200706292113.l5TLD4wM047562@freefall.freebsd.org> To: hm@freebsd.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/90162: [usb] [patch] Add support for the MS Wireless USB Mouse 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, 29 Jun 2007 21:13:04 -0000 Synopsis: [usb] [patch] Add support for the MS Wireless USB Mouse State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 15:12:42 MDT 2007 State-Changed-Why: committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=90162 From owner-freebsd-usb@FreeBSD.ORG Fri Jun 29 23:07:33 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 0BA2F16A46E; Fri, 29 Jun 2007 23:07:33 +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 D811C13C4BC; Fri, 29 Jun 2007 23:07:32 +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 l5TN7WOH056814; Fri, 29 Jun 2007 23:07:32 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5TN7Wkl056809; Fri, 29 Jun 2007 23:07:32 GMT (envelope-from linimon) Date: Fri, 29 Jun 2007 23:07:32 GMT From: Mark Linimon Message-Id: <200706292307.l5TN7Wkl056809@freefall.freebsd.org> To: hselasky@c2i.net, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/79656: [usb] RHSC interrupts lost 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, 29 Jun 2007 23:07:33 -0000 Synopsis: [usb] RHSC interrupts lost State-Changed-From-To: closed->analyzed State-Changed-By: linimon State-Changed-When: Fri Jun 29 23:06:46 UTC 2007 State-Changed-Why: Change this to note that although it's fixed in p4, it is not yet fixed in CVS. Closing it early was my mistake. http://www.freebsd.org/cgi/query-pr.cgi?pr=79656 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 03:58:27 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 02C4716A46C; Sat, 30 Jun 2007 03:58:27 +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 CC4A213C46A; Sat, 30 Jun 2007 03:58:26 +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 l5U3wQKt080890; Sat, 30 Jun 2007 03:58:26 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U3wQmw080886; Fri, 29 Jun 2007 21:58:26 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 21:58:26 -0600 (MDT) From: Warner Losh Message-Id: <200706300358.l5U3wQmw080886@freefall.freebsd.org> To: mharo@freebsd.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/61234: [usb] [patch] usbhidaction(1) doesn't support using an alternate table file 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, 30 Jun 2007 03:58:27 -0000 Synopsis: [usb] [patch] usbhidaction(1) doesn't support using an alternate table file State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 21:58:12 MDT 2007 State-Changed-Why: Committed to current http://www.freebsd.org/cgi/query-pr.cgi?pr=61234 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 04:00: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 5F9EA16A421 for ; Sat, 30 Jun 2007 04:00:18 +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 0E91813C45A for ; Sat, 30 Jun 2007 04:00:18 +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 l5U40HuI081043 for ; Sat, 30 Jun 2007 04: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 l5U40HiN081042; Sat, 30 Jun 2007 04:00:17 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 04:00:17 GMT Message-Id: <200706300400.l5U40HiN081042@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/61234: 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: Sat, 30 Jun 2007 04:00:18 -0000 The following reply was made to PR usb/61234; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/61234: commit references a PR Date: Sat, 30 Jun 2007 03:58:08 +0000 (UTC) imp 2007-06-30 03:58:02 UTC FreeBSD src repository Modified files: usr.bin/usbhidaction usbhidaction.1 usbhidaction.c Log: Add support using an alternate table file to usbhidaction(1). Submitted by: Michael Haro PR: 61234 Approved by: re (bmah) Revision Changes Path 1.4 +3 -0 src/usr.bin/usbhidaction/usbhidaction.1 1.5 +7 -3 src/usr.bin/usbhidaction/usbhidaction.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 Sat Jun 30 04:35:27 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 36B1816A492; Sat, 30 Jun 2007 04:35:27 +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 0FB7813C44C; Sat, 30 Jun 2007 04:35:27 +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 l5U4ZQYl086613; Sat, 30 Jun 2007 04:35:26 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U4ZQMb086609; Fri, 29 Jun 2007 22:35:26 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 22:35:26 -0600 (MDT) From: Warner Losh Message-Id: <200706300435.l5U4ZQMb086609@freefall.freebsd.org> To: galactus@stack.nl, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/68412: [usb] [patch] QUIRK: Philips KEY013 USB MP3 player 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, 30 Jun 2007 04:35:27 -0000 Synopsis: [usb] [patch] QUIRK: Philips KEY013 USB MP3 player State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 22:35:10 MDT 2007 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=68412 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 04: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 514BD16A469 for ; Sat, 30 Jun 2007 04: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 422E413C45D for ; Sat, 30 Jun 2007 04: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 l5U4eAPw086802 for ; Sat, 30 Jun 2007 04: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 l5U4eArO086801; Sat, 30 Jun 2007 04:40:10 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 04:40:10 GMT Message-Id: <200706300440.l5U4eArO086801@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/68412: 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: Sat, 30 Jun 2007 04:40:11 -0000 The following reply was made to PR usb/68412; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/68412: commit references a PR Date: Sat, 30 Jun 2007 04:34:52 +0000 (UTC) imp 2007-06-30 04:34:45 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Philips USB Key Audio KEY013 Submitted by: Arnoud Engelfriet PR: 68412 Approved by: re (blanket) Revision Changes Path 1.218 +8 -0 src/sys/cam/scsi/scsi_da.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 Sat Jun 30 04:52:48 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 9431916A46D; Sat, 30 Jun 2007 04:52:48 +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 6B87313C483; Sat, 30 Jun 2007 04:52:48 +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 l5U4qmm7087594; Sat, 30 Jun 2007 04:52:48 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U4qlZo087590; Fri, 29 Jun 2007 22:52:47 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 22:52:47 -0600 (MDT) From: Warner Losh Message-Id: <200706300452.l5U4qlZo087590@freefall.freebsd.org> To: arno@heho.snv.jussieu.fr, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/88939: [usbdevs] [patch] Fix cheapy Myson USB-IDE 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: Sat, 30 Jun 2007 04:52:48 -0000 Synopsis: [usbdevs] [patch] Fix cheapy Myson USB-IDE adapter State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 22:42:40 MDT 2007 State-Changed-Why: Fixed http://www.freebsd.org/cgi/query-pr.cgi?pr=88939 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 04:53:28 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 CA6BB16A421; Sat, 30 Jun 2007 04:53:28 +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 A26CF13C43E; Sat, 30 Jun 2007 04:53:28 +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 l5U4rS8V087667; Sat, 30 Jun 2007 04:53:28 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U4rSrj087663; Fri, 29 Jun 2007 22:53:28 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 22:53:28 -0600 (MDT) From: Warner Losh Message-Id: <200706300453.l5U4rSrj087663@freefall.freebsd.org> To: netcom@sauber.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/92306: [quirk] [patch] Support for iRiver U10 USB media player 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, 30 Jun 2007 04:53:28 -0000 Synopsis: [quirk] [patch] Support for iRiver U10 USB media player State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 22:53:08 MDT 2007 State-Changed-Why: fixed http://www.freebsd.org/cgi/query-pr.cgi?pr=92306 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 04:56: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 7C94816A46F; Sat, 30 Jun 2007 04:56: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 5510013C4BA; Sat, 30 Jun 2007 04:56: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 l5U4upj7087803; Sat, 30 Jun 2007 04:56:51 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U4upSm087799; Fri, 29 Jun 2007 22:56:51 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 22:56:51 -0600 (MDT) From: Warner Losh Message-Id: <200706300456.l5U4upSm087799@freefall.freebsd.org> To: dhartmei@freebsd.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/94132: [patch] quirk for CENTURY EX35QUAT disk enclosure 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, 30 Jun 2007 04:56:51 -0000 Synopsis: [patch] quirk for CENTURY EX35QUAT disk enclosure State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 22:56:42 MDT 2007 State-Changed-Why: Fixed http://www.freebsd.org/cgi/query-pr.cgi?pr=94132 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:00: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 8BED116A400 for ; Sat, 30 Jun 2007 05:00:18 +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 7D0B613C465 for ; Sat, 30 Jun 2007 05:00:18 +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 l5U50IH3087979 for ; Sat, 30 Jun 2007 05:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U50IMX087978; Sat, 30 Jun 2007 05:00:18 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 05:00:18 GMT Message-Id: <200706300500.l5U50IMX087978@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/88939: 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: Sat, 30 Jun 2007 05:00:18 -0000 The following reply was made to PR usb/88939; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/88939: commit references a PR Date: Sat, 30 Jun 2007 04:42:35 +0000 (UTC) imp 2007-06-30 04:42:29 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: Fix cheapy Myson USB-IDE adapter Submitted by: Arno J. Klaassen PR: 88939 Approved by: re@ (blanket) Revision Changes Path 1.155 +4 -0 src/sys/dev/usb/umass.c 1.313 +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 Sat Jun 30 05:00:28 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 518B116A400 for ; Sat, 30 Jun 2007 05:00:28 +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 4330C13C44B for ; Sat, 30 Jun 2007 05:00:28 +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 l5U50SxW088033 for ; Sat, 30 Jun 2007 05:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U50SYT088032; Sat, 30 Jun 2007 05:00:28 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 05:00:28 GMT Message-Id: <200706300500.l5U50SYT088032@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/94132: 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: Sat, 30 Jun 2007 05:00:28 -0000 The following reply was made to PR usb/94132; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/94132: commit references a PR Date: Sat, 30 Jun 2007 04:58:41 +0000 (UTC) imp 2007-06-30 04:58:35 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: quirk for CENTURY EX35QUAT disk enclosure Submitted by: Daniel Hartmeier PR: 94132 Approved by: re (blanket) Revision Changes Path 1.156 +4 -0 src/sys/dev/usb/umass.c 1.314 +27 -23 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 Sat Jun 30 05:04:56 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 A3C6916A421; Sat, 30 Jun 2007 05:04:56 +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 78E8713C45E; Sat, 30 Jun 2007 05:04:56 +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 l5U54uTH088349; Sat, 30 Jun 2007 05:04:56 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U54uKg088345; Fri, 29 Jun 2007 23:04:56 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 23:04:56 -0600 (MDT) From: Warner Losh Message-Id: <200706300504.l5U54uKg088345@freefall.freebsd.org> To: dhenin@cypries.cyclopes.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/94439: [patch] Add support for JNC MP3 Player 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, 30 Jun 2007 05:04:56 -0000 Synopsis: [patch] Add support for JNC MP3 Player State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 23:03:19 MDT 2007 State-Changed-Why: fixed http://www.freebsd.org/cgi/query-pr.cgi?pr=94439 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:08:19 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 1580816A46C; Sat, 30 Jun 2007 05:08:19 +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 E078E13C457; Sat, 30 Jun 2007 05:08:18 +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 l5U58IJe088518; Sat, 30 Jun 2007 05:08:18 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U58I0q088514; Fri, 29 Jun 2007 23:08:18 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 23:08:18 -0600 (MDT) From: Warner Losh Message-Id: <200706300508.l5U58I0q088514@freefall.freebsd.org> To: amdmi3@mail.ru, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/101757: [patch] uhid.4: correct structure field names to match dev/usb/usb.h 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, 30 Jun 2007 05:08:19 -0000 Synopsis: [patch] uhid.4: correct structure field names to match dev/usb/usb.h State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 23:08:06 MDT 2007 State-Changed-Why: Fixed http://www.freebsd.org/cgi/query-pr.cgi?pr=101757 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:10: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 B609816A421 for ; Sat, 30 Jun 2007 05:10: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 A52AB13C465 for ; Sat, 30 Jun 2007 05:10: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 l5U5A7h0088626 for ; Sat, 30 Jun 2007 05:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5A7gc088625; Sat, 30 Jun 2007 05:10:07 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 05:10:07 GMT Message-Id: <200706300510.l5U5A7gc088625@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/94439: 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: Sat, 30 Jun 2007 05:10:07 -0000 The following reply was made to PR usb/94439; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/94439: commit references a PR Date: Sat, 30 Jun 2007 05:03:11 +0000 (UTC) imp 2007-06-30 05:03:03 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Add support for JNC MP3 Player Submitted by: User & PR: 94439 Approved by: re (blanket) Revision Changes Path 1.219 +8 -0 src/sys/cam/scsi/scsi_da.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 Sat Jun 30 05:10:12 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 8EB7416A41F for ; Sat, 30 Jun 2007 05:10:12 +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 3A5F313C448 for ; Sat, 30 Jun 2007 05:10:12 +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 l5U5ACpC088682 for ; Sat, 30 Jun 2007 05:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5ACTm088681; Sat, 30 Jun 2007 05:10:12 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 05:10:12 GMT Message-Id: <200706300510.l5U5ACTm088681@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/101757: 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: Sat, 30 Jun 2007 05:10:12 -0000 The following reply was made to PR usb/101757; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/101757: commit references a PR Date: Sat, 30 Jun 2007 05:07:56 +0000 (UTC) imp 2007-06-30 05:07:51 UTC FreeBSD src repository Modified files: share/man/man4 uhid.4 Log: uhid.4: correct structure field names to match dev/usb/usb.h Submitted by: Dmitry Marakasov PR: 101757 Approved by: re (blanket) Revision Changes Path 1.8 +4 -4 src/share/man/man4/uhid.4 _______________________________________________ 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 Sat Jun 30 05:19:55 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 3DF5C16A400; Sat, 30 Jun 2007 05:19:55 +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 1173513C448; Sat, 30 Jun 2007 05:19:55 +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 l5U5Jsnk089136; Sat, 30 Jun 2007 05:19:54 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5Js9g089132; Fri, 29 Jun 2007 23:19:54 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 23:19:54 -0600 (MDT) From: Warner Losh Message-Id: <200706300519.l5U5Js9g089132@freefall.freebsd.org> To: wint3r@securimail.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/108427: [patch] quirk: Samsung MP0402H 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, 30 Jun 2007 05:19:55 -0000 Synopsis: [patch] quirk: Samsung MP0402H State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 23:19:41 MDT 2007 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=108427 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:25:10 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 77D0916A46E; Sat, 30 Jun 2007 05:25:10 +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 501C413C44C; Sat, 30 Jun 2007 05:25:10 +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 l5U5P9DU089629; Sat, 30 Jun 2007 05:25:09 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5P9Kd089625; Fri, 29 Jun 2007 23:25:09 -0600 (MDT) (envelope-from imp) Date: Fri, 29 Jun 2007 23:25:09 -0600 (MDT) From: Warner Losh Message-Id: <200706300525.l5U5P9Kd089625@freefall.freebsd.org> To: antonfb@hesiod.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/108810: [patch] quirk for I/O Magic USB flash drive "Giga Bank" 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, 30 Jun 2007 05:25:10 -0000 Synopsis: [patch] quirk for I/O Magic USB flash drive "Giga Bank" State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Fri Jun 29 23:24:56 MDT 2007 State-Changed-Why: fix committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=108810 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 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 BBDC416A46D for ; Sat, 30 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 6D56213C458 for ; Sat, 30 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 l5U5U8Gj089792 for ; Sat, 30 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 l5U5U8sP089790; Sat, 30 Jun 2007 05:30:08 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 05:30:08 GMT Message-Id: <200706300530.l5U5U8sP089790@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/108427: 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: Sat, 30 Jun 2007 05:30:08 -0000 The following reply was made to PR usb/108427; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/108427: commit references a PR Date: Sat, 30 Jun 2007 05:21:24 +0000 (UTC) imp 2007-06-30 05:21:18 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Samsung MP0402H quirk Submitted by: Gipsy PR: 108427 Approved by: re@ (blanket) Revision Changes Path 1.220 +8 -0 src/sys/cam/scsi/scsi_da.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 Sat Jun 30 05:30:13 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 172F916A41F for ; Sat, 30 Jun 2007 05:30:13 +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 0852313C43E for ; Sat, 30 Jun 2007 05:30:13 +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 l5U5UCv0089875 for ; Sat, 30 Jun 2007 05:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5UCOv089873; Sat, 30 Jun 2007 05:30:12 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 05:30:12 GMT Message-Id: <200706300530.l5U5UCOv089873@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/108810: 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: Sat, 30 Jun 2007 05:30:13 -0000 The following reply was made to PR usb/108810; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/108810: commit references a PR Date: Sat, 30 Jun 2007 05:24:33 +0000 (UTC) imp 2007-06-30 05:24:25 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: quirk for I/O Magic USB flash drive "Giga Bank" Submitted by: Jeff Anton PR: 108810 Approved by: re@ (blanket) Revision Changes Path 1.221 +8 -0 src/sys/cam/scsi/scsi_da.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 Sat Jun 30 05:48: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 DBDD516A41F; Sat, 30 Jun 2007 05:48:51 +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 B48F213C45A; Sat, 30 Jun 2007 05:48:51 +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 l5U5mpmw092140; Sat, 30 Jun 2007 05:48:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5mncN092132; Sat, 30 Jun 2007 05:48:49 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 05:48:49 GMT From: Mark Linimon Message-Id: <200706300548.l5U5mncN092132@freefall.freebsd.org> To: ebakke@trolltech.com, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/32653: [patch] Added patches to improve USB scanner supportOB 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, 30 Jun 2007 05:48:51 -0000 Synopsis: [patch] Added patches to improve USB scanner supportOB State-Changed-From-To: suspended->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 05:47:12 UTC 2007 State-Changed-Why: This PR is now quite old, and the ioctl change it was based on was rejected. As of 6.2, does FreeBSD still have problems with this scanner? Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 05:47:12 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=32653 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:50: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 33DE016A421; Sat, 30 Jun 2007 05:50:36 +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 0B90213C44C; Sat, 30 Jun 2007 05:50:36 +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 l5U5oZtv092441; Sat, 30 Jun 2007 05:50:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5oZsC092437; Sat, 30 Jun 2007 05:50:35 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 05:50:35 GMT From: Mark Linimon Message-Id: <200706300550.l5U5oZsC092437@freefall.freebsd.org> To: weiss@uni-mainz.de, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/40792: signals lead to data loss on device ugen 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, 30 Jun 2007 05:50:36 -0000 Synopsis: signals lead to data loss on device ugen State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 05:48:55 UTC 2007 State-Changed-Why: To submitter: this PR is now quite old. Does it still occur on FreeBSD 6.2? Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 05:48:55 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=40792 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:53: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 6DA9C16A41F; Sat, 30 Jun 2007 05:53:22 +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 462F113C4C3; Sat, 30 Jun 2007 05:53:22 +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 l5U5rM2c092684; Sat, 30 Jun 2007 05:53:22 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5rMwN092680; Sat, 30 Jun 2007 05:53:22 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 05:53:22 GMT From: Mark Linimon Message-Id: <200706300553.l5U5rMwN092680@freefall.freebsd.org> To: linimon@FreeBSD.org, sanpei@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/57085: [umass] umass0 problems, with Sony Vio/USB memory stick 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, 30 Jun 2007 05:53:22 -0000 Synopsis: [umass] umass0 problems, with Sony Vio/USB memory stick Responsible-Changed-From-To: sanpei->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 05:52:31 UTC 2007 Responsible-Changed-Why: Reassign from inactive committer to mailing list. Hat: bugmeister http://www.freebsd.org/cgi/query-pr.cgi?pr=57085 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:54: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 E1BBE16A41F; Sat, 30 Jun 2007 05:54:57 +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 B9C6F13C455; Sat, 30 Jun 2007 05:54:57 +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 l5U5svcX092812; Sat, 30 Jun 2007 05:54:57 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5sv7o092808; Sat, 30 Jun 2007 05:54:57 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 05:54:57 GMT From: Mark Linimon Message-Id: <200706300554.l5U5sv7o092808@freefall.freebsd.org> To: linimon@FreeBSD.org, sanpei@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: kern/54981: [patch] QUIRK: Add support for Lexar 256MB USB drive 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, 30 Jun 2007 05:54:58 -0000 Synopsis: [patch] QUIRK: Add support for Lexar 256MB USB drive Responsible-Changed-From-To: sanpei->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 05:54:01 UTC 2007 Responsible-Changed-Why: Reassign from inactive src committer to mailing list. To submitter: is this still a problem? http://www.freebsd.org/cgi/query-pr.cgi?pr=54981 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:57:27 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 5CB9416A41F; Sat, 30 Jun 2007 05:57:27 +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 34D7913C483; Sat, 30 Jun 2007 05:57:27 +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 l5U5vRZw092998; Sat, 30 Jun 2007 05:57:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5vQB8092994; Sat, 30 Jun 2007 05:57:26 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 05:57:26 GMT From: Mark Linimon Message-Id: <200706300557.l5U5vQB8092994@freefall.freebsd.org> To: zs060174@uic.tula.ru, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/60248: [patch] Problem with USB printer HP LaserJet 1300 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, 30 Jun 2007 05:57:27 -0000 Synopsis: [patch] Problem with USB printer HP LaserJet 1300 State-Changed-From-To: feedback->suspended State-Changed-By: linimon State-Changed-When: Sat Jun 30 05:56:41 UTC 2007 State-Changed-Why: Mark as suspended due to feedback timeout. Can anyone else confirm whether this is still a problem or not? http://www.freebsd.org/cgi/query-pr.cgi?pr=60248 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 05:59:29 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 C740F16A468; Sat, 30 Jun 2007 05:59:29 +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 9967313C46A; Sat, 30 Jun 2007 05:59:29 +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 l5U5xTnb093139; Sat, 30 Jun 2007 05:59:29 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U5xTJY093135; Sat, 30 Jun 2007 05:59:29 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 05:59:29 GMT From: Mark Linimon Message-Id: <200706300559.l5U5xTJY093135@freefall.freebsd.org> To: jay@evilrealms.net, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/62309: [ugen] [panic] panic: ugen(4) driver 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, 30 Jun 2007 05:59:29 -0000 Synopsis: [ugen] [panic] panic: ugen(4) driver State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 05:58:47 UTC 2007 State-Changed-Why: To submitter: does this problem still recur? Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 05:58:47 UTC 2007 Responsible-Changed-Why: Note that submitter was asked for feedback (some time ago). http://www.freebsd.org/cgi/query-pr.cgi?pr=62309 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 06:05:35 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 5761E16A421; Sat, 30 Jun 2007 06:05:35 +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 2F76013C44C; Sat, 30 Jun 2007 06:05:35 +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 l5U65ZfY093802; Sat, 30 Jun 2007 06:05:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U65YOa093795; Sat, 30 Jun 2007 06:05:34 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 06:05:34 GMT From: Mark Linimon Message-Id: <200706300605.l5U65YOa093795@freefall.freebsd.org> To: rp@tns.cz, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/70942: [usb] Genius Wireless USB mouse: moused doesn't work correctly 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, 30 Jun 2007 06:05:35 -0000 Synopsis: [usb] Genius Wireless USB mouse: moused doesn't work correctly State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 06:04:23 UTC 2007 State-Changed-Why: To submitter: does the patch in usb/63837 fix your problem? Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 06:04:23 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=70942 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 06:12: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 6C19C16A421; Sat, 30 Jun 2007 06:12:15 +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 44A4113C4AD; Sat, 30 Jun 2007 06:12:15 +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 l5U6CFHu094491; Sat, 30 Jun 2007 06:12:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U6CEYU094484; Sat, 30 Jun 2007 06:12:14 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 06:12:14 GMT From: Mark Linimon Message-Id: <200706300612.l5U6CEYU094484@freefall.freebsd.org> To: jgutie11@eafit.edu.co, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/74358: [umass] unplugging at boot time an umass device crashes the 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: Sat, 30 Jun 2007 06:12:15 -0000 Synopsis: [umass] unplugging at boot time an umass device crashes the system State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Sat Jun 30 06:10:41 UTC 2007 State-Changed-Why: Feedback timeout (4 months). http://www.freebsd.org/cgi/query-pr.cgi?pr=74358 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 06:24:13 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 844D616A400; Sat, 30 Jun 2007 06:24:13 +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 5DB1913C447; Sat, 30 Jun 2007 06:24:13 +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 l5U6ODhd095465; Sat, 30 Jun 2007 06:24:13 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U6ODPU095461; Sat, 30 Jun 2007 06:24:13 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 06:24:13 GMT From: Mark Linimon Message-Id: <200706300624.l5U6ODPU095461@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, gavin@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: Sat, 30 Jun 2007 06:24:13 -0000 Synopsis: please add USB keyboard support to install CD's Responsible-Changed-From-To: freebsd-usb->gavin Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 06:24:02 UTC 2007 Responsible-Changed-Why: Let gavin track this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=78989 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 06:24:54 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 4041516A41F; Sat, 30 Jun 2007 06:24:54 +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 1780813C447; Sat, 30 Jun 2007 06:24:53 +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 l5U6OrTk095525; Sat, 30 Jun 2007 06:24:53 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U6OrQ4095521; Sat, 30 Jun 2007 06:24:53 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 06:24:53 GMT From: Mark Linimon Message-Id: <200706300624.l5U6OrQ4095521@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, gavin@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: Sat, 30 Jun 2007 06:24:54 -0000 Synopsis: [patch] WD Firewire/USB Combo hangs under load on USB interface. Responsible-Changed-From-To: freebsd-usb->gavin Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 06:24:26 UTC 2007 Responsible-Changed-Why: Assign to gavin. http://www.freebsd.org/cgi/query-pr.cgi?pr=79140 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 06:34:31 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 AB40E16A400; Sat, 30 Jun 2007 06:34:31 +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 8324513C447; Sat, 30 Jun 2007 06:34:31 +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 l5U6YVB5097538; Sat, 30 Jun 2007 06:34:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U6YVpN097534; Sat, 30 Jun 2007 06:34:31 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 06:34:31 GMT From: Mark Linimon Message-Id: <200706300634.l5U6YVpN097534@freefall.freebsd.org> To: fbusse@gmx.de, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/80361: mounting of usb-stick fails 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, 30 Jun 2007 06:34:31 -0000 Synopsis: mounting of usb-stick fails State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 06:29:06 UTC 2007 State-Changed-Why: Unfortunately, the mailing list stripped the patch. Does anyone have a copy of the patch still? Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 06:29:06 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=80361 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 06:41: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 C403016A469; Sat, 30 Jun 2007 06:41:07 +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 9B44113C487; Sat, 30 Jun 2007 06:41:07 +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 l5U6f7Ng098048; Sat, 30 Jun 2007 06:41:07 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U6f727098044; Sat, 30 Jun 2007 06:41:07 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 06:41:07 GMT From: Mark Linimon Message-Id: <200706300641.l5U6f727098044@freefall.freebsd.org> To: hselasky@c2i.net, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/80773: "usbd_get_string()" could have taken a length parameter 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, 30 Jun 2007 06:41:07 -0000 Synopsis: "usbd_get_string()" could have taken a length parameter State-Changed-From-To: feedback->suspended State-Changed-By: linimon State-Changed-When: Sat Jun 30 06:40:37 UTC 2007 State-Changed-Why: No response from submitter; it still seems like this problem should be fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=80773 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 06:53:19 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 D6AB616A469; Sat, 30 Jun 2007 06:53:19 +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 ADFCB13C448; Sat, 30 Jun 2007 06:53:19 +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 l5U6rJeM099153; Sat, 30 Jun 2007 06:53:19 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U6rJbY099149; Sat, 30 Jun 2007 06:53:19 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 06:53:19 GMT From: Mark Linimon Message-Id: <200706300653.l5U6rJbY099149@freefall.freebsd.org> To: ke.han@redstarling.com, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/84936: [kbd] install - usb keyboard not 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: Sat, 30 Jun 2007 06:53:19 -0000 Synopsis: [kbd] install - usb keyboard not recognized State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 06:52:48 UTC 2007 State-Changed-Why: Is this still a problem with recent versions of FreeBSD, such as 6.2? Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 06:52:48 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=84936 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 06:57:38 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 1A07A16A46D; Sat, 30 Jun 2007 06:57:38 +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 E151B13C480; Sat, 30 Jun 2007 06:57:37 +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 l5U6vbAs099445; Sat, 30 Jun 2007 06:57:37 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U6vbCr099441; Sat, 30 Jun 2007 06:57:37 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 06:57:37 GMT From: Mark Linimon Message-Id: <200706300657.l5U6vbCr099441@freefall.freebsd.org> To: neshami@gmail.com, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/87099: [panic] ohci_add_done: addr 0x000d1bf0 not found 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, 30 Jun 2007 06:57:38 -0000 Old Synopsis: panic: ohci_add_done: addr 0x000d1bf0 not found New Synopsis: [panic] ohci_add_done: addr 0x000d1bf0 not found State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 06:56:56 UTC 2007 State-Changed-Why: We need more information, such as a dmesg and a panic message, to be able to debug this problem. Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 06:56:56 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=87099 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 07:04: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 CDE3816A421; Sat, 30 Jun 2007 07:04:50 +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 A51D913C45D; Sat, 30 Jun 2007 07:04:50 +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 l5U74ohM000191; Sat, 30 Jun 2007 07:04:50 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U74oQ8000187; Sat, 30 Jun 2007 07:04:50 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 07:04:50 GMT From: Mark Linimon Message-Id: <200706300704.l5U74oQ8000187@freefall.freebsd.org> To: jonathan@kc8onw.net, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/89087: usb external harddrive hangs with BBB reset failed, TIMEOUT messages 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, 30 Jun 2007 07:04:50 -0000 Synopsis: usb external harddrive hangs with BBB reset failed, TIMEOUT messages State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sat Jun 30 07:04:20 UTC 2007 State-Changed-Why: Note that feedback was received some time ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=89087 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 07:45:31 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 520C216A468; Sat, 30 Jun 2007 07:45:31 +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 2A95E13C45B; Sat, 30 Jun 2007 07:45:31 +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 l5U7jVJ1007231; Sat, 30 Jun 2007 07:45:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U7jUNH007227; Sat, 30 Jun 2007 07:45:30 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 07:45:30 GMT From: Mark Linimon Message-Id: <200706300745.l5U7jUNH007227@freefall.freebsd.org> To: me@swizard.beercan.ru, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/105361: [panic] Kernel panic during unmounting mass storage (Creative mp3 player) 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, 30 Jun 2007 07:45:31 -0000 Synopsis: [panic] Kernel panic during unmounting mass storage (Creative mp3 player) State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 07:44:46 UTC 2007 State-Changed-Why: Does this panic occur if you umnount the device before removal? (We are aware of the problem if a device is removed before unmounting). http://www.freebsd.org/cgi/query-pr.cgi?pr=105361 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:06:10 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 066AA16A421; Sat, 30 Jun 2007 08:06:10 +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 D154413C46A; Sat, 30 Jun 2007 08:06:09 +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 l5U869Zk009044; Sat, 30 Jun 2007 08:06:09 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8694m009040; Sat, 30 Jun 2007 08:06:09 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:06:09 GMT From: Mark Linimon Message-Id: <200706300806.l5U8694m009040@freefall.freebsd.org> To: numisemis@yahoo.com, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, imp@FreeBSD.org Cc: Subject: Re: usb/111710: [patch] [usb] add support for Option GlobeTrotter 3G+ 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, 30 Jun 2007 08:06:10 -0000 Synopsis: [patch] [usb] add support for Option GlobeTrotter 3G+ State-Changed-From-To: open->patched State-Changed-By: linimon State-Changed-When: Sat Jun 30 08:04:58 UTC 2007 State-Changed-Why: Committed 2007-06-22. Responsible-Changed-From-To: freebsd-usb->imp Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:04:58 UTC 2007 Responsible-Changed-Why: Assign to committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=111710 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:11:37 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 1091016A421; Sat, 30 Jun 2007 08:11:37 +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 DD06313C46A; Sat, 30 Jun 2007 08:11:36 +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 l5U8Bafb009658; Sat, 30 Jun 2007 08:11:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8Bagl009654; Sat, 30 Jun 2007 08:11:36 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:11:36 GMT From: Mark Linimon Message-Id: <200706300811.l5U8Bagl009654@freefall.freebsd.org> To: pvh@wfeet.za.net, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/112944: [patch] Bi-directional access to HP LaserJet 1010 printer on USB seems faulty 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, 30 Jun 2007 08:11:37 -0000 Synopsis: [patch] Bi-directional access to HP LaserJet 1010 printer on USB seems faulty State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 08:10:34 UTC 2007 State-Changed-Why: To submitter: the patch was stripped in transit. Can you follow up to this with the patch included? Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:10:34 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=112944 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:13:55 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 18F3916A469; Sat, 30 Jun 2007 08:13:55 +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 E5C1D13C480; Sat, 30 Jun 2007 08:13:54 +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 l5U8DsP4009863; Sat, 30 Jun 2007 08:13:54 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8DsYA009859; Sat, 30 Jun 2007 08:13:54 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:13:54 GMT From: Mark Linimon Message-Id: <200706300813.l5U8DsYA009859@freefall.freebsd.org> To: goffredo@gmail.com, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/113290: Aditional information to usb/106070 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, 30 Jun 2007 08:13:55 -0000 Synopsis: Aditional information to usb/106070 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jun 30 08:13:29 UTC 2007 State-Changed-Why: Content migrated to usb/106070. Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:13:29 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=113290 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:15:56 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 C9E8116A469; Sat, 30 Jun 2007 08:15:56 +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 A083C13C457; Sat, 30 Jun 2007 08:15:56 +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 l5U8FuXn010005; Sat, 30 Jun 2007 08:15:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8Fu4c010001; Sat, 30 Jun 2007 08:15:56 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:15:56 GMT From: Mark Linimon Message-Id: <200706300815.l5U8Fu4c010001@freefall.freebsd.org> To: ler@lerctr.org, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org, linimon@FreeBSD.org Cc: Subject: Re: usb/113454: [ehci] EHCI error 6/EHCI Hub error 4 -CURRENT 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, 30 Jun 2007 08:15:56 -0000 Old Synopsis: EHCI error 6/EHCI Hub error 4 -CURRENT New Synopsis: [ehci] EHCI error 6/EHCI Hub error 4 -CURRENT State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Sat Jun 30 08:15:17 UTC 2007 State-Changed-Why: So, can this one now be closed? Responsible-Changed-From-To: freebsd-usb->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:15:17 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=113454 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:19: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 8B20D16A468; Sat, 30 Jun 2007 08:19:22 +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 59D5113C469; Sat, 30 Jun 2007 08:19:22 +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 l5U8JMUZ010270; Sat, 30 Jun 2007 08:19:22 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8JMS8010266; Sat, 30 Jun 2007 08:19:22 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:19:22 GMT From: Mark Linimon Message-Id: <200706300819.l5U8JMS8010266@freefall.freebsd.org> To: vion_vanion@gmx.net, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/113981: umount -f /mnt causing a crash if USB-stick is removed before umount 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, 30 Jun 2007 08:19:22 -0000 Synopsis: umount -f /mnt causing a crash if USB-stick is removed before umount State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jun 30 08:18:28 UTC 2007 State-Changed-Why: Unfortunately this is a well-known problem that lies underneath the USB stack; other PRs are open on this issue. The workaround for now is to always umount the disk before removal. http://www.freebsd.org/cgi/query-pr.cgi?pr=113981 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:30:38 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 DE21916A41F; Sat, 30 Jun 2007 08:30:38 +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 B279513C458; Sat, 30 Jun 2007 08:30:38 +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 l5U8UceL011906; Sat, 30 Jun 2007 08:30:38 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8Uc36011902; Sat, 30 Jun 2007 08:30:38 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:30:38 GMT From: Mark Linimon Message-Id: <200706300830.l5U8Uc36011902@freefall.freebsd.org> To: joe@tao.org.uk, linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/71280: [aue] aue0 device (linksys usb100tx) doesn't work in 100basetx, and doesn't reliably select media 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, 30 Jun 2007 08:30:39 -0000 Synopsis: [aue] aue0 device (linksys usb100tx) doesn't work in 100basetx, and doesn't reliably select media State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sat Jun 30 08:29:32 UTC 2007 State-Changed-Why: Reassign to usb team, while noting that feedback was received some time ago. Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:29:32 UTC 2007 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=71280 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:33:45 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 C127D16A469; Sat, 30 Jun 2007 08:33:45 +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 9A29713C44B; Sat, 30 Jun 2007 08:33:45 +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 l5U8Xj10013585; Sat, 30 Jun 2007 08:33:45 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8Xj3u013580; Sat, 30 Jun 2007 08:33:45 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:33:45 GMT From: Mark Linimon Message-Id: <200706300833.l5U8Xj3u013580@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/85257: [boot] BTX boot loader fails on USB CDROM (HP DL145 Opteron) 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, 30 Jun 2007 08:33:45 -0000 Synopsis: [boot] BTX boot loader fails on USB CDROM (HP DL145 Opteron) Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:33:24 UTC 2007 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=85257 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:36:03 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 BADC516A41F; Sat, 30 Jun 2007 08:36:03 +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 8424B13C43E; Sat, 30 Jun 2007 08:36:03 +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 l5U8a3rV014423; Sat, 30 Jun 2007 08:36:03 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8a3qZ014419; Sat, 30 Jun 2007 08:36:03 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:36:03 GMT From: Mark Linimon Message-Id: <200706300836.l5U8a3qZ014419@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-scsi@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/96133: [scsi] [patch] add scsi quirk for joyfly 128mb flash usb stick 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, 30 Jun 2007 08:36:03 -0000 Synopsis: [scsi] [patch] add scsi quirk for joyfly 128mb flash usb stick Responsible-Changed-From-To: freebsd-scsi->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:35:28 UTC 2007 Responsible-Changed-Why: This looks like a usb problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=96133 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:36:55 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 E30AE16A46C; Sat, 30 Jun 2007 08:36:55 +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 BAAA913C46C; Sat, 30 Jun 2007 08:36:55 +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 l5U8ati9014490; Sat, 30 Jun 2007 08:36:55 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8atD0014486; Sat, 30 Jun 2007 08:36:55 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:36:55 GMT From: Mark Linimon Message-Id: <200706300836.l5U8atD0014486@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/101448: [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/OHCI load 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, 30 Jun 2007 08:36:56 -0000 Old Synopsis: FBSD 6.1-STABLE/AMD64 crashes under heavy USB/OHCI load New Synopsis: [ohci] FBSD 6.1-STABLE/AMD64 crashes under heavy USB/OHCI load Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:36:14 UTC 2007 Responsible-Changed-Why: Reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=101448 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:37:37 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 ED06D16A41F; Sat, 30 Jun 2007 08:37:37 +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 C630113C46A; Sat, 30 Jun 2007 08:37:37 +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 l5U8bbdm014563; Sat, 30 Jun 2007 08:37:37 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8bb25014559; Sat, 30 Jun 2007 08:37:37 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:37:37 GMT From: Mark Linimon Message-Id: <200706300837.l5U8bb25014559@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-scsi@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/103702: [cam] [patch] ChipsBnk: Unsupported USB memory stick 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, 30 Jun 2007 08:37:38 -0000 Synopsis: [cam] [patch] ChipsBnk: Unsupported USB memory stick Responsible-Changed-From-To: freebsd-scsi->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:37:18 UTC 2007 Responsible-Changed-Why: Reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=103702 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:38: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 A325616A46C; Sat, 30 Jun 2007 08:38:07 +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 7BD5813C4BB; Sat, 30 Jun 2007 08:38:07 +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 l5U8c7N2014617; Sat, 30 Jun 2007 08:38:07 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8c7Pk014613; Sat, 30 Jun 2007 08:38:07 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:38:07 GMT From: Mark Linimon Message-Id: <200706300838.l5U8c7Pk014613@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/107495: [cam] [patch] Fix long wait before WD My Book 250GB (USB) is 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: Sat, 30 Jun 2007 08:38:07 -0000 Synopsis: [cam] [patch] Fix long wait before WD My Book 250GB (USB) is recognized Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:37:48 UTC 2007 Responsible-Changed-Why: Reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=107495 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 08:41:05 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 D4D1116A400; Sat, 30 Jun 2007 08:41:04 +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 ABBFF13C455; Sat, 30 Jun 2007 08:41:04 +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 l5U8f4Dt015079; Sat, 30 Jun 2007 08:41:04 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5U8f4OF015075; Sat, 30 Jun 2007 08:41:04 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 08:41:04 GMT From: Mark Linimon Message-Id: <200706300841.l5U8f4OF015075@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/113478: [boot] FreeBSD could not start on Core2Duo notebook from USB external drive 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, 30 Jun 2007 08:41:05 -0000 Old Synopsis: FreeBSD could not start on Core2Duo notebook from USB external drive New Synopsis: [boot] FreeBSD could not start on Core2Duo notebook from USB external drive Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jun 30 08:40:45 UTC 2007 Responsible-Changed-Why: Reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=113478 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 11:36:49 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 A1CDF16A400 for ; Sat, 30 Jun 2007 11:36:49 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 2CB6813C458 for ; Sat, 30 Jun 2007 11:36:48 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so555038uge for ; Sat, 30 Jun 2007 04:36:48 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:received:received:date:from:to:subject:message-id:mail-followup-to:mime-version:content-type:content-disposition:user-agent; b=ZIskXVDOZqSQUd65h7JZcRxzDb4+zdIwfOW8OpFJcnPOcFtS69b0x0ocYc6n0uI1zl+ny1rGnZMWLQEaSTuBAElCgkvJ0n5KbqqiSrW1xJNNfqqJSbIbghKXydBuEHkdVZvNeqzafDCEtj2QK4rzrqysNKi+zAoJt0As3oddvoA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:subject:message-id:mail-followup-to:mime-version:content-type:content-disposition:user-agent; b=pwQk2MuF6CqXwRfQO+V1r+t0ZVeZC04xucWElGkGJBCMFwqSFmF8X+YpWUPMH48ZYD7oCeU4BmN52CjpJQ2y3CIaqhzaQMBc29hshu4f1k7AJaHYMmpzALFcTBqbQtbBAvkNSo86xlYKUMJzdB083paXcFcSixMTjtH3RwTXW9k= Received: by 10.67.19.17 with SMTP id w17mr1724589ugi.1183201662637; Sat, 30 Jun 2007 04:07:42 -0700 (PDT) Received: from roadrunner.q.local ( [85.180.181.128]) by mx.google.com with ESMTP id j12sm10919297fkf.2007.06.30.04.07.41 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 30 Jun 2007 04:07:41 -0700 (PDT) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.14.1/8.14.1) with ESMTP id l5UB4uxj007148 for ; Sat, 30 Jun 2007 13:04:56 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Received: (from q@localhost) by roadrunner.q.local (8.14.1/8.14.1/Submit) id l5UB4uaM007147 for usb@freebsd.org; Sat, 30 Jun 2007 13:04:56 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Date: Sat, 30 Jun 2007 13:04:56 +0200 From: Ulrich Spoerlein To: usb@freebsd.org Message-ID: <20070630110455.GB1473@roadrunner.q.local> Mail-Followup-To: usb@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.15 (2007-04-06) Cc: Subject: Need help quirking a Samsung MP3 player 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, 30 Jun 2007 11:36:49 -0000 Hi all, I have this Samsung YP-U2 MP3/Ogg player which refuses to attach under 6.x and 7.x. It is working totally fine with HPS USB stack, but I can't find the right set of quirks to make it work with the old stack. I tried several combinations of quirks, but all I get is this: Jun 29 19:49:07 roadrunner kernel: umass0: on uhub3 Jun 29 19:49:07 roadrunner kernel: umass0: SCSI over Bulk-Only; quirks = 0x0587 Jun 29 19:49:07 roadrunner kernel: umass0:1:0:-1: Attached to scbus1 Jun 29 19:49:07 roadrunner root: Unknown USB device: vendor 0x04e8 product 0x5050 bus uhub3 Jun 29 19:52:22 roadrunner kernel: umass0: BBB reset failed, TIMEOUT Jun 29 19:53:27 roadrunner kernel: umass0: BBB bulk-in clear stall failed, TIMEOUT Jun 29 19:53:27 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:53:37 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:53:37 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:53:37 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:53:47 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:53:47 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:53:47 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:53:57 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:53:57 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:53:57 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:54:07 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:54:07 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:54:07 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:54:17 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:54:17 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:54:17 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:54:17 roadrunner kernel: (da0:umass-sim0:0:0:0): got CAM status 0x4 Jun 29 19:54:17 roadrunner kernel: (da0:umass-sim0:0:0:0): fatal error, failed to attach to device Jun 29 19:54:17 roadrunner kernel: (da0:umass-sim0:0:0:0): lost device Jun 29 19:55:22 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:55:22 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:55:22 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:56:27 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:56:27 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:56:27 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:57:32 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:57:32 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:57:32 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:58:37 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:58:37 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:58:37 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:59:42 roadrunner kernel: umass0: BBB reset failed, IOERROR Jun 29 19:59:42 roadrunner kernel: umass0: BBB bulk-in clear stall failed, IOERROR Jun 29 19:59:42 roadrunner kernel: umass0: BBB bulk-out clear stall failed, IOERROR Jun 29 19:59:42 roadrunner kernel: (da0:umass-sim0:0:0:0): removing device entry Cheers, Ulrich Spoerlein -- "The trouble with the dictionary is you have to know how the word is spelled before you can look it up to see how it is spelled." -- Will Cuppy From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 12:13:13 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 A798216A468 for ; Sat, 30 Jun 2007 12:13:13 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 37F7313C447 for ; Sat, 30 Jun 2007 12:13:13 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so559554uge for ; Sat, 30 Jun 2007 05:13:12 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:received:received:date:from:to:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=bm6CoSY1uux6nOKfTgdUl8JCIl1ziNZuVHt3hUDiEu5fx0v39+TUgndJCuMhGWU+PCF0FrlMdcOI9eCeAXwWuz9ag+YH7mwFbC8vwGI7UqNhyuBFTDFKzQf//T3JI2/sFiyhhoLkDkXuv09AfGrzVcv0Ly1MpeUsR8nLOdi4/dA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=TIQ23Gqp219x8uynzYZUhYDdUU7GVER4hh2hdHjh6od/r3U+ryJyvBEpTWhEwJVQA/hveW6UHwRLAkqB1cWEv6SSCg/E7VdznG27mSVMwbws2uimQYsiHBCfKUJTRNkkIr4XSd9J8zIeMvGnOM1eEwfnJgRwVs6aiUS8Z8+AnHw= Received: by 10.82.105.13 with SMTP id d13mr8441896buc.1183205591833; Sat, 30 Jun 2007 05:13:11 -0700 (PDT) Received: from roadrunner.q.local ( [85.180.181.128]) by mx.google.com with ESMTP id y2sm29625143mug.2007.06.30.05.13.11 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 30 Jun 2007 05:13:11 -0700 (PDT) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.14.1/8.14.1) with ESMTP id l5UCD9UZ008313 for ; Sat, 30 Jun 2007 14:13:09 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Received: (from q@localhost) by roadrunner.q.local (8.14.1/8.14.1/Submit) id l5UCD8qc008312 for usb@freebsd.org; Sat, 30 Jun 2007 14:13:09 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Date: Sat, 30 Jun 2007 14:13:08 +0200 From: Ulrich Spoerlein To: usb@freebsd.org Message-ID: <20070630121308.GA7222@roadrunner.q.local> Mail-Followup-To: usb@freebsd.org References: <20070630110455.GB1473@roadrunner.q.local> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070630110455.GB1473@roadrunner.q.local> User-Agent: Mutt/1.5.15 (2007-04-06) Cc: Subject: Re: Need help quirking a Samsung MP3 player [FIXED] 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, 30 Jun 2007 12:13:13 -0000 me wrote: > I have this Samsung YP-U2 MP3/Ogg player which refuses to attach under > 6.x and 7.x. It is working totally fine with HPS USB stack, but I can't > find the right set of quirks to make it work with the old stack. Sigh, how come I am often able to fix the problem just after sending off emails? Strange. Anyway, I'll submit the corresponding PR shortly. Cheers, Ulrich Spoerlein -- "The trouble with the dictionary is you have to know how the word is spelled before you can look it up to see how it is spelled." -- Will Cuppy From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 12:49:10 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 0E16A16A41F for ; Sat, 30 Jun 2007 12:49:10 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id 8D66D13C447 for ; Sat, 30 Jun 2007 12:49:09 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so563832uge for ; Sat, 30 Jun 2007 05:49:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:received:received:date:from:to:cc:subject:message-id:mail-followup-to:mime-version:content-type:content-disposition:user-agent; b=pGcDf1AbUegD8cn4yOeYuzI7MV9HgEu4rajTPxbLUSeL0jKD301BKItnL6lAz39PM9VPsj5lVrTpFD3iiYXe81p5Jk4azB4E0W/i+6LxC6hkrQpHVzOUOVD5d1HYmWlpl504n+KmOQZkAoIShOz852PscSoBh6yc1tbVMuE4soI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:cc:subject:message-id:mail-followup-to:mime-version:content-type:content-disposition:user-agent; b=HY5pqit5KIzcp5O3LfYOzP3SNo7yMiezQ7Cikut486QS2ArJgCoPK8tscv9f1w/W4T5CTOZ0NL7ZhLQ/1kfQqLINza1GoLmlBPm4vy7rEsIQ8LdVguK7bAOnQ2NqN68f6mb9lNF369/8/fh8A33VuOuAZRa57mo3fWbJsGO2fMA= Received: by 10.67.24.18 with SMTP id b18mr2501912ugj.1183207748247; Sat, 30 Jun 2007 05:49:08 -0700 (PDT) Received: from roadrunner.q.local ( [85.180.181.128]) by mx.google.com with ESMTP id j12sm11082287fkf.2007.06.30.05.49.07 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 30 Jun 2007 05:49:07 -0700 (PDT) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.14.1/8.14.1) with ESMTP id l5UCn1uT008759; Sat, 30 Jun 2007 14:49:01 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Received: (from q@localhost) by roadrunner.q.local (8.14.1/8.14.1/Submit) id l5UCn1VF008758; Sat, 30 Jun 2007 14:49:01 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Date: Sat, 30 Jun 2007 14:49:01 +0200 From: Ulrich Spoerlein To: usb@freebsd.org Message-ID: <20070630124901.GB7222@roadrunner.q.local> Mail-Followup-To: usb@freebsd.org, Warner Losh MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.15 (2007-04-06) Cc: Warner Losh Subject: [PATCH] Whitespace fix for usbdevs 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, 30 Jun 2007 12:49:10 -0000 Hi, while patching /sys/dev/usb/usbdevs I noticed that whitespace was off for some entries. Please see attached patch. Cheers, Ulrich Spoerlein -- "The trouble with the dictionary is you have to know how the word is spelled before you can look it up to see how it is spelled." -- Will Cuppy --- usbdevs 2007-06-30 14:36:35.573340457 +0200 +++ usbdevs.ws 2007-06-30 14:43:44.994485767 +0200 @@ -654,7 +654,7 @@ product ACERP ACERSCAN_320U 0x2022 Acerscan 320U product ACERP ACERSCAN_640U 0x2040 Acerscan 640U product ACERP ACERSCAN_620U 0x2060 Acerscan 620U -product ACERP ACERSCAN_4300U 0x20b0 Benq 3300U/4300U +product ACERP ACERSCAN_4300U 0x20b0 Benq 3300U/4300U product ACERP ACERSCAN_640BT 0x20be Acerscan 640BT product ACERP ACERSCAN_1240U 0x20c0 Acerscan 1240U product ACERP AWL300 0x9000 AWL300 Wireless adapter @@ -686,7 +686,7 @@ product ADS UBS10BTX 0x0009 UBS-10BT Ethernet /* AEI products */ -product AEI FASTETHERNET 0x1701 Fast Ethernet +product AEI FASTETHERNET 0x1701 Fast Ethernet /* Agate Technologies products */ product AGATE QDRIVE 0x0378 Q-Drive @@ -722,7 +722,7 @@ product ALTEC ASC495 0xff05 ASC495 Speakers /* Allied Telesyn International products */ -product ALLIEDTELESYN ATUSB100 0xb100 AT-USB100 +product ALLIEDTELESYN ATUSB100 0xb100 AT-USB100 /* Ambit Microsystems products */ product AMBIT WLAN 0x0302 WLAN @@ -784,7 +784,7 @@ product ATEN UC110T 0x2007 UC-110T Ethernet product ATEN UC232A 0x2008 Serial product ATEN UC210T 0x2000 UC-210T Ethernet -product ATEN DSB650C 0x4000 DSB-650C +product ATEN DSB650C 0x4000 DSB-650C /* Atheros Communications products */ product ATHEROS AR5523 0x0001 AR5523 @@ -1003,7 +1003,7 @@ product EIZO MONITOR 0x0001 monitor /* ELCON Systemtechnik products */ -product ELCON PLAN 0x0002 Goldpfeil P-LAN +product ELCON PLAN 0x0002 Goldpfeil P-LAN /* Elecom products */ product ELECOM MOUSE29UO 0x0002 mouse 29UO @@ -1011,7 +1011,7 @@ product ELECOM LDUSBTX1 0x4002 LD-USB/TX product ELECOM LDUSBLTX 0x4005 LD-USBL/TX product ELECOM LDUSBTX2 0x400b LD-USB/TX -product ELECOM LDUSB20 0x4010 LD-USB20 +product ELECOM LDUSB20 0x4010 LD-USB20 product ELECOM UCSGT 0x5003 UC-SGT product ELECOM UCSGT0 0x5004 UC-SGT product ELECOM LDUSBTX3 0xabc1 LD-USB/TX @@ -1073,7 +1073,7 @@ product EXTENDED XTNDACCESS 0x0100 XTNDAccess IrDA /* Fossil, Inc products */ -product FOSSIL WRISTPDA 0x0002 Wrist PDA +product FOSSIL WRISTPDA 0x0002 Wrist PDA /* Freecom products */ product FREECOM DVD 0xfc01 DVD drive @@ -1083,9 +1083,9 @@ product FTDI SERIAL_8U232AM 0x6001 8U232AM Serial product FTDI SERIAL_2232C 0x6010 FT2232C Dual port Serial /* Gude Analog- und Digitalsysteme products also uses FTDI's id: */ -product FTDI TACTRIX_OPENPORT_13M 0xcc48 OpenPort 1.3 Mitsubishi -product FTDI TACTRIX_OPENPORT_13S 0xcc49 OpenPort 1.3 Subaru -product FTDI TACTRIX_OPENPORT_13U 0xcc4a OpenPort 1.3 Universal +product FTDI TACTRIX_OPENPORT_13M 0xcc48 OpenPort 1.3 Mitsubishi +product FTDI TACTRIX_OPENPORT_13S 0xcc49 OpenPort 1.3 Subaru +product FTDI TACTRIX_OPENPORT_13U 0xcc4a OpenPort 1.3 Universal product FTDI EISCOU 0xe888 Expert ISDN Control USB product FTDI UOPTBR 0xe889 USB-RS232 OptoBridge product FTDI EMCU2D 0xe88a Expert mouseCLOCK USB II @@ -1100,8 +1100,8 @@ product FTDI CFA_634 0xfc09 Crystalfontz CFA-634 USB LCD product FTDI CFA_633 0xfc0b Crystalfontz CFA-633 USB LCD product FTDI CFA_631 0xfc0c Crystalfontz CFA-631 USB LCD -product FTDI CFA_635 0xfc0d Crystalfontz CFA-635 USB LCD -product FTDI SEMC_DSS20 0xfc82 SEMC DSS-20 SyncStation +product FTDI CFA_635 0xfc0d Crystalfontz CFA-635 USB LCD +product FTDI SEMC_DSS20 0xfc82 SEMC DSS-20 SyncStation /* Fuji photo products */ product FUJIPHOTO MASS0100 0x0100 Mass Storage @@ -1110,13 +1110,13 @@ product FUJITSU AH_F401U 0x105b AH-F401U Air H device /* Garmin products */ -product GARMIN IQUE_3600 0x0004 iQue 3600 +product GARMIN IQUE_3600 0x0004 iQue 3600 /* General Instruments (Motorola) products */ product GENERALINSTMNTS SB5100 0x5100 SURFboard SB5100 Cable modem /* Genesys Logic products */ -product GENESYS GL620USB 0x0501 GL620USB Host-Host interface +product GENESYS GL620USB 0x0501 GL620USB Host-Host interface product GENESYS GL650 0x0604 GL650 Hub product GENESYS GL641USB 0x0700 GL641USB CompactFlash Card Reader product GENESYS GL641USB2IDE_2 0x0701 GL641USB USB-IDE Bridge No 2 @@ -1479,8 +1479,8 @@ product MICROSOFT MN510 0x006e MN510 Wireless product MICROSOFT MN110 0x007a 10/100 USB NIC product MICROSOFT WLINTELLIMOUSE 0x008c Wireless Optical IntelliMouse -product MICROSOFT WLNOTEBOOK 0x00b9 Wireless Optical Mouse (Model 1023) -product MICROSOFT WLNOTEBOOK2 0x00e1 Wireless Optical Mouse 3000 (Model 1056) +product MICROSOFT WLNOTEBOOK 0x00b9 Wireless Optical Mouse (Model 1023) +product MICROSOFT WLNOTEBOOK2 0x00e1 Wireless Optical Mouse 3000 (Model 1056) product MICROSOFT WLUSBMOUSE 0x00b9 Wireless USB Mouse product MICROSOFT XBOX360 0x0292 XBOX 360 WLAN @@ -1697,7 +1697,7 @@ product PROLIFIC PL2305 0x2305 Parallel printer product PROLIFIC ATAPI4 0x2307 ATAPI-4 Controller product PROLIFIC PL2501 0x2501 PL2501 Host-Host interface -product PROLIFIC PHAROS 0xaaa0 Prolific Pharos +product PROLIFIC PHAROS 0xaaa0 Prolific Pharos product PROLIFIC RSAQ3 0xaaa2 PL2303 Serial adapter (IODATA USB-RSAQ3) product PROLIFIC2 WSIM 0x2001 Willcom WSIM @@ -1720,7 +1720,7 @@ product QUICKSHOT STRIKEPAD 0x6238 USB StrikePad /* Radio Shack */ -product RADIOSHACK USBCABLE 0x4026 USB to Serial Cable +product RADIOSHACK USBCABLE 0x4026 USB to Serial Cable /* Rainbow Technologies products */ product RAINBOW IKEY2000 0x1200 i-Key 2000 @@ -1753,7 +1753,7 @@ /* Samsung products */ product SAMSUNG ML6060 0x3008 ML-6060 laser printer product SAMSUNG YP_U2 0x5050 YP-U2 MP3 Player -product SAMSUNG I500 0x6601 I500 Palm USB Phone +product SAMSUNG I500 0x6601 I500 Palm USB Phone /* SanDisk products */ product SANDISK SDDR05A 0x0001 ImageMate SDDR-05a @@ -1996,9 +1996,9 @@ /* Option products */ product OPTION VODAFONEMC3G 0x5000 Vodafone Mobile Connect 3G datacard -product OPTION GT3G 0x6000 GlobeTrotter 3G datacard +product OPTION GT3G 0x6000 GlobeTrotter 3G datacard product OPTION GT3GQUAD 0x6300 GlobeTrotter 3G QUAD datacard -product OPTION GT3GPLUS 0x6600 GlobeTrotter 3G+ datacard +product OPTION GT3GPLUS 0x6600 GlobeTrotter 3G+ datacard /* VTech products */ product VTECH RT2570 0x3012 RT2570 @@ -2043,7 +2043,7 @@ /* Yano products */ product YANO U640MO 0x0101 U640MO-03 -product YANO FW800HD 0x05fc METALWEAR-HDD +product YANO FW800HD 0x05fc METALWEAR-HDD /* Zinwell products */ product ZINWELL RT2570 0x0260 RT2570 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 12: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 645A516A41F for ; Sat, 30 Jun 2007 12: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 3C77F13C45E for ; Sat, 30 Jun 2007 12:50:04 +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 l5UCo4cH035691 for ; Sat, 30 Jun 2007 12:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UCo43k035690; Sat, 30 Jun 2007 12:50:04 GMT (envelope-from gnats) Resent-Date: Sat, 30 Jun 2007 12:50:04 GMT Resent-Message-Id: <200706301250.l5UCo43k035690@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, Ulrich Spoerlein Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4347016A400 for ; Sat, 30 Jun 2007 12:49:11 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.freebsd.org (Postfix) with ESMTP id C2FD913C458 for ; Sat, 30 Jun 2007 12:49:09 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so563836uge for ; Sat, 30 Jun 2007 05:49:09 -0700 (PDT) Received: by 10.67.89.5 with SMTP id r5mr1743341ugl.1183207749130; Sat, 30 Jun 2007 05:49:09 -0700 (PDT) Received: from roadrunner.q.local ( [85.180.181.128]) by mx.google.com with ESMTP id j12sm11082287fkf.2007.06.30.05.49.08 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 30 Jun 2007 05:49:08 -0700 (PDT) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.14.1/8.14.1) with ESMTP id l5UClMl7008745; Sat, 30 Jun 2007 14:47:22 +0200 (CEST) (envelope-from q@roadrunner.q.local) Received: (from q@localhost) by roadrunner.q.local (8.14.1/8.14.1/Submit) id l5UClMUY008744; Sat, 30 Jun 2007 14:47:22 +0200 (CEST) (envelope-from q) Message-Id: <200706301247.l5UClMUY008744@roadrunner.q.local> Date: Sat, 30 Jun 2007 14:47:22 +0200 (CEST) From: Ulrich Spoerlein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Warner Losh Subject: usb/114154: [PATCH] umass quirk: Samsung YP-U2 USB MP3/Ogg Player 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: Sat, 30 Jun 2007 12:50:04 -0000 >Number: 114154 >Category: usb >Synopsis: [PATCH] umass quirk: Samsung YP-U2 USB MP3/Ogg Player >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jun 30 12:50:03 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Ulrich Spoerlein >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: >Description: Samsung, YP-U2, 1GB MP3/Ogg Vorbis USB stick fails to attach with the old USB stack. It works fine with HPS' USB stack, though. # usbdevs -v Controller /dev/usb3: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 addr 8: high speed, power 500 mA, config 1, product 0x5050(0x5050), vendor 0x04e8(0x04e8), rev 10.01 # camcontrol inquiry da0 pass0: Removable Direct Access SCSI-4 device pass0: Serial Number 4002F9D69D94469B 40.000MB/s transfers # dmesg, no quirk umass0: on uhub3 umass0: SCSI over Bulk-Only; quirks = 0x0000 umass0:1:0:-1: Attached to scbus1 umass0: BBB reset failed, TIMEOUT umass0: BBB bulk-in clear stall failed, TIMEOUT umass0: BBB bulk-out clear stall failed, IOERROR umass0: BBB reset failed, IOERROR umass0: BBB bulk-in clear stall failed, IOERROR umass0: BBB bulk-out clear stall failed, IOERROR umass0: BBB reset failed, IOERROR umass0: BBB bulk-in clear stall failed, IOERROR umass0: BBB bulk-out clear stall failed, IOERROR umass0: BBB reset failed, IOERROR umass0: BBB bulk-in clear stall failed, IOERROR umass0: BBB bulk-out clear stall failed, IOERROR umass0: BBB reset failed, IOERROR umass0: BBB bulk-in clear stall failed, IOERROR umass0: BBB bulk-out clear stall failed, IOERROR # dmesg, quirk umass0: on uhub3 umass0: SCSI over Bulk-Only; quirks = 0x0110 umass0:1:0:-1: Attached to scbus1 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-4 device da0: 40.000MB/s transfers da0: 999MB (511616 2048 byte sectors: 64H 32S/T 249C) GEOM_LABEL: Label for provider da0s1 is msdosfs/USBSTICK. >How-To-Repeat: >Fix: Index: dev/usb/umass.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/umass.c,v retrieving revision 1.153 diff -u -p -r1.153 umass.c --- dev/usb/umass.c 21 Jun 2007 20:13:07 -0000 1.153 +++ dev/usb/umass.c 30 Jun 2007 12:40:14 -0000 @@ -452,6 +452,10 @@ static struct umass_devdescr_t umass_dev UMASS_PROTO_SCSI | UMASS_PROTO_BBB, IGNORE_RESIDUE | NO_START_STOP }, + { USB_VENDOR_SAMSUNG, USB_PRODUCT_SAMSUNG_YP_U2, RID_WILDCARD, + UMASS_PROTO_SCSI | UMASS_PROTO_BBB, + SHUTTLE_INIT | NO_GETMAXLUN + }, { USB_VENDOR_SANDISK, USB_PRODUCT_SANDISK_SDDR31, RID_WILDCARD, UMASS_PROTO_SCSI | UMASS_PROTO_BBB, READ_CAPACITY_OFFBY1 Index: dev/usb/usbdevs =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usbdevs,v retrieving revision 1.311 diff -u -p -r1.311 usbdevs --- dev/usb/usbdevs 26 Jun 2007 05:29:27 -0000 1.311 +++ dev/usb/usbdevs 30 Jun 2007 12:40:14 -0000 @@ -1752,6 +1752,7 @@ product SAGEM USBSERIAL 0x0027 USB-Seri /* Samsung products */ product SAMSUNG ML6060 0x3008 ML-6060 laser printer +product SAMSUNG YP_U2 0x5050 YP-U2 MP3 Player product SAMSUNG I500 0x6601 I500 Palm USB Phone /* SanDisk products */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 14:14:22 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 2B72016A468; Sat, 30 Jun 2007 14:14:22 +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 BC80413C465; Sat, 30 Jun 2007 14:14:21 +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 l5UEBbMU075851; Sat, 30 Jun 2007 08:11:37 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sat, 30 Jun 2007 08:12:15 -0600 (MDT) Message-Id: <20070630.081215.-8147205.imp@bsdimp.com> To: linimon@freebsd.org From: "M. Warner Losh" In-Reply-To: <200706300624.l5U6ODPU095461@freefall.freebsd.org> References: <200706300624.l5U6ODPU095461@freefall.freebsd.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]); Sat, 30 Jun 2007 08:11:37 -0600 (MDT) Cc: gavin@freebsd.org, freebsd-usb@freebsd.org 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: Sat, 30 Jun 2007 14:14:22 -0000 In message: <200706300624.l5U6ODPU095461@freefall.freebsd.org> Mark Linimon writes: : Synopsis: please add USB keyboard support to install CD's : : Responsible-Changed-From-To: freebsd-usb->gavin : Responsible-Changed-By: linimon : Responsible-Changed-When: Sat Jun 30 06:24:02 UTC 2007 : Responsible-Changed-Why: : Let gavin track this one. : : http://www.freebsd.org/cgi/query-pr.cgi?pr=78989 I thought there was support for usb keyboards on the install CDs. Warner From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 14:37: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 A085F16A421; Sat, 30 Jun 2007 14:37: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 7829913C465; Sat, 30 Jun 2007 14:37: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 l5UEbM4n044369; Sat, 30 Jun 2007 14:37:22 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UEbLxi044365; Sat, 30 Jun 2007 08:37:21 -0600 (MDT) (envelope-from imp) Date: Sat, 30 Jun 2007 08:37:21 -0600 (MDT) From: Warner Losh Message-Id: <200706301437.l5UEbLxi044365@freefall.freebsd.org> To: kay.abendroth@raxion.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/106070: devd recognizes ucom, but ttyU is the device actually 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, 30 Jun 2007 14:37:22 -0000 Synopsis: devd recognizes ucom, but ttyU is the device actually State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Sat Jun 30 08:37:03 MDT 2007 State-Changed-Why: Added a note to the ucom man page describing what happens. http://www.freebsd.org/cgi/query-pr.cgi?pr=106070 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 14:40: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 C051816A469; Sat, 30 Jun 2007 14:40: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 8FC8C13C45A; Sat, 30 Jun 2007 14:40: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 l5UEe0Vj044463; Sat, 30 Jun 2007 14:40:00 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UEdxU9044459; Sat, 30 Jun 2007 08:40:00 -0600 (MDT) (envelope-from imp) Date: Sat, 30 Jun 2007 08:40:00 -0600 (MDT) From: Warner Losh Message-Id: <200706301440.l5UEdxU9044459@freefall.freebsd.org> To: toni@stderror.at, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/96133: [scsi] [patch] add scsi quirk for joyfly 128mb flash usb stick 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, 30 Jun 2007 14:40:00 -0000 Synopsis: [scsi] [patch] add scsi quirk for joyfly 128mb flash usb stick State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Sat Jun 30 08:39:46 MDT 2007 State-Changed-Why: Added quirk http://www.freebsd.org/cgi/query-pr.cgi?pr=96133 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 14: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 CB68016A468 for ; Sat, 30 Jun 2007 14: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 74A2E13C45D for ; Sat, 30 Jun 2007 14: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 l5UEeBCq044565 for ; Sat, 30 Jun 2007 14:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UEeB2q044564; Sat, 30 Jun 2007 14:40:11 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 14:40:11 GMT Message-Id: <200706301440.l5UEeB2q044564@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/106070: 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: Sat, 30 Jun 2007 14:40:11 -0000 The following reply was made to PR usb/106070; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/106070: commit references a PR Date: Sat, 30 Jun 2007 14:36:46 +0000 (UTC) imp 2007-06-30 14:36:37 UTC FreeBSD src repository Modified files: share/man/man4 ucom.4 Log: Note the change in /dev name Submitted By: Kay Abendroth PR: usb/106070 Approved by: re (blanket) Revision Changes Path 1.8 +9 -0 src/share/man/man4/ucom.4 _______________________________________________ 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 Sat Jun 30 14:45: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 1A19516A46B; Sat, 30 Jun 2007 14:45:02 +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 E5DF913C4C1; Sat, 30 Jun 2007 14:45:01 +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 l5UEj1kP044932; Sat, 30 Jun 2007 14:45:01 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UEj1A3044928; Sat, 30 Jun 2007 08:45:01 -0600 (MDT) (envelope-from imp) Date: Sat, 30 Jun 2007 08:45:01 -0600 (MDT) From: Warner Losh Message-Id: <200706301445.l5UEj1A3044928@freefall.freebsd.org> To: Mark_Andrews@isc.org, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/103702: [cam] [patch] ChipsBnk: Unsupported USB memory stick 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, 30 Jun 2007 14:45:02 -0000 Synopsis: [cam] [patch] ChipsBnk: Unsupported USB memory stick State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Sat Jun 30 08:44:20 MDT 2007 State-Changed-Why: Submitted. This bug report is a little thin on details, so if the originator could followup with usbdevs -v that would be great. http://www.freebsd.org/cgi/query-pr.cgi?pr=103702 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 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 7453C16A400 for ; Sat, 30 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 659E013C455 for ; Sat, 30 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 l5UEo7Lm045117 for ; Sat, 30 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 l5UEo7ke045115; Sat, 30 Jun 2007 14:50:07 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 14:50:07 GMT Message-Id: <200706301450.l5UEo7ke045115@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/96133: 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: Sat, 30 Jun 2007 14:50:07 -0000 The following reply was made to PR usb/96133; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/96133: commit references a PR Date: Sat, 30 Jun 2007 14:41:36 +0000 (UTC) imp 2007-06-30 14:41:30 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Add quirk for JoyFly 128mb USB Flash Drive submitted by: Toni Schmidbauer PR: 96133 Approved by: re@ (blanket) Revision Changes Path 1.222 +8 -0 src/sys/cam/scsi/scsi_da.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 Sat Jun 30 14:50:12 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 1DDD616A468 for ; Sat, 30 Jun 2007 14:50:12 +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 BE87113C448 for ; Sat, 30 Jun 2007 14:50: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 l5UEoBJn045162 for ; Sat, 30 Jun 2007 14:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UEoBSB045161; Sat, 30 Jun 2007 14:50:11 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 14:50:11 GMT Message-Id: <200706301450.l5UEoBSB045161@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/103702: 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: Sat, 30 Jun 2007 14:50:12 -0000 The following reply was made to PR usb/103702; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/103702: commit references a PR Date: Sat, 30 Jun 2007 14:44:15 +0000 (UTC) imp 2007-06-30 14:44:10 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Quirk for ChipsBnk usb stick Submitted by: Mark Andrews PR: 103702 Approved by: re@ (blanket) Revision Changes Path 1.223 +8 -0 src/sys/cam/scsi/scsi_da.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 Sat Jun 30 14:50:12 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 D484616A400 for ; Sat, 30 Jun 2007 14:50:12 +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 80ADC13C447 for ; Sat, 30 Jun 2007 14:50:12 +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 l5UEnmUw076166; Sat, 30 Jun 2007 08:49:49 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sat, 30 Jun 2007 08:50:25 -0600 (MDT) Message-Id: <20070630.085025.-216318435.imp@bsdimp.com> To: uspoerlein@gmail.com From: "M. Warner Losh" In-Reply-To: <20070630124901.GB7222@roadrunner.q.local> References: <20070630124901.GB7222@roadrunner.q.local> 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, 30 Jun 2007 08:49:49 -0600 (MDT) Cc: usb@freebsd.org Subject: Re: [PATCH] Whitespace fix for usbdevs 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, 30 Jun 2007 14:50:12 -0000 I think I've already fixed these last night in one of my usbdevs commits. Can you update and confirm? Warner From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 14:51: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 AF5E716A469; Sat, 30 Jun 2007 14:51: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 87EA213C448; Sat, 30 Jun 2007 14:51: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 l5UEpkpN045392; Sat, 30 Jun 2007 14:51:46 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UEpkb9045388; Sat, 30 Jun 2007 08:51:46 -0600 (MDT) (envelope-from imp) Date: Sat, 30 Jun 2007 08:51:46 -0600 (MDT) From: Warner Losh Message-Id: <200706301451.l5UEpkb9045388@freefall.freebsd.org> To: uspoerlein@gmail.com, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/114154: [PATCH] umass quirk: Samsung YP-U2 USB MP3/Ogg Player 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, 30 Jun 2007 14:51:46 -0000 Synopsis: [PATCH] umass quirk: Samsung YP-U2 USB MP3/Ogg Player State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Sat Jun 30 08:51:32 MDT 2007 State-Changed-Why: Fix committed to current. http://www.freebsd.org/cgi/query-pr.cgi?pr=114154 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 15: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 CAB3816A469 for ; Sat, 30 Jun 2007 15: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 BBF1C13C457 for ; Sat, 30 Jun 2007 15:00:15 +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 l5UF0FVM045760 for ; Sat, 30 Jun 2007 15:00:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UF0FwU045752; Sat, 30 Jun 2007 15:00:15 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 15:00:15 GMT Message-Id: <200706301500.l5UF0FwU045752@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/114154: 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: Sat, 30 Jun 2007 15:00:15 -0000 The following reply was made to PR usb/114154; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/114154: commit references a PR Date: Sat, 30 Jun 2007 14:53:50 +0000 (UTC) imp 2007-06-30 14:53:44 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: umass quirk: Samsung YP-U2 USB MP3/Ogg Player Submitted by: Ulrich Spoerlein PR: 114154 Approved by: re@ (blanket) Revision Changes Path 1.157 +4 -0 src/sys/dev/usb/umass.c 1.315 +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 Sat Jun 30 15:00:21 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 BB1CE16A46C for ; Sat, 30 Jun 2007 15:00:21 +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 A1E0F13C4B7 for ; Sat, 30 Jun 2007 15:00:21 +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 l5UF0LiH045852 for ; Sat, 30 Jun 2007 15:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UF0LGt045851; Sat, 30 Jun 2007 15:00:21 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 15:00:21 GMT Message-Id: <200706301500.l5UF0LGt045851@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/107495: 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: Sat, 30 Jun 2007 15:00:21 -0000 The following reply was made to PR usb/107495; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/107495: commit references a PR Date: Sat, 30 Jun 2007 14:59:05 +0000 (UTC) imp 2007-06-30 14:58:56 UTC FreeBSD src repository Modified files: sys/cam cam_xpt.c Log: Quirk for WD Mybook. Seems they do not like serial number queries. Submitted by: Jason Harris PR: 107495 Approved by: re@ (blanket) Revision Changes Path 1.190 +12 -0 src/sys/cam/cam_xpt.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 Sat Jun 30 15:08:31 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 5617C16A41F; Sat, 30 Jun 2007 15:08:31 +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 01A3313C4B7; Sat, 30 Jun 2007 15:08:30 +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 l5UF7ddV076398; Sat, 30 Jun 2007 09:07:40 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sat, 30 Jun 2007 09:08:18 -0600 (MDT) Message-Id: <20070630.090818.84361176.imp@bsdimp.com> To: linimon@freebsd.org From: "M. Warner Losh" In-Reply-To: <200706300641.l5U6f727098044@freefall.freebsd.org> References: <200706300641.l5U6f727098044@freefall.freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Sat_Jun_30_09_08_18_2007_041)--" Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Sat, 30 Jun 2007 09:07:40 -0600 (MDT) Cc: bug-followup@freebsd.org, freebsd-usb@freebsd.org Subject: Re: usb/80773: "usbd_get_string()" could have taken a length parameter 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, 30 Jun 2007 15:08:31 -0000 ----Next_Part(Sat_Jun_30_09_08_18_2007_041)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Please find enclosed a patch for this. I'm sitting on the fence as to whether or not to commit it, since it is an api/abi change. Warner ----Next_Part(Sat_Jun_30_09_08_18_2007_041)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=patch Index: if_cdce.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/if_cdce.c,v retrieving revision 1.24 diff -u -r1.24 if_cdce.c --- if_cdce.c 23 Jun 2007 06:47:43 -0000 1.24 +++ if_cdce.c 30 Jun 2007 14:28:41 -0000 @@ -280,7 +280,8 @@ ue = (const usb_cdc_ethernet_descriptor_t *)usb_find_desc(dev, UDESC_INTERFACE, UDESCSUB_CDC_ENF); - if (!ue || usbd_get_string(dev, ue->iMacAddress, eaddr_str)) { + if (!ue || usbd_get_string(dev, ue->iMacAddress, eaddr_str, + sizeof(eaddr_str))) { /* Fake MAC address */ device_printf(sc->cdce_dev, "faking MAC address\n"); eaddr[0]= 0x2a; Index: uhub.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/uhub.c,v retrieving revision 1.81 diff -u -r1.81 uhub.c --- uhub.c 29 Jun 2007 20:34:42 -0000 1.81 +++ uhub.c 30 Jun 2007 14:28:41 -0000 @@ -655,7 +655,8 @@ found_dev: /* XXX can sleep */ - (void)usbd_get_string(dev, dev->ddesc.iSerialNumber, &serial[0]); + (void)usbd_get_string(dev, dev->ddesc.iSerialNumber, serial, + sizeof(serial)); if (dev->ifacenums == NULL) { snprintf(buf, buflen, "vendor=0x%04x product=0x%04x " "devclass=0x%02x devsubclass=0x%02x " Index: usb_subr.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usb_subr.c,v retrieving revision 1.94 diff -u -r1.94 usb_subr.c --- usb_subr.c 20 Jun 2007 05:10:54 -0000 1.94 +++ usb_subr.c 30 Jun 2007 14:28:42 -0000 @@ -213,12 +213,14 @@ } if (usedev) { - if (usbd_get_string(dev, udd->iManufacturer, v)) + if (usbd_get_string(dev, udd->iManufacturer, v, + USB_MAX_STRING_LEN)) vendor = NULL; else vendor = v; usbd_trim_spaces(vendor); - if (usbd_get_string(dev, udd->iProduct, p)) + if (usbd_get_string(dev, udd->iProduct, p, + USB_MAX_STRING_LEN)) product = NULL; else product = p; Index: usbdi.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usbdi.c,v retrieving revision 1.102 diff -u -r1.102 usbdi.c --- usbdi.c 20 Jun 2007 05:10:54 -0000 1.102 +++ usbdi.c 30 Jun 2007 14:28:42 -0000 @@ -1310,7 +1310,7 @@ } usbd_status -usbd_get_string(usbd_device_handle dev, int si, char *buf) +usbd_get_string(usbd_device_handle dev, int si, char *buf, size_t len) { int swap = dev->quirks->uq_flags & UQ_SWAP_UNICODE; usb_string_descriptor_t us; @@ -1321,6 +1321,8 @@ int size; buf[0] = '\0'; + if (len == 0) + return (USBD_NORMAL_COMPLETION); if (si == 0) return (USBD_INVAL); if (dev->quirks->uq_flags & UQ_NO_STRINGS) @@ -1342,7 +1344,7 @@ return (err); s = buf; n = size / 2 - 1; - for (i = 0; i < n; i++) { + for (i = 0; i < n && i < len - 1; i++) { c = UGETW(us.bString[i]); /* Convert from Unicode, handle buggy strings. */ if ((c & 0xff00) == 0) Index: usbdi.h =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usbdi.h,v retrieving revision 1.62 diff -u -r1.62 usbdi.h --- usbdi.h 12 Jun 2007 19:40:20 -0000 1.62 +++ usbdi.h 30 Jun 2007 14:28:42 -0000 @@ -173,7 +173,8 @@ int usbd_ratecheck(struct timeval *last); -usbd_status usbd_get_string(usbd_device_handle dev, int si, char *buf); +usbd_status usbd_get_string(usbd_device_handle dev, int si, char *buf, + size_t len); /* An iterator for descriptors. */ typedef struct { ----Next_Part(Sat_Jun_30_09_08_18_2007_041)---- From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 15:10: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 E43D716A468 for ; Sat, 30 Jun 2007 15:10: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 9BD6913C4BD for ; Sat, 30 Jun 2007 15:10: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 l5UFA7E0046275 for ; Sat, 30 Jun 2007 15:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UFA7Y3046273; Sat, 30 Jun 2007 15:10:07 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 15:10:07 GMT Message-Id: <200706301510.l5UFA7Y3046273@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: "M. Warner Losh" Cc: Subject: Re: usb/80773: "usbd_get_string()" could have taken a length parameter 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, 30 Jun 2007 15:10:08 -0000 The following reply was made to PR usb/80773; it has been noted by GNATS. From: "M. Warner Losh" To: linimon@freebsd.org Cc: hselasky@c2i.net, freebsd-usb@freebsd.org, bug-followup@freebsd.org Subject: Re: usb/80773: "usbd_get_string()" could have taken a length parameter Date: Sat, 30 Jun 2007 09:08:18 -0600 (MDT) ----Next_Part(Sat_Jun_30_09_08_18_2007_041)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Please find enclosed a patch for this. I'm sitting on the fence as to whether or not to commit it, since it is an api/abi change. Warner ----Next_Part(Sat_Jun_30_09_08_18_2007_041)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=patch Index: if_cdce.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/if_cdce.c,v retrieving revision 1.24 diff -u -r1.24 if_cdce.c --- if_cdce.c 23 Jun 2007 06:47:43 -0000 1.24 +++ if_cdce.c 30 Jun 2007 14:28:41 -0000 @@ -280,7 +280,8 @@ ue = (const usb_cdc_ethernet_descriptor_t *)usb_find_desc(dev, UDESC_INTERFACE, UDESCSUB_CDC_ENF); - if (!ue || usbd_get_string(dev, ue->iMacAddress, eaddr_str)) { + if (!ue || usbd_get_string(dev, ue->iMacAddress, eaddr_str, + sizeof(eaddr_str))) { /* Fake MAC address */ device_printf(sc->cdce_dev, "faking MAC address\n"); eaddr[0]= 0x2a; Index: uhub.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/uhub.c,v retrieving revision 1.81 diff -u -r1.81 uhub.c --- uhub.c 29 Jun 2007 20:34:42 -0000 1.81 +++ uhub.c 30 Jun 2007 14:28:41 -0000 @@ -655,7 +655,8 @@ found_dev: /* XXX can sleep */ - (void)usbd_get_string(dev, dev->ddesc.iSerialNumber, &serial[0]); + (void)usbd_get_string(dev, dev->ddesc.iSerialNumber, serial, + sizeof(serial)); if (dev->ifacenums == NULL) { snprintf(buf, buflen, "vendor=0x%04x product=0x%04x " "devclass=0x%02x devsubclass=0x%02x " Index: usb_subr.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usb_subr.c,v retrieving revision 1.94 diff -u -r1.94 usb_subr.c --- usb_subr.c 20 Jun 2007 05:10:54 -0000 1.94 +++ usb_subr.c 30 Jun 2007 14:28:42 -0000 @@ -213,12 +213,14 @@ } if (usedev) { - if (usbd_get_string(dev, udd->iManufacturer, v)) + if (usbd_get_string(dev, udd->iManufacturer, v, + USB_MAX_STRING_LEN)) vendor = NULL; else vendor = v; usbd_trim_spaces(vendor); - if (usbd_get_string(dev, udd->iProduct, p)) + if (usbd_get_string(dev, udd->iProduct, p, + USB_MAX_STRING_LEN)) product = NULL; else product = p; Index: usbdi.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usbdi.c,v retrieving revision 1.102 diff -u -r1.102 usbdi.c --- usbdi.c 20 Jun 2007 05:10:54 -0000 1.102 +++ usbdi.c 30 Jun 2007 14:28:42 -0000 @@ -1310,7 +1310,7 @@ } usbd_status -usbd_get_string(usbd_device_handle dev, int si, char *buf) +usbd_get_string(usbd_device_handle dev, int si, char *buf, size_t len) { int swap = dev->quirks->uq_flags & UQ_SWAP_UNICODE; usb_string_descriptor_t us; @@ -1321,6 +1321,8 @@ int size; buf[0] = '\0'; + if (len == 0) + return (USBD_NORMAL_COMPLETION); if (si == 0) return (USBD_INVAL); if (dev->quirks->uq_flags & UQ_NO_STRINGS) @@ -1342,7 +1344,7 @@ return (err); s = buf; n = size / 2 - 1; - for (i = 0; i < n; i++) { + for (i = 0; i < n && i < len - 1; i++) { c = UGETW(us.bString[i]); /* Convert from Unicode, handle buggy strings. */ if ((c & 0xff00) == 0) Index: usbdi.h =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usbdi.h,v retrieving revision 1.62 diff -u -r1.62 usbdi.h --- usbdi.h 12 Jun 2007 19:40:20 -0000 1.62 +++ usbdi.h 30 Jun 2007 14:28:42 -0000 @@ -173,7 +173,8 @@ int usbd_ratecheck(struct timeval *last); -usbd_status usbd_get_string(usbd_device_handle dev, int si, char *buf); +usbd_status usbd_get_string(usbd_device_handle dev, int si, char *buf, + size_t len); /* An iterator for descriptors. */ typedef struct { ----Next_Part(Sat_Jun_30_09_08_18_2007_041)---- From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 20:20:12 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 BAE6B16A421 for ; Sat, 30 Jun 2007 20:20:12 +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 A924513C457 for ; Sat, 30 Jun 2007 20:20:12 +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 l5UKKCJt069949 for ; Sat, 30 Jun 2007 20:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UKKC7R069948; Sat, 30 Jun 2007 20:20:12 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 20:20:12 GMT Message-Id: <200706302020.l5UKKC7R069948@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/80773: 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: Sat, 30 Jun 2007 20:20:12 -0000 The following reply was made to PR usb/80773; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/80773: commit references a PR Date: Sat, 30 Jun 2007 20:18:51 +0000 (UTC) imp 2007-06-30 20:18:44 UTC FreeBSD src repository Modified files: sys/dev/usb if_cdce.c uhub.c usb_subr.c usbdi.c usbdi.h Log: Fix two more PRs: (1) Add size parameter to usbd_get_string() (2) Properly limit speed when a full speed hub is plugged into a high speed hub. Submitted by: Hans Petter Selasky PR: 80773, 79725 Approved by: re@ (kensmith) Revision Changes Path 1.25 +2 -1 src/sys/dev/usb/if_cdce.c 1.82 +2 -1 src/sys/dev/usb/uhub.c 1.95 +18 -2 src/sys/dev/usb/usb_subr.c 1.103 +4 -2 src/sys/dev/usb/usbdi.c 1.63 +2 -1 src/sys/dev/usb/usbdi.h _______________________________________________ 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 Sat Jun 30 20:20: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 7E30E16A46B for ; Sat, 30 Jun 2007 20:20: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 2939813C448 for ; Sat, 30 Jun 2007 20:20: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 l5UKKH3O069991 for ; Sat, 30 Jun 2007 20:20:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UKKHMU069990; Sat, 30 Jun 2007 20:20:17 GMT (envelope-from gnats) Date: Sat, 30 Jun 2007 20:20:17 GMT Message-Id: <200706302020.l5UKKHMU069990@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/79725: 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: Sat, 30 Jun 2007 20:20:17 -0000 The following reply was made to PR usb/79725; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/79725: commit references a PR Date: Sat, 30 Jun 2007 20:18:51 +0000 (UTC) imp 2007-06-30 20:18:44 UTC FreeBSD src repository Modified files: sys/dev/usb if_cdce.c uhub.c usb_subr.c usbdi.c usbdi.h Log: Fix two more PRs: (1) Add size parameter to usbd_get_string() (2) Properly limit speed when a full speed hub is plugged into a high speed hub. Submitted by: Hans Petter Selasky PR: 80773, 79725 Approved by: re@ (kensmith) Revision Changes Path 1.25 +2 -1 src/sys/dev/usb/if_cdce.c 1.82 +2 -1 src/sys/dev/usb/uhub.c 1.95 +18 -2 src/sys/dev/usb/usb_subr.c 1.103 +4 -2 src/sys/dev/usb/usbdi.c 1.63 +2 -1 src/sys/dev/usb/usbdi.h _______________________________________________ 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 Sat Jun 30 20:21: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 877CA16A469; Sat, 30 Jun 2007 20:21: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 5E97313C4B9; Sat, 30 Jun 2007 20:21: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 l5UKLM5a070219; Sat, 30 Jun 2007 20:21:22 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UKLMjG070215; Sat, 30 Jun 2007 14:21:22 -0600 (MDT) (envelope-from imp) Date: Sat, 30 Jun 2007 14:21:22 -0600 (MDT) From: Warner Losh Message-Id: <200706302021.l5UKLMjG070215@freefall.freebsd.org> To: hselasky@c2i.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/79725: [usb] [patch] USB device speed is not double-checked 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, 30 Jun 2007 20:21:22 -0000 Synopsis: [usb] [patch] USB device speed is not double-checked State-Changed-From-To: open->patched State-Changed-By: imp State-Changed-When: Sat Jun 30 14:21:09 MDT 2007 State-Changed-Why: Fixed http://www.freebsd.org/cgi/query-pr.cgi?pr=79725 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 20:22: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 B98C616A41F; Sat, 30 Jun 2007 20:22: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 8C39A13C483; Sat, 30 Jun 2007 20:22: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 l5UKMELj070295; Sat, 30 Jun 2007 20:22:14 GMT (envelope-from imp@freefall.freebsd.org) Received: (from imp@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5UKMEYC070291; Sat, 30 Jun 2007 14:22:14 -0600 (MDT) (envelope-from imp) Date: Sat, 30 Jun 2007 14:22:14 -0600 (MDT) From: Warner Losh Message-Id: <200706302022.l5UKMEYC070291@freefall.freebsd.org> To: hselasky@c2i.net, imp@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/80773: "usbd_get_string()" could have taken a length parameter 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, 30 Jun 2007 20:22:14 -0000 Synopsis: "usbd_get_string()" could have taken a length parameter State-Changed-From-To: suspended->patched State-Changed-By: imp State-Changed-When: Sat Jun 30 14:22:04 MDT 2007 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=80773 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 21:38:03 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 5722116A469; Sat, 30 Jun 2007 21:38:03 +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 2FE3C13C46A; Sat, 30 Jun 2007 21:38:03 +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 l5ULc3t3077691; Sat, 30 Jun 2007 21:38:03 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5ULc2Hi077687; Sat, 30 Jun 2007 21:38:02 GMT (envelope-from linimon) Date: Sat, 30 Jun 2007 21:38:02 GMT From: Mark Linimon Message-Id: <200706302138.l5ULc2Hi077687@freefall.freebsd.org> To: jharris@widomaker.com, linimon@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/107495: [cam] [patch] Fix long wait before WD My Book 250GB (USB) is 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: Sat, 30 Jun 2007 21:38:03 -0000 Synopsis: [cam] [patch] Fix long wait before WD My Book 250GB (USB) is recognized State-Changed-From-To: open->patched State-Changed-By: linimon State-Changed-When: Sat Jun 30 21:37:47 UTC 2007 State-Changed-Why: Note that a fix was committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=107495 From owner-freebsd-usb@FreeBSD.ORG Sat Jun 30 23:43:20 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 3E10E16A400 for ; Sat, 30 Jun 2007 23:43:20 +0000 (UTC) (envelope-from rcx@memc.com) Received: from flashpt1meg.1meg.golden.net (flashpt1meg.1meg.golden.net [216.75.172.144]) by mx1.freebsd.org (Postfix) with SMTP id D444C13C48A for ; Sat, 30 Jun 2007 23:43:19 +0000 (UTC) (envelope-from rcx@memc.com) Received: (qmail 23585 invoked from network); Sat, 30 Jun 2007 19:55:38 -0400 Received: from unknown (HELO uey) (53.119.224.144) by flashpt1meg.1meg.golden.net with SMTP; Sat, 30 Jun 2007 19:55:38 -0400 Message-ID: <4686ED7A.6050507@worldnet.att.net> Date: Sat, 30 Jun 2007 19:55:38 -0400 From: quiz User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: mounted disenchanted 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, 30 Jun 2007 23:43:20 -0000 ERMX Gets into Nitride Devices! Applications Are Amazing! EntreMetrix Inc. (ERMX) $0.16 Nitride Wafers are the next level in super technology. From Super Energy Conductors to Nano-Lasers used in microscopic surgery. ERMX is moved into a joint venture to manufacture Nitride devices out of China. This is huge get on ERMX Monday! Once you rely on it, you would find your memory failing you always. I'm going to tell you how to change from head-to-toe with just a little technique. More importantly, you should believe in what you're trying to convey. Take out the first scratch pad. John McDonald, director of the Spinal Cord Injury Program at Washington University, St. I would tell you more in the next issue. Therefore, you should go through a process of intense internal justification before you can truly turn something you received into knowledge. You might not be able to change your appearance. Then list those you have to do that week to achieve your objectives and goals. Don't spread it to several lines for it is not necessary. Louis, called Reeve "one of the most intense individuals I've ever met in my life. The interviewers have the same goal in mind. They blame the economy. Why not take the chance to negotiate a better deal? He established the Christopher Reeve Paralysis Foundation to pursue this mission. With the first pad, go back to revise it every other week. If possible, skip the earlier jobs that are too remote . If it doesn't work out, it's no big deal. Fifthly, remove the mental block in your brain. Relax and do your best. Eliminate pronouns such as "I" in your descriptions. You can use pens or highlighters of different colors to amend and add new things to this second scratch pad. His response was: "It's not a matter of IF I will walk again, it is just a matter of WHEN and HOW. Write down first those immediate tasks you have to accomplish that day. Yes, you got it, one page. It is just a matter of believing in yourself.