From owner-freebsd-usb@FreeBSD.ORG Sun Oct 1 07:43:48 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60C0E16A403 for ; Sun, 1 Oct 2006 07:43:48 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe10.swip.net [212.247.155.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E8D343D6A for ; Sun, 1 Oct 2006 07:43:46 +0000 (GMT) (envelope-from hselasky@c2i.net) X-T2-Posting-ID: gvlK0tOCzrqh9CPROFOFPw== X-Cloudmark-Score: 0.000000 [] Received: from [193.216.91.127] (HELO [10.0.0.249]) by mailfe10.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 122047035; Sun, 01 Oct 2006 09:43:45 +0200 From: Hans Petter Selasky To: Ulrich Spoerlein Date: Sun, 1 Oct 2006 09:44:03 +0200 User-Agent: KMail/1.7 References: <200609171214.49165.hselasky@c2i.net> <20060930152928.GB1441@roadrunner.q.local> In-Reply-To: <20060930152928.GB1441@roadrunner.q.local> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610010944.04652.hselasky@c2i.net> Cc: freebsd-usb@freebsd.org Subject: Re: New UMASS driver available for testing 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, 01 Oct 2006 07:43:48 -0000 On Saturday 30 September 2006 17:29, Ulrich Spoerlein wrote: > Hans Petter Selasky wrote: > > Hi, > > > > I have finished the conversion of the UMASS driver to my new USB API. If > > you have got a UMASS device laying around, and want to help the USB > > project, please give the new driver a test. > > Well, it's been a time, but I finally got around to benchmarking you new > driver. First of all, a diff of the dmesg from the old against your > driver: > > > > As you can see, performance increased by roughly 10%, but system time > increased about 300% :( > > I hope this info was useful to you and am looking forward to seeing your > reworked USB system hit the tree soon! The extra time used is due to an inline wait loop in the code, to make things simple. You can try the following experimental patch: Edit: /sys/dev/usb2/_ehci.c Lookup the following piece of code: if(((xfer->pipe->methods == &ehci_device_ctrl_methods) || (xfer->pipe->methods == &ehci_device_bulk_methods)) && (sc->sc_doorbell_disable == 0)) { u_int32_t to = 100*1000; /* wait for doorbell ~32us */ EOWRITE4(sc, EHCI_USBCMD, EOREAD4(sc, EHCI_USBCMD) | EHCI_CMD_IAAD); while(EOREAD4(sc, EHCI_USBCMD) & EHCI_CMD_IAAD) { if(!to--) { printf("%s: doorbell timeout " "(disabling)\n", __FUNCTION__); sc->sc_doorbell_disable = 1; break; } DELAY(1); } need_delay = 0; } Change it to: if(((xfer->pipe->methods == &ehci_device_ctrl_methods) || (xfer->pipe->methods == &ehci_device_bulk_methods)) && (sc->sc_doorbell_disable == 0)) { u_int32_t to = 100*1000; if (error != 0) { /* simply add an "if"-statement */ /* wait for doorbell ~32us */ EOWRITE4(sc, EHCI_USBCMD, EOREAD4(sc, EHCI_USBCMD) | EHCI_CMD_IAAD); while(EOREAD4(sc, EHCI_USBCMD) & EHCI_CMD_IAAD) { if(!to--) { printf("%s: doorbell timeout " "(disabling)\n", __FUNCTION__); sc->sc_doorbell_disable = 1; break; } DELAY(1); } need_delay = 0; } } Then recompile the kernel and try again. Thanks for testing. --HPS From owner-freebsd-usb@FreeBSD.ORG Sun Oct 1 10:00:37 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 807BC16A47C for ; Sun, 1 Oct 2006 10:00:37 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 761EC43D66 for ; Sun, 1 Oct 2006 10:00:36 +0000 (GMT) (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 k91A0aqF062259 for ; Sun, 1 Oct 2006 10:00:36 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k91A0ZC1062256; Sun, 1 Oct 2006 10:00:35 GMT (envelope-from gnats) Resent-Date: Sun, 1 Oct 2006 10:00:35 GMT Resent-Message-Id: <200610011000.k91A0ZC1062256@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, Alexey Roslyakov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C90816A403 for ; Sun, 1 Oct 2006 09:52:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 489F843D49 for ; Sun, 1 Oct 2006 09:52:32 +0000 (GMT) (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 k919qWPk020049 for ; Sun, 1 Oct 2006 09:52:32 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k919qWvb020033; Sun, 1 Oct 2006 09:52:32 GMT (envelope-from nobody) Message-Id: <200610010952.k919qWvb020033@www.freebsd.org> Date: Sun, 1 Oct 2006 09:52:32 GMT From: Alexey Roslyakov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: usb/103865: Add support for Familiar Linux powered iPaq handhelds to if_cdce 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, 01 Oct 2006 10:00:37 -0000 >Number: 103865 >Category: usb >Synopsis: Add support for Familiar Linux powered iPaq handhelds to if_cdce >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: Sun Oct 01 10:00:35 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Alexey Roslyakov >Release: FreeBSD 6.1-STABLE i386 >Organization: >Environment: FreeBSD book.redeyes 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #33: Sat Sep 30 17:37:26 MSD 2006 e-yes@book.redeyes:/usr/obj/usr/src/sys/ACERBOOK i386 >Description: Ethernet CDC networking works great. if_cdce w/ Familiar Linux support already exist in NetBSD, so constant for product ID taken from it. See patch. >How-To-Repeat: Patch, rebuild if_cdce.ko, kldload it, plug in iPaq. >Fix: diff -ru /sys/dev/usb/if_cdce.c ./dev/usb/if_cdce.c --- /sys/dev/usb/if_cdce.c Sun Oct 1 00:12:04 2006 +++ ./dev/usb/if_cdce.c Sun Oct 1 13:26:35 2006 @@ -104,6 +104,7 @@ {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_SLC750 }, CDCE_ZAURUS | CDCE_NO_UNION }, {{ USB_VENDOR_GMATE, USB_PRODUCT_GMATE_YP3X00 }, CDCE_NO_UNION }, {{ USB_VENDOR_NETCHIP, USB_PRODUCT_NETCHIP_ETHERNETGADGET }, CDCE_NO_UNION }, + {{ USB_VENDOR_COMPAQ, USB_PRODUCT_IPAQLINUX }, CDCE_NO_UNION }, }; #define cdce_lookup(v, p) ((const struct cdce_type *)usb_lookup(cdce_devs, v, p)) diff -ru /sys/dev/usb/usbdevs ./dev/usb/usbdevs --- /sys/dev/usb/usbdevs Mon Aug 21 11:03:11 2006 +++ ./dev/usb/usbdevs Sun Oct 1 12:52:13 2006 @@ -761,6 +761,7 @@ /* Compaq products */ product COMPAQ PJB100 0x504a Personal Jukebox PJB100 +product COMPAQ IPAQLINUX 0x505a iPAQ Linux /* Connectix products */ product CONNECTIX QUICKCAM 0x0001 QuickCam >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Sun Oct 1 20:46:35 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9507716A40F for ; Sun, 1 Oct 2006 20:46:35 +0000 (UTC) (envelope-from rob@cissp.org.uk) Received: from smtp-out4.blueyonder.co.uk (smtp-out4.blueyonder.co.uk [195.188.213.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25DC643D45 for ; Sun, 1 Oct 2006 20:46:34 +0000 (GMT) (envelope-from rob@cissp.org.uk) Received: from [172.23.170.136] (helo=anti-virus01-07) by smtp-out4.blueyonder.co.uk with smtp (Exim 4.52) id 1GU8Cn-0005wu-IN for freebsd-usb@freebsd.org; Sun, 01 Oct 2006 21:46:33 +0100 Received: from [82.47.154.76] (helo=cissp.org.uk) by asmtp-out3.blueyonder.co.uk with esmtpa (Exim 4.52) id 1GU83d-00071Q-Tv for freebsd-usb@freebsd.org; Sun, 01 Oct 2006 21:37:06 +0100 Received: from [192.168.200.3] (rob.bsdbox [192.168.200.3]) by cissp.org.uk (8.13.6/8.13.6) with ESMTP id k91KbBJQ000945 for ; Sun, 1 Oct 2006 21:37:11 +0100 (BST) (envelope-from rob@cissp.org.uk) Message-ID: <452026F3.5010609@cissp.org.uk> Date: Sun, 01 Oct 2006 21:37:07 +0100 From: Rob Mason User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: freebsd-usb@freebsd.org References: 200609091750.k89HoOH3023036@freefall.freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -1.36 () ALL_TRUSTED Content-Disposition: inline X-Scanned-By: MIMEDefang 2.57 on 192.168.200.2 Subject: usb/103046: [patch] ulpt event driven I/O with select(2) and nonblock X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Oct 2006 20:46:35 -0000 Hans, You've just made a frustrated sysadmin very happy! Your ulpt code works perfectly with the HP1022 LasetJet (6-STABLE + CUPS 1.2 + foo2zjs drivers). Previously this printer would not work. Now been carrying out heavy duty printing for the past few days with no probs... Is this ulpt code likely to make it into 6-STABLE any time soon??? Rgds Rob This email has been scanned by the ClamAV opensource Anti-Virus scanner. From owner-freebsd-usb@FreeBSD.ORG Sun Oct 1 21:23:30 2006 Return-Path: X-Original-To: usb@freebsd.org Delivered-To: freebsd-usb@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3E6416A417 for ; Sun, 1 Oct 2006 21:23:30 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABD2543D64 for ; Sun, 1 Oct 2006 21:23:18 +0000 (GMT) (envelope-from r.c.ladan@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so413085uge for ; Sun, 01 Oct 2006 14:23:17 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:subject:x-enigmail-version:content-type; b=TEgCx09U3bS2iT65lrTwfG/qnqgVSnaBDZ/T/9oj/k8XC2arBUzCh22MBjf16tErm+pR5EiB/BfvQtJAH7c1vvMkvnbzkkz08FMdr1o7f4y4QXD1IfKz+H5lDb/TTgR6wPeAICnPKf9A/kIpmZlt7KywX1WgI2cRu//Q2YDGA9U= Received: by 10.66.240.12 with SMTP id n12mr2234936ugh; Sun, 01 Oct 2006 14:23:17 -0700 (PDT) Received: from ?192.168.123.146? ( [195.241.221.201]) by mx.gmail.com with ESMTP id m4sm2025878ugc.2006.10.01.14.23.16; Sun, 01 Oct 2006 14:23:16 -0700 (PDT) Message-ID: <452031C3.3090805@gmail.com> Date: Sun, 01 Oct 2006 23:23:15 +0200 From: Rene Ladan User-Agent: Thunderbird 1.5.0.7 (X11/20060914) MIME-Version: 1.0 To: usb@freebsd.org X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/mixed; boundary="------------020309000006060001080400" Cc: Subject: rfc: import usbhidctl(1) from OpenBSD 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, 01 Oct 2006 21:23:30 -0000 This is a multi-part message in MIME format. --------------020309000006060001080400 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi, I was thinking about the idea of sending a PR to replace our usbhidctl(1) with that of OpenBSD/NetBSD. It has the following advantages: * the -w option hopefully works, the implementation of PR usb/103418 seems to be buggy * the command 'usbhidctl -f DEV item' to display the value of a single item actually works (our implementation returns nothing) * in sync with OpenBSD and NetBSD * my own PR usb/103418 and docs/103420 can be trashed. I've sucessfully tested OpenBSD's usbhidctl(1) (http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/usbhidctl/usbhid.c, revision 1.7) with an Xbox 360 controller (the output report descriptor is under development). It compiles fine after applying the attached patch using `cc usbhid.c -o OUTFILE -lusbhid`. Regards, Rene -- GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) "It won't fit on the line." -- me, 2001 --------------020309000006060001080400 Content-Type: text/x-patch; name="openbsd-usbhid.c.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="openbsd-usbhid.c.diff" --- openbsd-usbhid.c.orig Sun Oct 1 23:06:23 2006 +++ openbsd-usbhid.c Sun Oct 1 22:57:55 2006 @@ -46,6 +46,7 @@ #include #include #include +#include #include #include #include @@ -932,8 +933,7 @@ /* NOTREACHED */ } - if (hid_start(table) == -1) - errx(1, "hid_init"); + hid_init(table); if (dev[0] != '/') { snprintf(devnamebuf, sizeof(devnamebuf), "/dev/%s%s", --------------020309000006060001080400-- From owner-freebsd-usb@FreeBSD.ORG Mon Oct 2 07:55:24 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1F1C16A40F for ; Mon, 2 Oct 2006 07:55:24 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe07.swip.net [212.247.154.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id F245043D66 for ; Mon, 2 Oct 2006 07:55:21 +0000 (GMT) (envelope-from hselasky@c2i.net) X-T2-Posting-ID: gvlK0tOCzrqh9CPROFOFPw== X-Cloudmark-Score: 0.000000 [] Received: from [193.216.120.22] (HELO [10.0.0.249]) by mailfe07.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 292693757; Mon, 02 Oct 2006 09:55:18 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Mon, 2 Oct 2006 09:55:37 +0200 User-Agent: KMail/1.7 References: <452026F3.5010609@cissp.org.uk> In-Reply-To: <452026F3.5010609@cissp.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610020955.38698.hselasky@c2i.net> Cc: Subject: Re: usb/103046: [patch] ulpt event driven I/O with select(2) and nonblock X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 07:55:25 -0000 On Sunday 01 October 2006 22:37, Rob Mason wrote: > Hans, > > You've just made a frustrated sysadmin very happy! Your ulpt code works > perfectly with the HP1022 LasetJet (6-STABLE + CUPS 1.2 + foo2zjs > drivers). Previously this printer would not work. Now been carrying > out heavy duty printing for the past few days with no probs... > > Is this ulpt code likely to make it into 6-STABLE any time soon??? > > Rgds > > Rob Most likely the code will hit 7-CURRENT after Christmas. I am not sure if it will get backported. --HPS From owner-freebsd-usb@FreeBSD.ORG Mon Oct 2 08:23:05 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA5C816A47B for ; Mon, 2 Oct 2006 08:23:05 +0000 (UTC) (envelope-from rob@cissp.org.uk) Received: from smtp-out3.blueyonder.co.uk (smtp-out3.blueyonder.co.uk [195.188.213.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75C0443D70 for ; Mon, 2 Oct 2006 08:23:05 +0000 (GMT) (envelope-from rob@cissp.org.uk) Received: from [172.23.170.139] (helo=anti-virus01-10) by smtp-out3.blueyonder.co.uk with smtp (Exim 4.52) id 1GUJ4q-00056O-A1; Mon, 02 Oct 2006 09:23:04 +0100 Received: from [82.47.154.76] (helo=cissp.org.uk) by asmtp-out1.blueyonder.co.uk with esmtpa (Exim 4.52) id 1GUIoJ-0000Gf-7Z; Mon, 02 Oct 2006 09:05:59 +0100 Received: from [192.168.200.3] (rob.bsdbox [192.168.200.3]) by cissp.org.uk (8.13.6/8.13.6) with ESMTP id k92866FF019022; Mon, 2 Oct 2006 09:06:06 +0100 (BST) (envelope-from rob@cissp.org.uk) Message-ID: <4520C869.30808@cissp.org.uk> Date: Mon, 02 Oct 2006 09:06:01 +0100 From: Rob Mason User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Hans Petter Selasky References: <452026F3.5010609@cissp.org.uk> <200610020955.38698.hselasky@c2i.net> In-Reply-To: <200610020955.38698.hselasky@c2i.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -1.36 () ALL_TRUSTED Content-Disposition: inline X-Scanned-By: MIMEDefang 2.57 on 192.168.200.2 Cc: freebsd-usb@freebsd.org Subject: Re: usb/103046: [patch] ulpt event driven I/O with select(2) and nonblock X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 08:23:06 -0000 Hans Petter Selasky wrote: > On Sunday 01 October 2006 22:37, Rob Mason wrote: > >> Hans, >> >> You've just made a frustrated sysadmin very happy! Your ulpt code works >> perfectly with the HP1022 LasetJet (6-STABLE + CUPS 1.2 + foo2zjs >> drivers). Previously this printer would not work. Now been carrying >> out heavy duty printing for the past few days with no probs... >> >> Is this ulpt code likely to make it into 6-STABLE any time soon??? >> >> Rgds >> >> Rob >> > > Most likely the code will hit 7-CURRENT after Christmas. I am not sure if it > will get backported. > > --HPS > That's a real shame - there must be hundreds of frustrated users out there with apparently non-supported USB printers. Personally I've seen a number of postings in various forums where users have hit this problem and have turned elsewhere (other OSes) for the solution. I'm ashamed to say that this issue forced me to use Ubuntu for Samba Print/File services over the past few months - and I only stumbled across your FBSD solution by accident! I'm happy to carry out any ulpt testing you may require - just drop me a line... Rob This email has been scanned by the ClamAV opensource Anti-Virus scanner. From owner-freebsd-usb@FreeBSD.ORG Mon Oct 2 11:08:44 2006 Return-Path: X-Original-To: freebsd-usb@FreeBSD.org Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE7F916A5DC for ; Mon, 2 Oct 2006 11:08:44 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4045C43D4C for ; Mon, 2 Oct 2006 11:08:42 +0000 (GMT) (envelope-from owner-bugmaster@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 k92B8gOV001665 for ; Mon, 2 Oct 2006 11:08:42 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k92B8ekR001661 for freebsd-usb@FreeBSD.org; Mon, 2 Oct 2006 11:08:40 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 2 Oct 2006 11:08:40 GMT Message-Id: <200610021108.k92B8ekR001661@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon 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, 02 Oct 2006 11:08:44 -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 f usb/55555 usb [ums] system freezes with access to /dev/ums0 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 f usb/76204 usb panic while using usb attached modem o usb/76395 usb USB printer does not work, usbdevs says "addr 0 should f usb/76684 usb [hang] Toshiba PDR-M4 camera connected via USB hangs s o usb/77184 usb kernel panic on USB device disconnect o usb/77294 usb ucom + ulpcom panic o usb/77940 usb [patch] [panic] insertion of usb keyboard panics syste f i386/78218 usb [kue] kue not detected on Sony PCG-F370 VAIO o usb/78989 usb please add USB keyboard support to install CD's o usb/79140 usb WD Firewire/USB Combo hangs under load on USB interfac o usb/79269 usb USB ohci da0 plug/unplug causes crashes and lockups. o usb/79287 usb UHCI hang after interrupt transfer o usb/79524 usb printing to Minolta PagePro 1[23]xxW via USB fails wit f usb/79656 usb [usb] RHSC interrupts lost o usb/79722 usb [usb] wrong alignments in ehci.h o usb/80040 usb [hang] Use of sound mixer causes system freeze with ua f usb/80260 usb Travan USB tape drive fails to write o usb/80361 usb mounting of usb-stick fails o usb/80373 usb usb keyboard does not respond o usb/80829 usb possible panic when loading USB-modules o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/81308 usb [ugen] [patch] polling a ugen(4) control endpoint caus f usb/82198 usb Panic on attaching of ONKI N-338 USB MP3 player f usb/82272 usb Can not recognize Casio camera EX-Z40 as a umass devic o usb/82350 usb [usb] null pointer dereference in USB stack o usb/82520 usb Reboot when USL101 connected o 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/87519 usb [kbd] cannot install on USB-only system o usb/87565 usb [PATCH] Support for Vodaphone 3G/UMTS cards 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/89218 usb flash disk o usb/89954 usb [usb] USB Disk driver race condition? f usb/89997 usb [umass] [panic] panic on iPod mini detach o usb/90162 usb [usb] [patch] Add support for the MS Wireless USB Mous o usb/90700 usb Kernel panic on connect/mount/use umass device o usb/91238 usb USB tape unit fails to write a second tape file to the o usb/91263 usb [patch] USB quirk needed for Logitec USB Hard disk LHD o usb/91283 usb booting very slow with usb devices connection (regress o usb/91538 usb Unable to print to EPSON CX3500 o usb/91906 usb FreeBSD hangs while booting with USB legacy support on o usb/92052 usb usbd causes defunct process with busy file-handle o 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 /dev/ulpt0: device busy USB printer does not work o usb/93408 usb hw.acpi.cpu.cx_lowest=C3 on AMD Turion causes choppy m f usb/93496 usb USB2.0 umass stalls on VIA 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/93949 usb ugen(4)-related repeatable kernel panic in 6.1-PRERELE o usb/94166 usb btx halted with a flashcard plugged o usb/94384 usb kernel panic with usb2 hardware o usb/94717 usb Reading from /dev/ulpt can break work of a UHCI hub o usb/94742 usb [umass] [patch] umass driver does not recognise YANO e o usb/94813 usb mounting write-protected umass device freezes computer o usb/94897 usb Kernel Panic when cleanly unmounting USB disk o usb/95131 usb Boot/setup process does not accept key strokes o usb/95348 usb USB keyboard unplug causes noise on screen o usb/95562 usb Write Stress in USB Mass drive cause: [vinvalbuf: dir o usb/95636 usb [boot] 5 minute delay at boot when using VT6205 based o usb/96120 usb USB mouse not always detected o usb/96224 usb [usb] mount_msdosfs cause page fault in syncer process o usb/96457 usb fatback on umass = reboot o usb/97286 usb MS Wireless Intellimouse Explorer 2.0 doesn't work o usb/99431 usb FreeBSD on MSI 6566E (Intel 845E motherboards) doesn't o usb/100992 usb Support for Epson 4990 USB scanners o usb/101096 usb USB WLAN occasionally causes kernel-panics during larg 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 96 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 f usb/41415 usb [usb] [patch] Some USB scanners cannot talk to uscanne o usb/48342 usb [PATCH] usbd dynamic device list. o kern/51958 usb [usb] [patch] update for urio driver o kern/52026 usb [usb] feature request: umass driver support for InSyst o usb/53025 usb [ugen] [patch] ugen does not allow O_NONBLOCK for inte o usb/56095 usb [usb] [patch] QUIRK: Apacer Pen Drive fails to work o kern/59698 usb [kbd] [patch] Rework of ukbd HID to AT code translatio f usb/60248 usb [patch] Problem with USB printer HP LaserJet 1300 o usb/61234 usb [usb] [patch] usbhidaction(1) doesn't support using an o usb/63837 usb [uhid] [patch] USB: hid_is_collection() only looks for o kern/65769 usb [usb] Call to tcflush(x, TCIFLUSH) stops input on usb- o kern/66547 usb [usb] Palm Tungsten T USB does not initialize correctl o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/68412 usb [usb] [patch] QUIRK: Philips KEY013 USB MP3 player o usb/70523 usb [usb] [patch] umct sending/receiving wrong characters o usb/70942 usb [usb] Genius Wireless USB mouse: moused doesn't work c o usb/71416 usb [usb] Cryptoflex e-gate USB token (ugen0) detach is no o usb/71417 usb [usb] Cryptoflex e-gate USB token (ugen0) communicatio o usb/71455 usb [usb] Slow USB umass performance of 5.3 o usb/71605 usb [umass] [patch] umass doesn't recognize multiple slots o usb/72380 usb [usb] USB does not work [dual Celeron Abit] o usb/72732 usb [patch] Kyocera 7135 quirk. o usb/72733 usb Kyocera 7135 Palm OS connection problem. o usb/73056 usb [usb] Sun Microsystems Type 6 USB mouse not working in f usb/73553 usb [usb] Microsoft USB Internet Keyboard not recongized 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 o 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 [usb] [patch] allowing cdma modems to work at full spe o usb/74849 usb [usb] [patch] Samsung SPH-i500 does not attach properl o usb/74880 usb [usb] [patch] Samsung N400 cellphone/acm fails to atac 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/78371 usb Philips Wearable Audio Player (128) fails to attach 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/80420 usb atapicam stops iPod functionality 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. o usb/81073 usb [umass] [patch] fix umass NO_GETMAXLUN quirk o usb/81191 usb Support for Curitel HX-550C USB modem to 5.4 RELEASE. f usb/81621 usb external hd hangs under load on ehci o usb/82436 usb [patch] USL101 Host-to-Host bridge support on FreeBSD o usb/83022 usb ALI USB 2.0 EHCI Controller is not detected o usb/83863 usb Communication problem between opensc/openct via USB wi o usb/85067 usb Cannot attach ScanJet 4300C to usb device o usb/85992 usb [uhid] [patch] USB stops working when trying to read f o usb/86195 usb [patch] allow USB Ethernet Adaptor "ELECOM LD-USB20" t 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 axe0 read PHY failed o usb/88939 usb Fix cheapy Myson USB-IDE adapter f usb/89087 usb usb external harddrive hangs with BBB reset failed, TI f usb/91191 usb HP LaserJet 1020 (USB printer) not recognized f usb/91516 usb [umass] umass0 problems, with Freecom Classic SL Hard 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 f usb/93011 usb HP ScanJet 6200C & uscanner problem o usb/93389 usb Digital Camera Pentax S60 don't work o usb/93484 usb [umass] [patch] QUIRK: Toshiba TransMemory USB Memorys o usb/93872 usb [patch] SCSI quirk required for ELTA 8061 OL USB memor o usb/94132 usb USB QUIRK for CENTURY EX35QUAT disk enclosure f usb/94147 usb doesn't recognise my USB keyboard o usb/94148 usb Make if_cdce work with ARM linux handhelds 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 chan o usb/95037 usb USB disk didnt recognized on hot-plug. o usb/95173 usb [usb] cannot mount external usb harddisk VIA Technolog o usb/95241 usb Patch to add USB ID for OEM Pharos 360 GPS p usb/95616 usb [patch] Add support for USB Acer 640BT scanner o usb/95803 usb Add support for AnyData ADU-E100H o usb/95805 usb Add Support for Siemens ES75 modem o usb/96381 usb [patch] add a quirk table entry for a flash ram usb st o usb/96546 usb [usb] [patch] Add support (quirk) for EasyMP3 EM732X U o usb/96599 usb [patch] [usb] Sony Handycam DCR-HC32E memory stick slo o usb/96714 usb Update uvisor to support the Fossil Abacus Wrist PDA o usb/96901 usb [patch] Add support for X-Micro Flash Disk o usb/97175 usb USB cardreader hangs system o usb/97472 usb [patch] add support for Olympus C150,D390 o usb/97512 usb add Motorola A41x/V32x USB phone support (patch enclos o usb/97948 usb [patch] CMOTECH CDMA USB modem support o usb/98343 usb BBB reset failed errors with Creative Muvo MP3 player; o usb/98385 usb [patch] add support for libretto DVD Dock device to um o usb/98713 usb QUIRK: Rekam USB Camera 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/99887 usb Archos Multimedia Jukebox doesn't work o usb/100746 usb [kbd] system does not boot due to USB keyboard problem o usb/100957 usb [usb] [patch] usbdevs entry and uscanner.c addition fo o usb/101043 usb [usbdevs] [patch] Add vendor "Sony Ericsson Mobile Com o usb/101066 usb Logitech iFeel MouseMan USB - UN53B 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/102260 usb [PATCH] Add Belkin FC6550-AVR UPS to the usb quirks li o usb/102286 usb support for Netgear FA101 ethernet USB NIC o usb/102296 usb [patch] support for Psion Gold Port Ethernet USB NIC o usb/102373 usb [patch] driver for MFT o usb/102547 usb usb patch for iRiver H10 mp3 player o usb/102851 usb Add support for Epson Stylus CX4200 o usb/102852 usb Add support for Novatech NV902 wireless NIC o usb/102976 usb Casio Exilim Digital Camera cause panic o usb/103046 usb [patch] ulpt event driven I/O with select(2) and nonbl o usb/103167 usb Transcend JetFlash120 memory stick problem (with fix) 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/103865 usb Add support for Familiar Linux powered iPaq handhelds 127 problems total. From owner-freebsd-usb@FreeBSD.ORG Mon Oct 2 20:50:28 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10F5316A415 for ; Mon, 2 Oct 2006 20:50:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FF8743D58 for ; Mon, 2 Oct 2006 20:50:19 +0000 (GMT) (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 k92KoJie057203 for ; Mon, 2 Oct 2006 20:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k92KoJ77057202; Mon, 2 Oct 2006 20:50:19 GMT (envelope-from gnats) Resent-Date: Mon, 2 Oct 2006 20:50:19 GMT Resent-Message-Id: <200610022050.k92KoJ77057202@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 Grillet Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4EA816A403 for ; Mon, 2 Oct 2006 20:42:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71C6243D76 for ; Mon, 2 Oct 2006 20:42:41 +0000 (GMT) (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 k92Kge9J047753 for ; Mon, 2 Oct 2006 20:42:41 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k92Kge5i047752; Mon, 2 Oct 2006 20:42:40 GMT (envelope-from nobody) Message-Id: <200610022042.k92Kge5i047752@www.freebsd.org> Date: Mon, 2 Oct 2006 20:42:40 GMT From: Andrew Grillet To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Cc: Subject: usb/103917: USB driver reports "Addr 0 should never happen" 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, 02 Oct 2006 20:50:28 -0000 >Number: 103917 >Category: usb >Synopsis: USB driver reports "Addr 0 should never happen" >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: Mon Oct 02 20:50:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Andrew Grillet >Release: Release 5.5 >Organization: Quickstart Technology Ltd >Environment: FreeBSD dayton.grillet.home 5.5-RELEASE-p8 FreeBSD 5.5-RELEASE-p8 #6: Sun Oct 1 00:19:53 BST 2006 root@dayton.grillet.home:/usr/src/sys/i386/compile/DAYTON i386 >Description: On inserting either of two thumb drives, or my SE k750i phone via a cable, I **sometimes** get the message. (Once I get it, it repeats with each insertion of any of the above named devices until reboot) uhub0: device problem (SET_ADDR_FAILED) disabling port 1 > usbdevs addr1: UHCI Root hub, VIA Addr0 should never happen addr1: UHCI Root hub, VIA addr1: UHCI Root hub, VIA It is a ECS P3VMM motherboard using onboard USB. Also note EHCI was not compiled in to this system build. >How-To-Repeat: Seems to repeat as per above description >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Tue Oct 3 01:20:23 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B861616A417 for ; Tue, 3 Oct 2006 01:20:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4905443D5C for ; Tue, 3 Oct 2006 01:20:23 +0000 (GMT) (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 k931KNWZ081258 for ; Tue, 3 Oct 2006 01:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k931KNSG081257; Tue, 3 Oct 2006 01:20:23 GMT (envelope-from gnats) Date: Tue, 3 Oct 2006 01:20:23 GMT Message-Id: <200610030120.k931KNSG081257@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: usb/103167: 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: Tue, 03 Oct 2006 01:20:23 -0000 The following reply was made to PR usb/103167; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: usb/103167: commit references a PR Date: Tue, 3 Oct 2006 01:13:43 +0000 (UTC) iedowse 2006-10-03 01:13:26 UTC FreeBSD src repository Modified files: sys/dev/usb ehci.c ohci.c usb_subr.c Log: When changing the device address and max packet size in usbd_new_device(), close and re-open the default pipe instead of relying on the host controller driver to notice the changes. Remove the unreliable code that attempted to update these fields while the pipe was active. This fixes a case where the hardware could cache and continue to use the old address, resulting in a "getting first desc failed" error. PR: usb/103167 Revision Changes Path 1.50 +0 -11 src/sys/dev/usb/ehci.c 1.165 +0 -10 src/sys/dev/usb/ohci.c 1.87 +18 -0 src/sys/dev/usb/usb_subr.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 Tue Oct 3 09:05:56 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08D5716A403 for ; Tue, 3 Oct 2006 09:05:56 +0000 (UTC) (envelope-from fulda@seznam.cz) Received: from smtp.seznam.cz (smtp.seznam.cz [212.80.76.43]) by mx1.FreeBSD.org (Postfix) with SMTP id E9BFE43D4C for ; Tue, 3 Oct 2006 09:05:54 +0000 (GMT) (envelope-from fulda@seznam.cz) Received: (qmail 2049 invoked from network); 3 Oct 2006 09:05:47 -0000 Received: from unknown (HELO PC2088) (fulda@seznam.cz@62.141.6.4) by cetus.go.seznam.cz with ESMTPA; 3 Oct 2006 09:05:47 -0000 X-Seznam-User: fulda@seznam.cz Message-ID: <049001c6e6cb$1c70c560$c4cd9109@PC2088> From: "Jindra Fucik" To: "Rene Ladan" , , References: <450DA217.9080602@gmail.com> Date: Tue, 3 Oct 2006 11:05:45 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2900.2962 Cc: Subject: Re: anyone working on setting output items with usbhidctl(1) ? 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, 03 Oct 2006 09:05:56 -0000 ----- Original Message ----- From: "Rene Ladan" To: ; Sent: Sunday, September 17, 2006 9:29 PM Subject: anyone working on setting output items with usbhidctl(1) ? > Hi, > > is anyone working on setting output items with usbhidctl(1) ? > > I'm trying to add LED/rumbler support for the Xbox 360 Gamepad to > uhid(4), but there doesn't seem to be a userland tool to test output > items and the output report descriptor doesn't seem to be publicly > available (i.e. I must reverse-engineer it). > > This device has 4 LEDs which can be controlled with the command 01 03 > xx, where xx ranges from 0 to 255. > It also has two rumble motors which can be controlled with 00 08 00 bb > ll 00 00 00, where bb and ll both range from 0 to 255. > > I thought that something like -s "feature1=value1,feature2=value2,..." > would be nice to have. Hi Rene, have you any progress? I do some tests on uhid & write and have no positive feedback. From owner-freebsd-usb@FreeBSD.ORG Tue Oct 3 09:36:00 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57B5316A415 for ; Tue, 3 Oct 2006 09:36:00 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1078243D5A for ; Tue, 3 Oct 2006 09:35:58 +0000 (GMT) (envelope-from r.c.ladan@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so136717nfc for ; Tue, 03 Oct 2006 02:35:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=TEA/x6A372ZGDw6KFlM+CPYDVT3CRpJtNhqVCDaY/Jeg3WBPkW6plXzk5O72ZUjx5Uh8zqcFw+wHgQ3eGykxmn7xqXkgOxYs3PS7l3xsvTqUNa4a7fQt1OKzYIrYJyC9Cro7KUtSa20d6vvrwcaD1r/oih2PP/OCcJAQHK4a6ow= Received: by 10.49.94.20 with SMTP id w20mr540761nfl; Tue, 03 Oct 2006 02:35:56 -0700 (PDT) Received: from ?131.155.68.222? ( [131.155.68.222]) by mx.gmail.com with ESMTP id p72sm655792nfc.2006.10.03.02.35.55; Tue, 03 Oct 2006 02:35:56 -0700 (PDT) Message-ID: <45222EF4.5000101@gmail.com> Date: Tue, 03 Oct 2006 11:35:48 +0200 From: Rene Ladan User-Agent: Thunderbird 1.5.0.7 (X11/20060914) MIME-Version: 1.0 To: Jindra Fucik References: <450DA217.9080602@gmail.com> <049001c6e6cb$1c70c560$c4cd9109@PC2088> In-Reply-To: <049001c6e6cb$1c70c560$c4cd9109@PC2088> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-hackers@freebsd.org, freebsd-usb@freebsd.org Subject: Re: anyone working on setting output items with usbhidctl(1) ? 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, 03 Oct 2006 09:36:00 -0000 Jindra Fucik schreef: >> Hi, >> >> is anyone working on setting output items with usbhidctl(1) ? >> >> I thought that something like -s "feature1=value1,feature2=value2,..." >> would be nice to have. > > Hi Rene, have you any progress? I do some tests on uhid & write and have > no positive feedback. > There is some progress. I've sent PR usb/103418 containing a patch to usbhidctl(1). You can test the patch if you have a hid with a known output descriptor: # usbhidctl -f /dev/uhid0 -w name=value should do the trick. When I test the patch with my Xbox 360 controller which contains a reverse-engineered output descriptor it crashes when calling hid_set_data() from libusbhid. I guess I'm not initializing the variable *buf correctly (it contains 0x800). Alternatively you can import usbhidctl(1) from OpenBSD/NetBSD (some trivial patches are needed, like s/hid_start()/hid_init() ) which has hopefully a working -w option. Regards, Rene -- GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) "It won't fit on the line." -- me, 2001 From owner-freebsd-usb@FreeBSD.ORG Tue Oct 3 12:33:47 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 433B816A40F for ; Tue, 3 Oct 2006 12:33:47 +0000 (UTC) (envelope-from chris@vindaloo.com) Received: from corellia.vindaloo.com (corellia.vindaloo.com [64.51.148.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3B5D43D49 for ; Tue, 3 Oct 2006 12:33:44 +0000 (GMT) (envelope-from chris@vindaloo.com) Received: from yavin.vindaloo.com (yavin.vindaloo.com [172.24.144.34]) by corellia.vindaloo.com (Postfix) with ESMTP id 72F205CC9 for ; Tue, 3 Oct 2006 08:48:02 -0400 (EDT) Received: from dagobah.vindaloo.com (dagobah.vindaloo.com [172.24.145.68]) by yavin.vindaloo.com (Postfix) with ESMTP id 34E912532B; Tue, 3 Oct 2006 08:33:43 -0400 (EDT) Received: from dagobah.vindaloo.com (localhost.vindaloo.com [127.0.0.1]) by dagobah.vindaloo.com (8.13.8/8.13.8) with ESMTP id k93CXLGA001389; Tue, 3 Oct 2006 08:33:21 -0400 (EDT) (envelope-from chris@dagobah.vindaloo.com) Received: (from chris@localhost) by dagobah.vindaloo.com (8.13.8/8.13.8/Submit) id k93CXKUx001388; Tue, 3 Oct 2006 08:33:20 -0400 (EDT) (envelope-from chris) Date: Tue, 3 Oct 2006 08:33:20 -0400 From: Christopher Sean Hilton To: freebsd-usb@freebsd.org Message-ID: <20061003123320.GA1265@dagobah.vindaloo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZGiS0Q5IWpPtfppv" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: USB Keyboard - Extra function or 'media' keys 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, 03 Oct 2006 12:33:47 -0000 --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Is there a way to get the extra function keys like Volume up, volume down, mute, etc on my usb keyboards working with FreeBSD? I own two Logitech wireless usb keyboards: a DiNovo Desktop and a S510 wireless and everything on them works except the extra function keys. -- Chris --=20 Chris Hilton chris-at-vindaloo-dot-com ------------------------------------------------------------------------ "All I was doing was trying to get home from work!" -- Rosa Parks --ZGiS0Q5IWpPtfppv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (FreeBSD) iQEVAwUBRSJYkILaxorQlXotAQKjeAgAjSCxiwYXGYTvNHIxhGgin6l/1L6+Dzrl 7jtMqC5Ou5JzGidkDqeAsgjYsrp5giDBjQUpiW13kc9cysN2LzpuyXA5S7lXz0SJ 0JDIt52udfDUZBaHW4RpUxMBXeblLUYAuwiafVl0aDJtqxwa0yS4dDVIhibQxLHT /7Gy+4laVGY1Y+CQG2IelLCIGaoYw+wtbmOMeOpjVcdWIVBdp4LPRmF4l0hb6CqG WLmRsT0NKyPiSrLFvqFG60GpzCVUTI0TMVnVcSAERDc3xqSvl7tpm9IB/phgWhdY UWVDk0wUH77WTslqhigC3/6Rzxx1NJ3FPdI6OVVtOqvoPLHDxmEvBg== =ySLM -----END PGP SIGNATURE----- --ZGiS0Q5IWpPtfppv-- From owner-freebsd-usb@FreeBSD.ORG Tue Oct 3 17:16:02 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4002216A403 for ; Tue, 3 Oct 2006 17:16:02 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25EE743D62 for ; Tue, 3 Oct 2006 17:15:55 +0000 (GMT) (envelope-from uspoerlein@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so267612nfc for ; Tue, 03 Oct 2006 10:15:55 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to; b=K520wWW7PfF9Xd8cQ2Vz2RexsRzfeFUGA0kpLDzqlLEkQet576FWKv6wUcgxgSLosuh1KOSg+M43Q5Keyu5/DvFrVjT4GHUZpYQzhlH3qVUoN5LB3pDnK56fsQnMiK5mSnE5BXkQnA/eyTGrq364NPB6nW34C+3UJcYYTeG6gwU= Received: by 10.49.36.6 with SMTP id o6mr1139593nfj; Tue, 03 Oct 2006 10:15:54 -0700 (PDT) Received: from roadrunner.q.local ( [85.180.170.45]) by mx.gmail.com with ESMTP id i1sm1486759nfe.2006.10.03.10.15.53; Tue, 03 Oct 2006 10:15:53 -0700 (PDT) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.8/8.13.6) with ESMTP id k93HFnNA001906; Tue, 3 Oct 2006 19:15:49 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Received: (from q@localhost) by roadrunner.q.local (8.13.8/8.13.6/Submit) id k93HFmpQ001905; Tue, 3 Oct 2006 19:15:48 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Date: Tue, 3 Oct 2006 19:15:48 +0200 From: Ulrich Spoerlein To: Hans Petter Selasky Message-ID: <20061003171548.GA1325@roadrunner.q.local> Mail-Followup-To: Hans Petter Selasky , freebsd-usb@freebsd.org References: <200609171214.49165.hselasky@c2i.net> <20060930152928.GB1441@roadrunner.q.local> <200610010944.04652.hselasky@c2i.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200610010944.04652.hselasky@c2i.net> Cc: freebsd-usb@freebsd.org Subject: Re: New UMASS driver available for testing 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, 03 Oct 2006 17:16:02 -0000 Hans Petter Selasky wrote: > On Saturday 30 September 2006 17:29, Ulrich Spoerlein wrote: > > As you can see, performance increased by roughly 10%, but system time > > increased about 300% :( > > > > I hope this info was useful to you and am looking forward to seeing your > > reworked USB system hit the tree soon! > > The extra time used is due to an inline wait loop in the code, to make things > simple. 505856+0 records in 505856+0 records out 258998272 bytes transferred in 1771.034516 secs (146241 bytes/sec) dd if=/dev/da0 of=/dev/zero bs=$i 0.20s user 3.10s system 0% cpu 29:31.05 total 63232+0 records in 63232+0 records out 258998272 bytes transferred in 775.213552 secs (334099 bytes/sec) dd if=/dev/da0 of=/dev/zero bs=$i 0.01s user 0.41s system 0% cpu 12:55.23 total 7904+0 records in 7904+0 records out 258998272 bytes transferred in 650.920062 secs (397896 bytes/sec) dd if=/dev/da0 of=/dev/zero bs=$i 0.00s user 0.07s system 0% cpu 10:50.93 total 988+0 records in 988+0 records out 258998272 bytes transferred in 641.615133 secs (403666 bytes/sec) dd if=/dev/da0 of=/dev/zero bs=$i 0.00s user 0.03s system 0% cpu 10:41.63 total 123+1 records in 123+1 records out 258998272 bytes transferred in 641.612930 secs (403667 bytes/sec) dd if=/dev/da0 of=/dev/zero bs=$i 0.00s user 0.04s system 0% cpu 10:41.63 total Looks good to me, CPU usage is back to the old USB stack, but performance is up roughly 10%. Nice. So, when is that stuff going to finally hit -CURRENT? Any schedule? Ulrich Spoerlein -- A: Yes. >Q: Are you sure? > >A: Because it reverses the logical flow of conversation. > >>Q: Why is top posting frowned upon? From owner-freebsd-usb@FreeBSD.ORG Tue Oct 3 17:16:25 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F6DD16A403 for ; Tue, 3 Oct 2006 17:16:25 +0000 (UTC) (envelope-from baldur@foo.is) Received: from gremlin.foo.is (gremlin.foo.is [194.105.250.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id A128A43D58 for ; Tue, 3 Oct 2006 17:16:23 +0000 (GMT) (envelope-from baldur@foo.is) Received: from 127.0.0.1 (localhost.foo.is [127.0.0.1]) by injector.foo.is (Postfix) with SMTP id 5EA0DDA875 for ; Tue, 3 Oct 2006 17:16:22 +0000 (GMT) Received: by gremlin.foo.is (Postfix, from userid 1000) id 80E4DDA89F; Tue, 3 Oct 2006 17:16:13 +0000 (GMT) Date: Tue, 3 Oct 2006 17:16:13 +0000 From: Baldur Gislason To: freebsd-usb@freebsd.org Message-ID: <20061003171613.GM804@gremlin.foo.is> User-Agent: Mutt/1.4.2.1i X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on gremlin.foo.is X-Spam-Level: X-Spam-Status: No, score=-5.9 required=6.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 X-Sanitizer: Foo MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Subject: USB keyboard in single user mode 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, 03 Oct 2006 17:16:25 -0000 Is it possible to use a USB keyboard when in single user mode? It is greatly annoying to have to go grab a PS/2 keyboard every time I need to boot the system into single user mode. Baldur From owner-freebsd-usb@FreeBSD.ORG Tue Oct 3 17:23:59 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F9A116A5EC for ; Tue, 3 Oct 2006 17:23:59 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BAC543D5A for ; Tue, 3 Oct 2006 17:23:49 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Tue, 03 Oct 2006 13:23:49 -0400 id 00056424.45229CA5.00017C94 Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 3 Oct 2006 13:20:56 -0400 Date: Tue, 3 Oct 2006 13:23:48 -0400 From: Bill Moran To: Baldur Gislason Message-Id: <20061003132348.efa4c032.wmoran@collaborativefusion.com> In-Reply-To: <20061003171613.GM804@gremlin.foo.is> References: <20061003171613.GM804@gremlin.foo.is> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-usb@freebsd.org Subject: Re: USB keyboard in single user mode 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, 03 Oct 2006 17:23:59 -0000 In response to Baldur Gislason : > Is it possible to use a USB keyboard when in single user mode? > It is greatly annoying to have to go grab a PS/2 keyboard every > time I need to boot the system into single user mode. 1) From Beastie menu, escape to loader prompt. 2) set hint.atkbd.0.flags="0x1" 3) boot -s -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-usb@FreeBSD.ORG Tue Oct 3 18:22:14 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8D5416A403 for ; Tue, 3 Oct 2006 18:22:14 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7825E43D73 for ; Tue, 3 Oct 2006 18:22:03 +0000 (GMT) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0J6K008HEOCOW900@osl1smout1.broadpark.no> for freebsd-usb@freebsd.org; Tue, 03 Oct 2006 20:22:00 +0200 (CEST) Received: from kg-work.kg4.no ([80.203.21.224]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0J6K00LEZOCO2D03@osl1sminn1.broadpark.no> for freebsd-usb@freebsd.org; Tue, 03 Oct 2006 20:22:00 +0200 (CEST) Date: Tue, 03 Oct 2006 20:22:00 +0200 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061003123320.GA1265@dagobah.vindaloo.com> To: freebsd-usb@freebsd.org Message-id: <20061003202200.7b49cf89.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.9 (GTK+ 2.8.20; i386-portbld-freebsd5.5) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061003123320.GA1265@dagobah.vindaloo.com> Subject: Re: USB Keyboard - Extra function or 'media' keys 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, 03 Oct 2006 18:22:14 -0000 On Tue, 03 Oct 2006 08:33:20 -0400 Christopher Sean Hilton wrote: > Is there a way to get the extra function keys like Volume up, volume > down, mute, etc on my usb keyboards working with FreeBSD? I own two > Logitech wireless usb keyboards: a DiNovo Desktop and a S510 wireless > and everything on them works except the extra function keys. I use /usr/ports/misc/hotkeys Note: my keyboard is usb, but not wireless. YMMV. I used xev to find the codes, and wrote my own configuration file. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-usb@FreeBSD.ORG Wed Oct 4 04:40:04 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD7EB16A51C; Wed, 4 Oct 2006 04:40:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5364743D55; Wed, 4 Oct 2006 04:40:03 +0000 (GMT) (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 k944e3CA040924; Wed, 4 Oct 2006 04:40:03 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k944e2Jm040920; Wed, 4 Oct 2006 04:40:02 GMT (envelope-from linimon) Date: Wed, 4 Oct 2006 04:40:02 GMT From: Mark Linimon Message-Id: <200610040440.k944e2Jm040920@freefall.freebsd.org> To: internetworking@mail.ru, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/103866: Re: usb/103865: Add support for Familiar Linux powered iPaq handhelds to if_cdce 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, 04 Oct 2006 04:40:04 -0000 Old Synopsis: =?koi8-r?Q?Re=3A_usb/103865=3A_Add_support_for_Familiar_Linux_powered_iPaq_handhelds_to_if=5Fcdce?= New Synopsis: Re: usb/103865: Add support for Familiar Linux powered iPaq handhelds to if_cdce State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Oct 4 04:37:56 UTC 2006 State-Changed-Why: Misfiled followup to usb/103865; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Wed Oct 4 04:37:56 UTC 2006 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=103866 From owner-freebsd-usb@FreeBSD.ORG Thu Oct 5 17:57:26 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B2BB16A4F0 for ; Thu, 5 Oct 2006 17:57:26 +0000 (UTC) (envelope-from uspoerlein@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46B2943D6B for ; Thu, 5 Oct 2006 17:56:56 +0000 (GMT) (envelope-from uspoerlein@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so221106uge for ; Thu, 05 Oct 2006 10:56:55 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to; b=AIkHU67+NKeUTgIGZlXCKjaRAFmIi+EYxKCYBK49YcnbC14rNPbmz+FHit/5F7MkiXqrTw/skzkOgSc7M+mYtsNJuryIknZukSntr4nnrJRUtsNl+Q44mrfqkmW0b5AGqkvjng6SpxOJmoM046rAidR3X21tnnbuMXoOUZHMBxY= Received: by 10.67.100.17 with SMTP id c17mr2248453ugm; Thu, 05 Oct 2006 10:56:55 -0700 (PDT) Received: from roadrunner.q.local ( [85.180.129.129]) by mx.google.com with ESMTP id e33sm1160249ugd.2006.10.05.10.56.54; Thu, 05 Oct 2006 10:56:54 -0700 (PDT) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.8/8.13.6) with ESMTP id k95Huo1D001970; Thu, 5 Oct 2006 19:56:50 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Received: (from q@localhost) by roadrunner.q.local (8.13.8/8.13.6/Submit) id k95Huo3n001969; Thu, 5 Oct 2006 19:56:50 +0200 (CEST) (envelope-from uspoerlein@gmail.com) Date: Thu, 5 Oct 2006 19:56:50 +0200 From: Ulrich Spoerlein To: Hans Petter Selasky , freebsd-usb@freebsd.org Message-ID: <20061005175650.GA1342@roadrunner.q.local> Mail-Followup-To: Hans Petter Selasky , freebsd-usb@freebsd.org References: <200609171214.49165.hselasky@c2i.net> <20060930152928.GB1441@roadrunner.q.local> <200610010944.04652.hselasky@c2i.net> <20061003171548.GA1325@roadrunner.q.local> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061003171548.GA1325@roadrunner.q.local> Cc: Subject: Re: New UMASS driver available for testing 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, 05 Oct 2006 17:57:26 -0000 Ulrich Spoerlein wrote: > 258998272 bytes transferred in 1771.034516 secs (146241 bytes/sec) > dd if=/dev/da0 of=/dev/zero bs=$i 0.20s user 3.10s system 0% cpu 29:31.05 total > 258998272 bytes transferred in 775.213552 secs (334099 bytes/sec) > dd if=/dev/da0 of=/dev/zero bs=$i 0.01s user 0.41s system 0% cpu 12:55.23 total > 258998272 bytes transferred in 650.920062 secs (397896 bytes/sec) > dd if=/dev/da0 of=/dev/zero bs=$i 0.00s user 0.07s system 0% cpu 10:50.93 total > 258998272 bytes transferred in 641.615133 secs (403666 bytes/sec) > dd if=/dev/da0 of=/dev/zero bs=$i 0.00s user 0.03s system 0% cpu 10:41.63 total > 258998272 bytes transferred in 641.612930 secs (403667 bytes/sec) > dd if=/dev/da0 of=/dev/zero bs=$i 0.00s user 0.04s system 0% cpu 10:41.63 total I tested the same USB stick on a Gentoo/Linux machine, though it is roughly twice as fast as my own machine: Linux DVPC03 2.6.17-gentoo-r4 #1 SMP PREEMPT Mon Aug 14 17:19:40 CEST 2006 i686 Intel(R) Celeron(R) CPU 3.06GHz GNU/Linux Oct 5 11:19:45 localhost usb 4-2: new full speed USB device using ohci_hcd and address 2 Oct 5 11:19:45 localhost usb 4-2: configuration #1 chosen from 1 choice Oct 5 11:19:45 localhost scsi4 : SCSI emulation for USB Mass Storage devices Oct 5 11:19:45 localhost usb-storage: device found at 2 Oct 5 11:19:45 localhost usb-storage: waiting for device to settle before scanning Oct 5 11:19:50 localhost Vendor: Model: MP3 Flash Stick Rev: 1.00 Oct 5 11:19:50 localhost Type: Direct-Access ANSI SCSI revision: 00 Oct 5 11:19:50 localhost SCSI device sda: 505856 512-byte hdwr sectors (259 MB) Oct 5 11:19:50 localhost sda: Write Protect is off Oct 5 11:19:50 localhost sda: Mode Sense: 20 00 00 00 Oct 5 11:19:50 localhost sda: assuming drive cache: write through Oct 5 11:19:50 localhost SCSI device sda: 505856 512-byte hdwr sectors (259 MB) Oct 5 11:19:50 localhost sda: Write Protect is off Oct 5 11:19:50 localhost sda: Mode Sense: 20 00 00 00 Oct 5 11:19:50 localhost sda: assuming drive cache: write through Oct 5 11:19:50 localhost sda: Oct 5 11:19:50 localhost sd 4:0:0:0: Attached scsi removable disk sda Oct 5 11:19:50 localhost usb-storage: device scan complete Oct 5 11:19:50 localhost scsi.agent[2225]: disk at /devices/pci0000:00/0000:00:03.2/usb4/4-2/4-2:1.0/host4/target4:0:0/4:0:0:0 for i in 512 2k 32k 256k 2048k; do time dd if=/dev/sda of=/dev/null bs=$i;done 258998272 bytes (259 MB) copied, 648.34 seconds, 399 kB/s dd if=/dev/sda of=/dev/null bs=$i 0.14s user 0.84s system 0% cpu 10:48.35 total 258998272 bytes (259 MB) copied, 648.347 seconds, 399 kB/s dd if=/dev/sda of=/dev/null bs=$i 0.04s user 0.65s system 0% cpu 10:48.35 total 258998272 bytes (259 MB) copied, 648.452 seconds, 399 kB/s dd if=/dev/sda of=/dev/null bs=$i 0.02s user 0.65s system 0% cpu 10:48.46 total 258998272 bytes (259 MB) copied, 647.917 seconds, 400 kB/s dd if=/dev/sda of=/dev/null bs=$i 0.00s user 0.74s system 0% cpu 10:47.92 total 258998272 bytes (259 MB) copied, 648.605 seconds, 399 kB/s dd if=/dev/sda of=/dev/null bs=$i 0.00s user 0.78s system 0% cpu 10:48.75 total So, the 400kB/s limit is entirely due to the crappy hardware. I wonder though, why is Linux able to achieve 400kB/s with 512 bytes reads? Is it cheating here? Ulrich Spoerlein -- A: Yes. >Q: Are you sure? > >A: Because it reverses the logical flow of conversation. > >>Q: Why is top posting frowned upon? From owner-freebsd-usb@FreeBSD.ORG Fri Oct 6 17:53:01 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA2AA16A407 for ; Fri, 6 Oct 2006 17:53:01 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3623E43D55 for ; Fri, 6 Oct 2006 17:53:01 +0000 (GMT) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0J6Q00GY270C2960@osl1smout1.broadpark.no> for freebsd-usb@freebsd.org; Fri, 06 Oct 2006 19:53:00 +0200 (CEST) Received: from kg-work.kg4.no ([80.203.21.224]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0J6Q00HO870BLR80@osl1sminn1.broadpark.no> for freebsd-usb@freebsd.org; Fri, 06 Oct 2006 19:53:00 +0200 (CEST) Date: Fri, 06 Oct 2006 19:52:59 +0200 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <1159900606.2935.2.camel@dagobah.vindaloo.com> To: freebsd-usb@freebsd.org Message-id: <20061006195259.fed54ec8.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.9 (GTK+ 2.8.20; i386-portbld-freebsd5.5) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061003123320.GA1265@dagobah.vindaloo.com> <20061003202200.7b49cf89.torfinn.ingolfsen@broadpark.no> <1159900606.2935.2.camel@dagobah.vindaloo.com> Subject: Re: USB Keyboard - Extra function or 'media' keys 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, 06 Oct 2006 17:53:01 -0000 On Tue, 03 Oct 2006 14:36:46 -0400 Christopher Sean Hilton wrote: > I cannot get the keys to show up in xev. Strange. I'm sorry, but then I'm all out of suggestions. FYI, I also have a wireless Logitech keyboard (usb), the "Cordless Desktop EX110", but when I connect the usb receiver of that to a machine which already have a keyboard (PS/2 in this case) input from both keyboards stop (ie. nothing happens when I press keys on either keyboard) and I have to unplug the usb receiver to regain control of my existing keyboard. This makes it a bit difficult for me to test if I can get zev to recognize multimedia keys on that keyboard. :-) -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 11:17:55 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D532A16A580; Sat, 7 Oct 2006 11:17:55 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4356C43D46; Sat, 7 Oct 2006 11:17:53 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97BHrvI044380; Sat, 7 Oct 2006 11:17:53 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97BHrTX044376; Sat, 7 Oct 2006 11:17:53 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 11:17:53 GMT From: Florent Thoumie Message-Id: <200610071117.k97BHrTX044376@freefall.freebsd.org> To: oliver@freebsd.org, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/93484: [umass] [patch] QUIRK: Toshiba TransMemory USB Memorystick 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, 07 Oct 2006 11:17:55 -0000 Synopsis: [umass] [patch] QUIRK: Toshiba TransMemory USB Memorystick State-Changed-From-To: open->feedback State-Changed-By: flz State-Changed-When: Sat Oct 7 11:16:30 UTC 2006 State-Changed-Why: What do you need the IGNORE_RESIDUE for? Does it work without the umass quirk? Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 11:16:30 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=93484 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 11:28:34 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F37A16A412; Sat, 7 Oct 2006 11:28:34 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 397B243D45; Sat, 7 Oct 2006 11:28:34 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97BSYSW045600; Sat, 7 Oct 2006 11:28:34 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97BSX2S045596; Sat, 7 Oct 2006 11:28:33 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 11:28:33 GMT From: Florent Thoumie Message-Id: <200610071128.k97BSX2S045596@freefall.freebsd.org> To: vkushnir@i.kiev.ua, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, iedowse@FreeBSD.org Cc: Subject: Re: usb/103167: Transcend JetFlash120 memory stick problem (with fix) 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, 07 Oct 2006 11:28:34 -0000 Synopsis: Transcend JetFlash120 memory stick problem (with fix) State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 11:27:42 UTC 2006 State-Changed-Why: Ian committed a fix for this a few days ago. Over to him for MFC. Responsible-Changed-From-To: freebsd-usb->iedowse Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 11:27:42 UTC 2006 Responsible-Changed-Why: Ian committed a fix for this a few days ago. Over to him for MFC. http://www.freebsd.org/cgi/query-pr.cgi?pr=103167 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 11:40:22 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1171416A47C; Sat, 7 Oct 2006 11:40:18 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F6AE43D55; Sat, 7 Oct 2006 11:40:18 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97BeHse047839; Sat, 7 Oct 2006 11:40:17 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97BeHFB047835; Sat, 7 Oct 2006 11:40:17 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 11:40:17 GMT From: Florent Thoumie Message-Id: <200610071140.k97BeHFB047835@freefall.freebsd.org> To: c47g@gmx.at, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/101043: [usbdevs] [patch] Add vendor "Sony Ericsson Mobile Comm. AB" to 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, 07 Oct 2006 11:40:22 -0000 Synopsis: [usbdevs] [patch] Add vendor "Sony Ericsson Mobile Comm. AB" to usbdevs State-Changed-From-To: open->feedback State-Changed-By: flz State-Changed-When: Sat Oct 7 11:38:55 UTC 2006 State-Changed-Why: What do you need the usbdevs entry for? I don't see any reason to add one unless you need it for a quirk or if you need to add it to a specific driver product id list. Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 11:38:55 UTC 2006 Responsible-Changed-Why: What do you need the usbdevs entry for? I don't see any reason to add one unless you need it for a quirk or if you need to add it to a specific driver product id list. http://www.freebsd.org/cgi/query-pr.cgi?pr=101043 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 11:44:21 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F5BA16A412; Sat, 7 Oct 2006 11:44:21 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E50C343D49; Sat, 7 Oct 2006 11:44:20 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97BiK5j048294; Sat, 7 Oct 2006 11:44:20 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97BiKEH048290; Sat, 7 Oct 2006 11:44:20 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 11:44:20 GMT From: Florent Thoumie Message-Id: <200610071144.k97BiKEH048290@freefall.freebsd.org> To: carn0048@umn.edu, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/99887: Archos Multimedia Jukebox doesn't work X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Oct 2006 11:44:21 -0000 Synopsis: Archos Multimedia Jukebox doesn't work State-Changed-From-To: open->feedback State-Changed-By: flz State-Changed-When: Sat Oct 7 11:42:47 UTC 2006 State-Changed-Why: I'm willing to add the quirk but I need more information about your device. Please have a look at http://www.root.org/~nate/freebsd/scsi/quirks.html and send the appropriate information (and a patch if you can). Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 11:42:47 UTC 2006 Responsible-Changed-Why: I'm willing to add the quirk but I need more information about your device. Please have a look at http://www.root.org/~nate/freebsd/scsi/quirks.html and send the appropriate information (and a patch if you can). http://www.freebsd.org/cgi/query-pr.cgi?pr=99887 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 11:47:54 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEEDE16A412; Sat, 7 Oct 2006 11:47:54 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59E8143D66; Sat, 7 Oct 2006 11:47:54 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97BlsJk048432; Sat, 7 Oct 2006 11:47:54 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97Blr5X048427; Sat, 7 Oct 2006 11:47:53 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 11:47:53 GMT From: Florent Thoumie Message-Id: <200610071147.k97Blr5X048427@freefall.freebsd.org> To: mitz@mitz.jp, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/98385: [patch] add support for libretto DVD Dock device to umass.c 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, 07 Oct 2006 11:47:55 -0000 Synopsis: [patch] add support for libretto DVD Dock device to umass.c State-Changed-From-To: open->feedback State-Changed-By: flz State-Changed-When: Sat Oct 7 11:47:07 UTC 2006 State-Changed-Why: Please have a look at http://www.root.org/~nate/freebsd/scsi/quirks.html and submit the appropriate information. Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 11:47:07 UTC 2006 Responsible-Changed-Why: Please have a look at http://www.root.org/~nate/freebsd/scsi/quirks.html and submit the appropriate information. http://www.freebsd.org/cgi/query-pr.cgi?pr=98385 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 16:03:34 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A865716A417; Sat, 7 Oct 2006 16:03:34 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C453543D81; Sat, 7 Oct 2006 16:03:29 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97G3TFx076065; Sat, 7 Oct 2006 16:03:29 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97G3TOi076061; Sat, 7 Oct 2006 16:03:29 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 16:03:29 GMT From: Florent Thoumie Message-Id: <200610071603.k97G3TOi076061@freefall.freebsd.org> To: walter@pelissero.de, flz@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/100992: Support for Epson 4990 USB scanners 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, 07 Oct 2006 16:03:34 -0000 Synopsis: Support for Epson 4990 USB scanners State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 16:03:11 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=100992 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 16:04:00 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1954716A40F; Sat, 7 Oct 2006 16:04:00 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B66043D7C; Sat, 7 Oct 2006 16:03:52 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97G3qot076136; Sat, 7 Oct 2006 16:03:52 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97G3o3a076131; Sat, 7 Oct 2006 16:03:50 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 16:03:50 GMT From: Florent Thoumie Message-Id: <200610071603.k97G3o3a076131@freefall.freebsd.org> To: terescoj@teresco.org, flz@FreeBSD.org, freebsd-usb@FreeBSD.org Cc: Subject: Re: usb/100957: [usb] [patch] usbdevs entry and uscanner.c addition for Epson Perfection 3590 Scanner 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, 07 Oct 2006 16:04:00 -0000 Synopsis: [usb] [patch] usbdevs entry and uscanner.c addition for Epson Perfection 3590 Scanner State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 16:03:37 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=100957 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 16:04:15 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E5A516A417; Sat, 7 Oct 2006 16:04:15 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8389943D7C; Sat, 7 Oct 2006 16:04:10 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97G4AOh076226; Sat, 7 Oct 2006 16:04:10 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97G4AIP076222; Sat, 7 Oct 2006 16:04:10 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 16:04:10 GMT From: Florent Thoumie Message-Id: <200610071604.k97G4AIP076222@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/100957: [usb] [patch] usbdevs entry and uscanner.c addition for Epson Perfection 3590 Scanner 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, 07 Oct 2006 16:04:15 -0000 Synopsis: [usb] [patch] usbdevs entry and uscanner.c addition for Epson Perfection 3590 Scanner Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 16:04:09 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=100957 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 16:04:28 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4395916A47E; Sat, 7 Oct 2006 16:04:28 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20D2843D82; Sat, 7 Oct 2006 16:04:23 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97G4N0q076316; Sat, 7 Oct 2006 16:04:23 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97G4MmV076312; Sat, 7 Oct 2006 16:04:22 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 16:04:22 GMT From: Florent Thoumie Message-Id: <200610071604.k97G4MmV076312@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/100992: Support for Epson 4990 USB scanners 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, 07 Oct 2006 16:04:28 -0000 Synopsis: Support for Epson 4990 USB scanners Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 16:04:22 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=100992 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 16:05:17 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B313016A4B3; Sat, 7 Oct 2006 16:05:17 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 679B743D72; Sat, 7 Oct 2006 16:05:14 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97G5Enq076440; Sat, 7 Oct 2006 16:05:14 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97G5D5r076426; Sat, 7 Oct 2006 16:05:14 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 16:05:14 GMT From: Florent Thoumie Message-Id: <200610071605.k97G5D5r076426@freefall.freebsd.org> To: flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/95616: [patch] Add support for USB Acer 640BT scanner 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, 07 Oct 2006 16:05:17 -0000 Synopsis: [patch] Add support for USB Acer 640BT scanner Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 16:05:11 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=95616 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 17:17:58 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7914E16A415; Sat, 7 Oct 2006 17:17:58 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE4FA43D45; Sat, 7 Oct 2006 17:17:53 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97HHr5T083997; Sat, 7 Oct 2006 17:17:53 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97HHqFB083993; Sat, 7 Oct 2006 17:17:52 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 17:17:52 GMT From: Florent Thoumie Message-Id: <200610071717.k97HHqFB083993@freefall.freebsd.org> To: zuxez@uni.de, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/101066: Logitech iFeel MouseMan USB - UN53B 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, 07 Oct 2006 17:17:58 -0000 Synopsis: Logitech iFeel MouseMan USB - UN53B State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 17:17:34 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 17:17:34 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=101066 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 17:36:40 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55C3416A403; Sat, 7 Oct 2006 17:36:40 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4240F43DBF; Sat, 7 Oct 2006 17:36:14 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97HaDdj086787; Sat, 7 Oct 2006 17:36:13 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97HaDl9086783; Sat, 7 Oct 2006 17:36:13 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 17:36:13 GMT From: Florent Thoumie Message-Id: <200610071736.k97HaDl9086783@freefall.freebsd.org> To: internetworking@mail.ru, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/103865: Add support for Familiar Linux powered iPaq handhelds to if_cdce 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, 07 Oct 2006 17:36:40 -0000 Synopsis: Add support for Familiar Linux powered iPaq handhelds to if_cdce State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 17:35:52 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 17:35:52 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=103865 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 17:48:30 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5614616A40F; Sat, 7 Oct 2006 17:48:30 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DF2243D5A; Sat, 7 Oct 2006 17:48:30 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97HmTgs087602; Sat, 7 Oct 2006 17:48:29 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97HmTUR087598; Sat, 7 Oct 2006 17:48:29 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 17:48:29 GMT From: Florent Thoumie Message-Id: <200610071748.k97HmTUR087598@freefall.freebsd.org> To: grocho98@students.rowan.edu, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/102260: [PATCH] Add Belkin FC6550-AVR UPS to the usb quirks list. 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, 07 Oct 2006 17:48:30 -0000 Synopsis: [PATCH] Add Belkin FC6550-AVR UPS to the usb quirks list. State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 17:48:14 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 17:48:14 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=102260 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 18:00:01 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1733B16A415; Sat, 7 Oct 2006 18:00:01 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7022843D4C; Sat, 7 Oct 2006 18:00:00 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97I00p2088302; Sat, 7 Oct 2006 18:00:00 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97I002d088298; Sat, 7 Oct 2006 18:00:00 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 18:00:00 GMT From: Florent Thoumie Message-Id: <200610071800.k97I002d088298@freefall.freebsd.org> To: volker@vwsoft.com, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/102286: support for Netgear FA101 ethernet USB NIC 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, 07 Oct 2006 18:00:01 -0000 Synopsis: support for Netgear FA101 ethernet USB NIC State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 17:59:13 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 17:59:13 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=102286 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 18:09:42 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2890116A412; Sat, 7 Oct 2006 18:09:42 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5378F43D6E; Sat, 7 Oct 2006 18:09:38 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97I9chO089314; Sat, 7 Oct 2006 18:09:38 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97I9cVb089310; Sat, 7 Oct 2006 18:09:38 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 18:09:38 GMT From: Florent Thoumie Message-Id: <200610071809.k97I9cVb089310@freefall.freebsd.org> To: volker@vwsoft.com, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/102296: [patch] support for Psion Gold Port Ethernet USB NIC 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, 07 Oct 2006 18:09:42 -0000 Synopsis: [patch] support for Psion Gold Port Ethernet USB NIC State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 18:03:54 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 18:03:54 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=102296 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 18:10:16 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CCBF16A415; Sat, 7 Oct 2006 18:10:16 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05C3A43D45; Sat, 7 Oct 2006 18:10:16 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97IAAV7089424; Sat, 7 Oct 2006 18:10:15 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97IAAru089420; Sat, 7 Oct 2006 18:10:10 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 18:10:10 GMT From: Florent Thoumie Message-Id: <200610071810.k97IAAru089420@freefall.freebsd.org> To: jonathan@fosburgh.org, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/102851: Add support for Epson Stylus CX4200 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, 07 Oct 2006 18:10:16 -0000 Synopsis: Add support for Epson Stylus CX4200 State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 18:09:52 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 18:09:52 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=102851 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 18:29:32 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FCF216A4CA; Sat, 7 Oct 2006 18:29:32 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08C8D43D45; Sat, 7 Oct 2006 18:29:32 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97ITVxn090992; Sat, 7 Oct 2006 18:29:31 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97ITVd6090988; Sat, 7 Oct 2006 18:29:31 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 18:29:31 GMT From: Florent Thoumie Message-Id: <200610071829.k97ITVd6090988@freefall.freebsd.org> To: jonathan@fosburgh.org, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/102852: Add support for Novatech NV902 wireless NIC 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, 07 Oct 2006 18:29:32 -0000 Synopsis: Add support for Novatech NV902 wireless NIC State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 18:18:51 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 18:18:51 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=102852 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 18:30:01 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1034816A416; Sat, 7 Oct 2006 18:30:01 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3419F43D5F; Sat, 7 Oct 2006 18:30:00 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97IU07X091122; Sat, 7 Oct 2006 18:30:00 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97ITxKb091118; Sat, 7 Oct 2006 18:29:59 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 18:29:59 GMT From: Florent Thoumie Message-Id: <200610071829.k97ITxKb091118@freefall.freebsd.org> To: freebsd-pr@xbsd.net, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/102547: usb patch for iRiver H10 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, 07 Oct 2006 18:30:01 -0000 Synopsis: usb patch for iRiver H10 mp3 player State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 18:29:43 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 18:29:43 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=102547 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 18:33:02 2006 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 357EB16A66E for ; Sat, 7 Oct 2006 18:33:02 +0000 (UTC) (envelope-from root@host169.ipowerweb.com) Received: from host169.ipowerweb.com (host169.ipowerweb.com [66.235.199.101]) by mx1.FreeBSD.org (Postfix) with SMTP id EF6D143D45 for ; Sat, 7 Oct 2006 18:33:01 +0000 (GMT) (envelope-from root@host169.ipowerweb.com) Received: (qmail 62735 invoked by uid 10061); 7 Oct 2006 18:31:38 -0000 Received: from 127.0.0.1 by host169.ipowerweb.com (envelope-from , uid 80) with qmail-scanner-1.25st (clamdscan: 0.88/1245. spamassassin: 3.1.0. perlscan: 1.25st. Clear:RC:1(127.0.0.1):SA:0(2.1/5.0):. Processed in 1.211622 secs); 07 Oct 2006 18:31:38 -0000 X-Spam-Status: No, hits=2.1 required=5.0 X-Spam-Level: ++ Date: 7 Oct 2006 18:31:37 -0000 Message-ID: <20061007183137.62712.qmail@host169.ipowerweb.com> To: freebsd-usb@freebsd.org From: George W bush MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Subject: http://www.freewebtown.com/bustar00t/Musliman%20Vs%20Christian.exe 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, 07 Oct 2006 18:33:02 -0000 Hey look at that funny video.You will have damn fun.hahahaha.Musliman Kicking christians ass. http://www.freewebtown.com/bustar00t/Musliman%20Vs%20Christian.exe From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 18:35:09 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D21516A407; Sat, 7 Oct 2006 18:35:09 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBB9143D55; Sat, 7 Oct 2006 18:35:08 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97IZ8sX093733; Sat, 7 Oct 2006 18:35:08 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97IZ8PR093729; Sat, 7 Oct 2006 18:35:08 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 18:35:08 GMT From: Florent Thoumie Message-Id: <200610071835.k97IZ8PR093729@freefall.freebsd.org> To: marc.fajardo@free.fr, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/102373: [patch] driver for MFT 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, 07 Oct 2006 18:35:09 -0000 Synopsis: [patch] driver for MFT State-Changed-From-To: open->feedback State-Changed-By: flz State-Changed-When: Sat Oct 7 18:32:54 UTC 2006 State-Changed-Why: EN: Does the patch actually works for you? Your mail is quite confusing. FR: Est ce que le patch fonctionne? Votre mail n'est pas tres clair. Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 18:32:54 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=102373 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 19:10:48 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E406F16A47B; Sat, 7 Oct 2006 19:10:48 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E379243D6D; Sat, 7 Oct 2006 19:10:46 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97JAkSl097372; Sat, 7 Oct 2006 19:10:46 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97JAkcb097364; Sat, 7 Oct 2006 19:10:46 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 19:10:46 GMT From: Florent Thoumie Message-Id: <200610071910.k97JAkcb097364@freefall.freebsd.org> To: goo@t72.ru, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/98713: QUIRK: Rekam USB Camera 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, 07 Oct 2006 19:10:49 -0000 Synopsis: QUIRK: Rekam USB Camera State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 19:04:46 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 19:04:46 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=98713 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 19:31:19 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B6F116A561; Sat, 7 Oct 2006 19:31:19 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42AA543DA5; Sat, 7 Oct 2006 19:29:07 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97JSaBD098682; Sat, 7 Oct 2006 19:28:36 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97JSa6i098678; Sat, 7 Oct 2006 19:28:36 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 19:28:36 GMT From: Florent Thoumie Message-Id: <200610071928.k97JSa6i098678@freefall.freebsd.org> To: markd@kermodei.com, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/97512: add Motorola A41x/V32x USB phone support (patch enclosed) 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, 07 Oct 2006 19:31:19 -0000 Synopsis: add Motorola A41x/V32x USB phone support (patch enclosed) State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 19:28:06 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 19:28:06 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=97512 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 19:43:42 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA4D116A407; Sat, 7 Oct 2006 19:43:42 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4B9D43D67; Sat, 7 Oct 2006 19:43:33 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97JhXKx001877; Sat, 7 Oct 2006 19:43:33 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97JhXBW001873; Sat, 7 Oct 2006 19:43:33 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 19:43:33 GMT From: Florent Thoumie Message-Id: <200610071943.k97JhXBW001873@freefall.freebsd.org> To: kot@kotzone.ru, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/97948: [patch] CMOTECH CDMA USB modem support 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, 07 Oct 2006 19:43:42 -0000 Synopsis: [patch] CMOTECH CDMA USB modem support State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 19:42:56 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 19:42:56 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=97948 From owner-freebsd-usb@FreeBSD.ORG Sat Oct 7 20:09:15 2006 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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F63A16A40F; Sat, 7 Oct 2006 20:09:15 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED65943D5C; Sat, 7 Oct 2006 20:09:14 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k97K9EU1003576; Sat, 7 Oct 2006 20:09:14 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k97K9E7Q003572; Sat, 7 Oct 2006 20:09:14 GMT (envelope-from flz) Date: Sat, 7 Oct 2006 20:09:14 GMT From: Florent Thoumie Message-Id: <200610072009.k97K9E7Q003572@freefall.freebsd.org> To: jflemer@alum.rpi.edu, flz@FreeBSD.org, freebsd-usb@FreeBSD.org, flz@FreeBSD.org Cc: Subject: Re: usb/81073: [umass] [patch] fix umass NO_GETMAXLUN quirk X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Oct 2006 20:09:15 -0000 Synopsis: [umass] [patch] fix umass NO_GETMAXLUN quirk State-Changed-From-To: open->patched State-Changed-By: flz State-Changed-When: Sat Oct 7 20:08:57 UTC 2006 State-Changed-Why: Committed to HEAD, MFC after 3 days. Thanks! Responsible-Changed-From-To: freebsd-usb->flz Responsible-Changed-By: flz Responsible-Changed-When: Sat Oct 7 20:08:57 UTC 2006 Responsible-Changed-Why: Grab. http://www.freebsd.org/cgi/query-pr.cgi?pr=81073