Re: usb/156726: [snd_uaudio]: snd_uaudio(4) fails to detach when mixer is open

2012-08-16 Thread gavin
Synopsis: [snd_uaudio]: snd_uaudio(4) fails to detach when mixer is open

Responsible-Changed-From-To: freebsd-multimedia-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Thu Aug 16 12:53:15 UTC 2012
Responsible-Changed-Why: 
This sounds potentially like a USB stack issue to me.

http://www.freebsd.org/cgi/query-pr.cgi?pr=156726
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/157074: [boot] [usb8] vfs_mountroot_ask is called when no usb keyboard is initialized

2011-10-19 Thread gavin
Old Synopsis: [boot] vfs_mountroot_ask is called when no usb keyboard is 
initialized
New Synopsis: [boot] [usb8] vfs_mountroot_ask is called when no usb keyboard is 
initialized

Responsible-Changed-From-To: freebsd-bugs-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Oct 19 16:51:35 UTC 2011
Responsible-Changed-Why: 
I'm not sure, but I think that this is a duplicate of usb/133989.
Perhaps somebody more knowledgeable could verify that and close
this?

http://www.freebsd.org/cgi/query-pr.cgi?pr=157074
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/159919: Patch for HUAWEI E173 (u3g/umodem)

2011-08-23 Thread gavin
Synopsis: Patch for HUAWEI E173 (u3g/umodem)

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Tue Aug 23 17:41:17 UTC 2011
State-Changed-Why: 
Fixed in head


Responsible-Changed-From-To: freebsd-usb-hselasky
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Aug 23 17:41:17 UTC 2011
Responsible-Changed-Why: 
Over to committer for closure after MFC.

http://www.freebsd.org/cgi/query-pr.cgi?pr=159919
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/159836: [patch] [uhso] Add support for Option GlobeTrotter Max 7.2 with new firmware (0x0af0/0x6711)

2011-08-22 Thread gavin
Old Synopsis: [patch] Add support for Option GlobeTrotter Max 7.2 with new 
firmware (0x0af0/0x6711) to uhso(4)
New Synopsis: [patch] [uhso] Add support for Option GlobeTrotter Max 7.2 with 
new firmware (0x0af0/0x6711)

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Mon Aug 22 13:38:45 UTC 2011
State-Changed-Why: 
Mark as patched, this appears to have been committed to head.


Responsible-Changed-From-To: freebsd-usb-hselasky
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 22 13:38:45 UTC 2011
Responsible-Changed-Why: 
Over to committer.

http://www.freebsd.org/cgi/query-pr.cgi?pr=159836
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


USB suspend/resume

2011-06-04 Thread Gavin Atkinson

Hi all,

I've been trying to get a IBM ThinkPad X60 suspend/resume working 
correctly, and discovered that with uhci loaded, the machine would hang on 
resume.  This is on head, but I believe this is aslo the cause of the 
laptop not resuming on stable/8.

It turns out that this is because we sleep in the resume path.  The resume 
path appears to run with interrupts disabled, and as a result we never 
wake up.  A comment above uhci_suspend() saggests similar:

/* NOTE: suspend/resume is called from
 * interrupt context and cannot sleep!

However, we do sleep.  We call usb_pause_mtx() several times during both 
tthe suspend and resume path, and on resume this is fatal.  
usb_pause_mtx() will use DELAY() when called before the machine has 
finished booting (ie cold != 0), but will call pause() once booted. To 
prove this, I've tested the following gross hack, which fixes 
suspend/resume on the ThinkPad X60:

Index: sys/dev/usb/controller/ehci_pci.c
===
--- sys/dev/usb/controller/ehci_pci.c   (revision 222417)
+++ sys/dev/usb/controller/ehci_pci.c   (working copy)
@@ -118,10 +118,16 @@
 ehci_pci_resume(device_t self)
 {
ehci_softc_t *sc = device_get_softc(self);
+   int mycold;
 
+   mycold = cold;
+   cold = 1;
+
ehci_pci_takecontroller(self);
ehci_resume(sc);
 
+   cold = mycold;
+
bus_generic_resume(self);
 
return (0);
Index: sys/dev/usb/controller/uhci_pci.c
===
--- sys/dev/usb/controller/uhci_pci.c   (revision 222417)
+++ sys/dev/usb/controller/uhci_pci.c   (working copy)
@@ -104,11 +104,17 @@
 uhci_pci_resume(device_t self)
 {
uhci_softc_t *sc = device_get_softc(self);
+   int mycold;
 
+   mycold = cold;
+   cold = 1;
+
pci_write_config(self, PCI_LEGSUP, PCI_LEGSUP_USBPIRQDEN, 2);
 
uhci_resume(sc);
 
+   cold = mycold;
+
bus_generic_resume(self);
return (0);
 }


The above hack fixes this X60 and allows suspend/resume to work, and USB 
devices work perfectly after the suspend/resume.  Other controllers look 
like they may also be affected  - at least ohci does the same.

So, I guess my question to the USB experts is:  What is the correct fix?  
I see two possibilities:

1) Have a variable somewhere called suspres or similar, which is set at 
   the start of the suspend, and cleared at the end of the resume.  
   usb_pause_mtx() then changes it's behaviour on (cold || suspres).  
   This may have to be a global variable, being incremented on suspend and 
   decremented on resume, as we don't pass a softc into usb_pause_mtx(), 
   however then we have issues relating to when one controller suspends 
   before the others, or resume before the others.

2) Kick off a separate task to do the resume.  Problems with this is thet 
   it doesn't fix the suspend path, but also that we may need to rely on 
   USB being back before the rest of the resume completes. (What happens 
   if we have / or another filesystem mounted from a USB device?)

I guess #1 is the simplest solution, and should have fewest side effects, 
however it does mean that every attachment would need to be modified in 
order to set and clear the variable.  It sort of feels like this should be 
handled more centrally, but I'm not sure of the best way to achieve this.

Any [other] suggestions?

Gavin
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: FreeBSD does not recognize USB devices in INTEL D102GGC2 motherboard

2011-06-04 Thread Gavin Atkinson
On Sat, 4 Jun 2011, Edgar Velasquez Mercado wrote:

 Hi everyone:
 I have a machine with Intel D102GGC2 motherboard running FreeBSD 8.2, it is
 not able to recognize any USB device, how could I fix that?

Can you provide the output of pciconf -lv please?

Gavin
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/151862: [uftdi] adding support of USB GSM modem Falcom Twist

2010-11-28 Thread gavin
Synopsis: [uftdi] adding support of USB GSM modem Falcom Twist

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Nov 28 10:28:28 UTC 2010
Responsible-Changed-Why: 
Grab

http://www.freebsd.org/cgi/query-pr.cgi?pr=151862
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/152075: [usb8] [ehci] Add quirk for CS5536 USB

2010-11-20 Thread gavin
Old Synopsis: Add quirk for CS5536 USB
New Synopsis: [usb8] [ehci] Add quirk for CS5536 USB

Responsible-Changed-From-To: freebsd-i386-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Sat Nov 20 21:42:33 UTC 2010
Responsible-Changed-Why: 
Over to maintainer(s)

http://www.freebsd.org/cgi/query-pr.cgi?pr=152075
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: bin/137180: [build] [patch] building world for 8.0-BETA2 fails on 7.2-RELEASE

2010-08-09 Thread gavin
Synopsis: [build] [patch] building world for 8.0-BETA2 fails on 7.2-RELEASE

State-Changed-From-To: feedback-closed
State-Changed-By: gavin
State-Changed-When: Mon Aug 9 12:31:08 UTC 2010
State-Changed-Why: 
Submitter is happy for this to be closed.

http://www.freebsd.org/cgi/query-pr.cgi?pr=137180
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org



Re: usb/138548: [usb67] [usb8] usb devices periodically have unknown activity

2010-07-29 Thread gavin
Old Synopsis: [usb67] usb devices periodically have unknown activity
New Synopsis: [usb67] [usb8] usb devices periodically have unknown activity

Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Thu Jul 29 09:38:02 UTC 2010
Responsible-Changed-Why: 
Back into the pool

http://www.freebsd.org/cgi/query-pr.cgi?pr=138548
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/131123: [patch] [usb67] re-add UQ_ASSUME_CM_OVER_DATA USB quirk

2010-07-27 Thread gavin
Old Synopsis: [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk
New Synopsis: [patch] [usb67] re-add UQ_ASSUME_CM_OVER_DATA USB quirk

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Tue Jul 27 12:35:34 UTC 2010
State-Changed-Why: 
This was fixed in head (r200395) and merged to stable/8 as
r201302.  Although it can't be merged to stable/7 directly,
it won't be too hard to do.  However, I'm not in a position
at the moment to test any merge.

http://www.freebsd.org/cgi/query-pr.cgi?pr=131123
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/129522: [ubsa] [usb67] [patch] add support for ZTE AC8700 modem

2010-07-27 Thread gavin
Synopsis: [ubsa] [usb67] [patch] add support for ZTE AC8700 modem

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Tue Jul 27 12:54:10 UTC 2010
State-Changed-Why: 
Support for this now exists in the u3g(4) driver in head, stable/8 and
now stable/7.

http://www.freebsd.org/cgi/query-pr.cgi?pr=129522
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/129173: [uplcom] [patch] Add support for Corega CG-USBRS232R as a serial port

2010-07-27 Thread gavin
Synopsis: [uplcom] [patch] Add support for Corega CG-USBRS232R as a serial port

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Jul 27 13:42:50 UTC 2010
Responsible-Changed-Why: 
Grab, I'll handle getting this in.

http://www.freebsd.org/cgi/query-pr.cgi?pr=129173
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/129758: [uftdi] [patch] add Pyramid LCD usb support

2010-07-27 Thread gavin
Synopsis: [uftdi] [patch] add Pyramid LCD usb support

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Jul 27 13:44:30 UTC 2010
Responsible-Changed-Why: 
Grab, I'll handle getting this in.

http://www.freebsd.org/cgi/query-pr.cgi?pr=129758
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/127980: [umass] [patch] [usb67] Fix Samsung YP U2 MP3 player on 7.x and 8.x

2010-07-27 Thread gavin
Old Synopsis: [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x and 8.x
New Synopsis: [umass] [patch] [usb67] Fix Samsung YP U2 MP3 player on 7.x and 
8.x

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Tue Jul 27 13:49:28 UTC 2010
State-Changed-Why: 
This has been fixed in head and stable/8, mark as patched as the
patch in the PR is likely correct for stable/7.

http://www.freebsd.org/cgi/query-pr.cgi?pr=127980
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/128324: [uplcom] [patch] remove baud rate restriction for PL2303X chipsets

2010-07-27 Thread gavin
Synopsis: [uplcom] [patch] remove baud rate restriction for PL2303X chipsets

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Jul 27 13:55:46 UTC 2010
Responsible-Changed-Why: 
I'll handle getting this in.

http://www.freebsd.org/cgi/query-pr.cgi?pr=128324
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/122621: [new driver] [patch] New driver for Sierra Wireless 3G USM modem 875U

2010-07-27 Thread gavin
Synopsis: [new driver] [patch] New driver for Sierra Wireless 3G USM modem 875U

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Tue Jul 27 14:12:17 UTC 2010
State-Changed-Why: 
This has been supported for some time in the u3g(4) driver in head,
stable/8 and stable/7, but the PR wasn't closed at the time.  Apologies,
and thanks for your submission!

http://www.freebsd.org/cgi/query-pr.cgi?pr=122621
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/123351: [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [26]020, Fujitsu Siemens SCR to usbdevs

2010-07-27 Thread gavin
Synopsis: [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [26]020, Fujitsu 
Siemens SCR to usbdevs

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Jul 27 14:17:05 UTC 2010
Responsible-Changed-Why: 
I'll handle getting this in.

http://www.freebsd.org/cgi/query-pr.cgi?pr=123351
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/127543: [patch] [ubsa] Support Option Globetrotter HSDPA modem

2010-07-27 Thread gavin
Synopsis: [patch] [ubsa] Support Option Globetrotter HSDPA modem

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Tue Jul 27 14:19:19 UTC 2010
State-Changed-Why: 
Grab, I'll consider doing the suggested ID import.


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Jul 27 14:19:19 UTC 2010
Responsible-Changed-Why: 
Grab, I'll consider doing the suggested ID import.

http://www.freebsd.org/cgi/query-pr.cgi?pr=127543
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/124604: [ums] Microsoft combo wireless mouse doesn't work

2010-07-27 Thread gavin
Synopsis: [ums] Microsoft combo wireless mouse doesn't work

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Tue Jul 27 14:21:09 UTC 2010
State-Changed-Why: 
To submitter: Do you know if this was ever resolved?  If not, I'm
afraid there isn't enough information within this PR to start to
figure out what the problem is.  Could you please provide the
output of dmesg and either usbdevs -v (on 6/7) or
usbconfig list (under 8).  Thanks!

http://www.freebsd.org/cgi/query-pr.cgi?pr=124604
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/122025: [uscanner] [patch] uscanner does not attach to Epson RX620 printer/scanner/cardreader

2010-07-27 Thread gavin
Synopsis: [uscanner] [patch] uscanner does not attach to Epson RX620 
printer/scanner/cardreader

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Jul 27 14:27:16 UTC 2010
Responsible-Changed-Why: 
Grab, I'll handle this.

http://www.freebsd.org/cgi/query-pr.cgi?pr=122025
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/118485: [usbdevs] [patch] Logitech Headset Workaround

2010-07-27 Thread gavin
Synopsis: [usbdevs] [patch] Logitech Headset Workaround

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Jul 27 14:59:27 UTC 2010
Responsible-Changed-Why: 
I'll handle getting this in.

http://www.freebsd.org/cgi/query-pr.cgi?pr=118485
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/134631: [usbdevs] [patch] WiSPY DBx support requires usb tweaks

2010-07-26 Thread gavin
Synopsis: [usbdevs] [patch] WiSPY DBx support requires usb tweaks

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Jul 26 19:53:53 UTC 2010
Responsible-Changed-Why: 
Grab, I'll get this in.  Sorry it has taken so long.

http://www.freebsd.org/cgi/query-pr.cgi?pr=134631
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/134193: System freeze on usb MP3 player insertion

2010-07-26 Thread Gavin Atkinson
The following reply was made to PR usb/134193; it has been noted by GNATS.

From: Gavin Atkinson ga...@freebsd.org
To: bug-follo...@freebsd.org
Cc:  
Subject: Re: usb/134193: System freeze on usb MP3 player insertion
Date: Mon, 26 Jul 2010 21:25:20 +0100 (BST)

 The usb/usbdevs part of the patch has been committed, but the quirk has 
 only been committed to p4 so far.
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/132785: [usb] [patch] Gemtech remote powersocket is classed as a HID device rather than ugen

2010-07-26 Thread gavin
Synopsis: [usb] [patch] Gemtech remote powersocket is classed as a HID device 
rather than ugen

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Mon Jul 26 21:23:25 UTC 2010
State-Changed-Why: 
Committed to head, will MFC in one week.  Thanks for your submission,
and sorry it has taken so long to commit.

http://www.freebsd.org/cgi/query-pr.cgi?pr=132785
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/132785: [usb] [patch] Gemtech remote powersocket is classed as a HID device rather than ugen

2010-07-26 Thread gavin
Synopsis: [usb] [patch] Gemtech remote powersocket is classed as a HID device 
rather than ugen

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Jul 26 21:24:02 UTC 2010
Responsible-Changed-Why: 
Take

http://www.freebsd.org/cgi/query-pr.cgi?pr=132785
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/131900: [usbdevs] [patch] Additional product identification code for Logitech QuickCam Pro

2010-07-26 Thread gavin
Synopsis: [usbdevs] [patch] Additional product identification code for Logitech 
QuickCam Pro

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Mon Jul 26 21:30:10 UTC 2010
State-Changed-Why: 
This patch was committed to head over a year ago, in r189904, and merged
to stable/7 shortly after, however this PR was never closed.
Thanks for your submission!

http://www.freebsd.org/cgi/query-pr.cgi?pr=131900
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/131912: [uslcom] [patch] New devices using Silicon Labs chips - patches enclosed

2010-07-26 Thread gavin
Synopsis: [uslcom] [patch] New devices using Silicon Labs chips - patches 
enclosed

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Jul 26 21:45:38 UTC 2010
Responsible-Changed-Why: 
Take, I'll get this into the tree

http://www.freebsd.org/cgi/query-pr.cgi?pr=131912
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/147196: [usbdevs] [patch] Please add a USB-HDD to usb_quirk.c and usbdevs

2010-07-25 Thread gavin
Synopsis: [usbdevs] [patch] Please add a USB-HDD to usb_quirk.c and usbdevs

State-Changed-From-To: closed-patched
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 11:04:34 UTC 2010
State-Changed-Why: 
Closed prematurely - needs MFC


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jul 25 11:04:34 UTC 2010
Responsible-Changed-Why: 
Take

http://www.freebsd.org/cgi/query-pr.cgi?pr=147196
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/147190: [usbdevs] [patch] Add USR5422 to upgt wlan driver

2010-07-25 Thread gavin
Synopsis: [usbdevs] [patch] Add USR5422 to upgt wlan driver

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 11:05:09 UTC 2010
State-Changed-Why: 
Fixed in head, needs MFC to 8


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jul 25 11:05:09 UTC 2010
Responsible-Changed-Why: 
Take

http://www.freebsd.org/cgi/query-pr.cgi?pr=147190
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/146907: [rue] [patch] OQO model01 network does not work on FreeBSD 8.0

2010-07-25 Thread gavin
Synopsis: [rue] [patch] OQO model01 network does not work on FreeBSD 8.0

State-Changed-From-To: analyzed-patched
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 11:06:46 UTC 2010
State-Changed-Why: 
Fixed in head, needs MFC


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jul 25 11:06:46 UTC 2010
Responsible-Changed-Why: 
Trake

http://www.freebsd.org/cgi/query-pr.cgi?pr=146907
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/146799: usbdevs(8) missing in ObsoleteFiles.inc

2010-07-25 Thread gavin
Synopsis: usbdevs(8) missing in ObsoleteFiles.inc

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 11:14:24 UTC 2010
State-Changed-Why: 
Fixed in head (r198005), needs merging to 8


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jul 25 11:14:24 UTC 2010
Responsible-Changed-Why: 
I'll handle the merge

http://www.freebsd.org/cgi/query-pr.cgi?pr=146799
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/144423: [usb8] [patch] if_run panic with USB-N13

2010-07-25 Thread gavin
Synopsis: [usb8] [patch] if_run panic with USB-N13

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 11:43:31 UTC 2010
State-Changed-Why: 
This PR can be closed:all patches contained within it are now
in SVN.

http://www.freebsd.org/cgi/query-pr.cgi?pr=144423
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/146871: [usbdevs] [usb8] [patch] provide descriprive string for D-Link DUB-7H USB hub

2010-07-25 Thread Gavin Atkinson
The following reply was made to PR usb/146871; it has been noted by GNATS.

From: Gavin Atkinson ga...@freebsd.org
To: bug-follo...@freebsd.org
Cc:  
Subject: Re: usb/146871: [usbdevs] [usb8] [patch] provide descriprive string
 for D-Link DUB-7H USB hub
Date: Sun, 25 Jul 2010 12:45:33 +0100 (BST)

 HPS reports that this is already in the USB p4 tree, but not yet in SVN.
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/143448: [usbdevs] [usb8] [patch] QUIRK: JMicron JM20336 USB/SATA bridge controller

2010-07-25 Thread gavin
Synopsis: [usbdevs] [usb8] [patch] QUIRK: JMicron JM20336 USB/SATA bridge 
controller

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 12:00:22 UTC 2010
State-Changed-Why: 
Fixed in r205681, needs merge to stable/8


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jul 25 12:00:22 UTC 2010
Responsible-Changed-Why: 
Take

http://www.freebsd.org/cgi/query-pr.cgi?pr=143448
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/141467: [uftdi] [patch] RATOC REX-USB60F (usb serial converter) is not working on -current

2010-07-25 Thread gavin
Synopsis: [uftdi] [patch] RATOC REX-USB60F (usb serial converter) is not 
working on -current

State-Changed-From-To: analyzed-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 12:24:01 UTC 2010
State-Changed-Why: 
This was committed to head as r200826 and merged to stable/8 before
8.1 was released.

http://www.freebsd.org/cgi/query-pr.cgi?pr=141467
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/140928: [u3g] [usb8] [patch] ZTE CDMA2000 1X EV-DO (MG478/AC8700) is not working

2010-07-25 Thread gavin
Synopsis: [u3g] [usb8] [patch] ZTE CDMA2000 1X EV-DO (MG478/AC8700) is not 
working

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 12:25:32 UTC 2010
State-Changed-Why: 
Submitter reports that this now works with 8.1.

http://www.freebsd.org/cgi/query-pr.cgi?pr=140928
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: kern/140590: [bluetooth] ng_ubt(4) ng_l2cap_process_cmd_rej warnings

2010-07-25 Thread gavin
Old Synopsis: [bluetooth] [usb8] ng_ubt(4) ng_l2cap_process_cmd_rej warnings
New Synopsis: [bluetooth] ng_ubt(4) ng_l2cap_process_cmd_rej warnings

Responsible-Changed-From-To: freebsd-usb-freebsd-net
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jul 25 12:27:00 UTC 2010
Responsible-Changed-Why: 
hselasky@ does not believe this is a USB issue, so presumably the 
problem lies within ng_ubt(4)?  Over to -net for others to look into.

http://www.freebsd.org/cgi/query-pr.cgi?pr=140590
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/138915: [patch] [usb8] [usb67] add support for SheevaPlug serial interface to uftdi driver

2010-07-25 Thread gavin
Synopsis: [patch] [usb8] [usb67] add support for SheevaPlug serial interface to 
uftdi driver

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 12:40:21 UTC 2010
State-Changed-Why: 
This was committed some time ago to both head and stable/8.  Thanks
for your submission!

http://www.freebsd.org/cgi/query-pr.cgi?pr=138915
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/138879: [uftdi] [patch] Patch to add support for CTI USB-Mini 485 and USB-Nano 485

2010-07-25 Thread gavin
Synopsis: [uftdi] [patch] Patch to add support for CTI USB-Mini 485 and 
USB-Nano 485

State-Changed-From-To: analyzed-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 12:43:35 UTC 2010
State-Changed-Why: 
This patch has been committed to head and stable/8 some time ago,
and is supported in (at least) 8.1.  Thanks for your submission!

http://www.freebsd.org/cgi/query-pr.cgi?pr=138879
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/138172: [u3g] [patch] [usb67] Additional dev id for u3g (Option mini PCIe)

2010-07-25 Thread gavin
Synopsis: [u3g] [patch] [usb67] Additional dev id for u3g (Option mini PCIe)

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 12:46:31 UTC 2010
State-Changed-Why: 
This was committed to head (r200657) and merged shortly after.
Thanks for your submission!

http://www.freebsd.org/cgi/query-pr.cgi?pr=138172
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/138138: [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon and Bell Canada)

2010-07-25 Thread gavin
Synopsis: [u3g] [patch] [usb67] Novatel U760 for u3g (Verizon and Bell Canada)

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 13:07:42 UTC 2010
State-Changed-Why: 
Fixed in head and stable/8, I'll handle the MFC to stable/7.


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jul 25 13:07:42 UTC 2010
Responsible-Changed-Why: 
Take

http://www.freebsd.org/cgi/query-pr.cgi?pr=138138
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/137616: [usb67][usb8][usbdevs] [patch]: usbdevs update: Please add JMicron's entry

2010-07-25 Thread gavin
Synopsis: [usb67][usb8][usbdevs] [patch]: usbdevs update: Please add JMicron's 
entry

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 13:30:16 UTC 2010
State-Changed-Why: 
This was committed in r201701 and merged to stable/8 in
r202511, so can be  closed.  Thanks for your submission!

http://www.freebsd.org/cgi/query-pr.cgi?pr=137616
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/134633: Add support for WILLCOM03(SHARP smart phone)

2010-07-25 Thread gavin
Synopsis: Add support for WILLCOM03(SHARP smart phone)

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 13:40:29 UTC 2010
State-Changed-Why: 
Fixed in head before 8.x was branched,  Thanks for your submission!

http://www.freebsd.org/cgi/query-pr.cgi?pr=134633
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/134117: [Patch] Add support for 'Option GlobeTrotter HSDPA Modem' to dev/usb/serial/u3g.c

2010-07-25 Thread gavin
Synopsis: [Patch] Add support for 'Option GlobeTrotter HSDPA Modem' to 
dev/usb/serial/u3g.c

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 14:00:00 UTC 2010
State-Changed-Why: 
This was committed to head and stable/8 some time ago.  Thanks for
your report!

http://www.freebsd.org/cgi/query-pr.cgi?pr=134117
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/132799: [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CACHE in its QUIRK

2010-07-25 Thread gavin
Synopsis: [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CACHE in its QUIRK

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jul 25 14:05:21 UTC 2010
Responsible-Changed-Why: 
I'll handle merging this to stable/7

http://www.freebsd.org/cgi/query-pr.cgi?pr=132799
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/135575: [usbdevs] [patch] [usb67] Add HTC Wizard phone vid/pid information to usbdevs uipaq.c

2010-07-25 Thread gavin
Synopsis: [usbdevs] [patch] [usb67] Add HTC Wizard phone vid/pid information to 
usbdevs  uipaq.c

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Sun Jul 25 15:15:04 UTC 2010
State-Changed-Why: 
This phone has been supported in the uipaq(4) driver for some time now.
I've just added the entry to usbdevs.

http://www.freebsd.org/cgi/query-pr.cgi?pr=135575
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: junk/146996: xitrfwys

2010-05-25 Thread gavin
Synopsis: xitrfwys

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Tue May 25 22:57:02 UTC 2010
State-Changed-Why: 
Spam


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue May 25 22:57:02 UTC 2010
Responsible-Changed-Why: 


http://www.freebsd.org/cgi/query-pr.cgi?pr=146996
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: bin/137180: [build] [patch] building world for 8.0-BETA2 fails on 7.2-RELEASE

2010-01-03 Thread gavin
Synopsis: [build] [patch] building world for 8.0-BETA2 fails on 7.2-RELEASE

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Sun Jan 3 12:32:15 UTC 2010
State-Changed-Why: 
To submitter: do you know if this has been fixed?  I've not seen
any other reports of it, and usually before a release is published
it is tested to ensure an upgrade can be done from the previous
release.


Responsible-Changed-From-To: freebsd-bugs-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Sun Jan 3 12:32:15 UTC 2010
Responsible-Changed-Why: 
USB related issue

http://www.freebsd.org/cgi/query-pr.cgi?pr=137180
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/140904: [build] Kernel fails to build if some unused USB Ethernet interfaces are omitted; error in /sys/conf/files

2009-12-03 Thread gavin
Synopsis: [build] Kernel fails to build if some unused USB Ethernet interfaces 
are omitted; error in /sys/conf/files

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Thu Dec 3 11:02:06 UTC 2009
State-Changed-Why: 
Fixed in HEAD in r199974 (jhb)


Responsible-Changed-From-To: freebsd-usb-jhb
Responsible-Changed-By: gavin
Responsible-Changed-When: Thu Dec 3 11:02:06 UTC 2009
Responsible-Changed-Why: 
Over to jhb@ for closure after MFC.

http://www.freebsd.org/cgi/query-pr.cgi?pr=140904
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/140810: [uftdi] 8.X copy and paste problem / tty overflow

2009-11-28 Thread gavin
Old Synopsis: 8.X+ uftdi copy and paste problem / tty overflow
New Synopsis: [uftdi] 8.X copy and paste problem / tty overflow

State-Changed-From-To: open-analyzed
State-Changed-By: gavin
State-Changed-When: Sat Nov 28 22:13:07 UTC 2009
State-Changed-Why: 
Looks like this problem is understood, a fix is in Perforce

http://www.freebsd.org/cgi/query-pr.cgi?pr=140810
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: kern/140849: [umouse] [usb8] USB mouse doesn't work under FreeBSD 8.0-RELEASE

2009-11-28 Thread gavin
Old Synopsis: USB mouse doesn't work under FreeBSD 8.0-RELEASE
New Synopsis: [umouse] [usb8] USB mouse doesn't work under FreeBSD 8.0-RELEASE

Responsible-Changed-From-To: freebsd-i386-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Sat Nov 28 22:29:08 UTC 2009
Responsible-Changed-Why: 
Over to maintainer(s).  FWIW, I'm not aware of any changes between
8.0-RC3 and RELEASE that could have caused this, can I just confirm
that it was RC3 and not BETA3 where the mouse last worked?

http://www.freebsd.org/cgi/query-pr.cgi?pr=140849
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/140904: [build] Kernel fails to build if some unused USB Ethernet interfaces are omitted; error in /sys/conf/files

2009-11-28 Thread gavin
Synopsis: [build] Kernel fails to build if some unused USB Ethernet interfaces 
are omitted; error in /sys/conf/files

Responsible-Changed-From-To: freebsd-bugs-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Sat Nov 28 23:13:22 UTC 2009
Responsible-Changed-Why: 
Over to USB maintainer(s), the submitter has found a fix that works
for him by changing sys/conf/files, hopefully somebody can verify
and commit it

http://www.freebsd.org/cgi/query-pr.cgi?pr=140904
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/127549: [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requires some quirks

2009-11-16 Thread gavin
Old Synopsis: [umass] [patch] Meizu MiniPlayer M6 (SL) requires some quirks
New Synopsis: [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requires some 
quirks

State-Changed-From-To: suspended-patched
State-Changed-By: gavin
State-Changed-When: Mon Nov 16 22:53:28 UTC 2009
State-Changed-Why: 
This is fixed in 8 and 7, but not merged to 6.  Mark patched in
case somebody wants to do that.

http://www.freebsd.org/cgi/query-pr.cgi?pr=127549
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: aue0 detected as ue0 on 8.0-RC2

2009-11-03 Thread Gavin Atkinson
[freebsd-current cc'd, as that was where the thread started, but this
probably belongs on -usb, replies should go there]

On Sat, 2009-10-31 at 21:59 +0100, Rick van der Zwet wrote:
 The first net interface of a aue(4) define used to be called aue0
 afaik. But is now called ue0 (declared in usb/net/usb_ethernet.c). (no
 sign of ue(4) btw).
 
 I was looking in the UPDATING, man, mailinglists freebsd-usb@ and
 freebsd-curr...@. But I could not find the reason why the naming
 convention on this aue differs from the regular stuff, anybody?
 
 /Rick
 
 quick# dmesg | tail -8
 ugen1.3: ADMtek at usbus1
 aue0: ADMtek USB To LAN Converter, rev 2.00/1.01, addr 3 on usbus1
 miibus1: MII bus on aue0
 ukphy0: Generic IEEE 802.3u media interface PHY 1 on miibus1
 ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
 ue0: USB Ethernet on aue0
 ue0: Ethernet address: 00:00:e8:00:11:36
 ue0: link state changed to DOWN
 
 quick# ifconfig -l
 bfe0 lo0 ue0

Hmm, this looks like a serious bug, possibly in the new USB subsystem
(HPS CC'd).

I've got an axe(4) device, which also does the same:

ugen7.3: vendor 0x0b95 at usbus7
axe0: vendor 0x0b95 product 0x7720, rev 2.00/0.01, addr 3 on usbus7
axe0: PHYADDR 0xe0:0x10
miibus1: MII bus on axe0
ukphy0: Generic IEEE 802.3u media interface PHY 16 on miibus1
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
ue0: USB Ethernet on axe0
ue0: Ethernet address: 00:50:b6:05:57:a7
ue0: link state changed to DOWN

Gavin
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/113060: [usb67] [ulpt] [patch] Samsung printer not working in bidirectional mode

2009-09-18 Thread gavin
Synopsis: [usb67] [ulpt] [patch] Samsung printer not working in bidirectional 
mode

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Fri Sep 18 13:48:30 UTC 2009
State-Changed-Why: 
Feedback was provided, submitter is unable to test


Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Fri Sep 18 13:48:30 UTC 2009
Responsible-Changed-Why: 
Over to maintainer(s)

http://www.freebsd.org/cgi/query-pr.cgi?pr=113060
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/137226: [usb67][patch] quirk for Philips extern USB disk

2009-09-11 Thread gavin
Old Synopsis: [patch] quirk for Philips extern USB disk
New Synopsis: [usb67][patch] quirk for Philips extern USB disk

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Fri Sep 11 09:36:21 UTC 2009
State-Changed-Why: 
Fixed in -HEAD

http://www.freebsd.org/cgi/query-pr.cgi?pr=137226
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/137138: [umass][usb67][patch] QUIRK: ASUS PDA Flash disk emulation

2009-09-11 Thread gavin
Old Synopsis: [umass] [patch] QUIRK: ASUS PDA Flash disk emulation
New Synopsis: [umass][usb67][patch] QUIRK: ASUS PDA Flash disk emulation

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Fri Sep 11 09:47:58 UTC 2009
State-Changed-Why: 
To submitter: This has been fixed in HEAD so will be in 8.0 when it is released.
Do you know if it is also an issue in 7.x?  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Fri Sep 11 09:47:58 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=137138
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/137789: [patch][usb67]Add quirks for EeePC 901 SD card reader

2009-09-11 Thread gavin
Old Synopsis: Add quirks for EeePC 901 SD card reader
New Synopsis: [patch][usb67]Add quirks for EeePC 901 SD card reader

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Fri Sep 11 09:49:30 UTC 2009
State-Changed-Why: 
To submitter: This has been fixed in HEAD so will be in 8.0 when it is released.
Do you know if it is also an issue in 7.x?  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Fri Sep 11 09:49:30 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=137789
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/135372: [usb67][umass] Quirk report for Teclast TL-C300 usb media player

2009-09-11 Thread gavin
Old Synopsis: Quirk report for Teclast TL-C300 usb media player
New Synopsis: [usb67][umass] Quirk report for Teclast TL-C300 usb media player

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Fri Sep 11 09:50:33 UTC 2009
State-Changed-Why: 
Fixed in HEAD.

http://www.freebsd.org/cgi/query-pr.cgi?pr=135372
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/138548: usb devices periodically have unknown activity

2009-09-11 Thread gavin
Synopsis: usb devices periodically have unknown activity

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Fri Sep 11 10:46:47 UTC 2009
State-Changed-Why: 
To submitter:  Other than the LEDs flashing, do these devices work correctly?
Can you please provide the output of usbdevs -v when these devices are plugged
in?


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Fri Sep 11 10:46:47 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=138548
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/103917: [usb67] [uhub] USB driver reports Addr 0 should never happen

2009-08-31 Thread gavin
Synopsis: [usb67] [uhub] USB driver reports Addr 0 should never happen

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Mon Aug 31 09:27:55 UTC 2009
State-Changed-Why: 
Submitter doesn't know if this is still a problem: presumably he
no longer has the hardware.


Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 31 09:27:55 UTC 2009
Responsible-Changed-Why: 
Back over to maintainer(s).  I suspect there isn't enough information
in this PR to be able to diagnose the problem, but I'll let the USB
maintainers decide that.

http://www.freebsd.org/cgi/query-pr.cgi?pr=103917
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/103917: [usb67] [uhub] USB driver reports Addr 0 should never happen

2009-08-31 Thread gavin
Synopsis: [usb67] [uhub] USB driver reports Addr 0 should never happen

State-Changed-From-To: open-suspended
State-Changed-By: gavin
State-Changed-When: Mon Aug 31 09:30:35 UTC 2009
State-Changed-Why: 
On second thoughts, mark this as suspended for now.

http://www.freebsd.org/cgi/query-pr.cgi?pr=103917
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/112463: [umass] problem with Samsung USB DVD writer, libscg and FreeBSD kernel

2009-08-31 Thread gavin
Synopsis: [umass] problem with Samsung USB DVD writer, libscg and FreeBSD kernel

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 31 11:05:52 UTC 2009
State-Changed-Why: 
To submitter:  Firstly, I'm sorry that this PR has sat for so long
without being investigated.  Do you know if this is still a problem
with newer versions of FreeBSD?  Ideally, it would be useful if you
could test with both FreeBSD 7.x and with 8.0.


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 31 11:05:52 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=112463
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/112568: [umass] [usb67] USB mode may wrong when mounting Playstation Pro

2009-08-31 Thread gavin
Old Synopsis: [umass] [request] USB mode may wrong when mounting Playstation Pro
New Synopsis: [umass] [usb67] USB mode may wrong when mounting Playstation Pro

State-Changed-From-To: suspended-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 31 11:10:07 UTC 2009
State-Changed-Why: 
To submitter: Do you know if this problem has been fixed in newer
versions of FreeBSD?  Ideally, it would be good if you can test
both 7.x and 8.0, as the USB stack has changed between 7.x and 8.x.
Also, could you please look at PR usb/110197 and see if that
may be related to your problem?


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 31 11:10:07 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=112568
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/112631: [usb67] [panic] Problem with SONY DSC-S80 camera on umount

2009-08-31 Thread gavin
Old Synopsis: [panic] Problem with SONY DSC-S80 camera on umount
New Synopsis: [usb67] [panic] Problem with SONY DSC-S80 camera on umount

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 31 11:14:47 UTC 2009
State-Changed-Why: 
To submitter:  Firstly, I'm sorry that this PR has sat for so
long without being followed up on.  Do you know if this problem
still exists in newer versions of FreeBSD?  It would be good if
you could test both 7.x and 8.0 to see if the problem has been
fixed.

If the problem still occurs, could you please provide more information
about the panic?  Please copy the entire text from the panic.


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 31 11:14:47 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=112631
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/112944: [usb67] [ulpt] [patch] Bi-directional access to HP LaserJet 1010 printer on USB seems faulty

2009-08-31 Thread gavin
Old Synopsis: [ulpt] [patch] Bi-directional access to HP LaserJet 1010 printer 
on USB seems faulty
New Synopsis: [usb67] [ulpt] [patch] Bi-directional access to HP LaserJet 1010 
printer on USB seems faulty

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 31 11:23:38 UTC 2009
State-Changed-Why: 
To submitter: This is believed to actually be a bug in the ulpt(4)
driver, and is believed to be fixed in the new USB stack in 8.x.
Is there any chance you could test the patch from PR usb/103046
and see if that fixes things for you on 6.x or 7.x?


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 31 11:23:38 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=112944
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/113060: [usb67] [ulpt] [patch] Samsung printer not working in bidirectional mode

2009-08-31 Thread gavin
Old Synopsis: [usbdevs] [patch] Samsung printer not working in bidirectional 
mode
New Synopsis: [usb67] [ulpt] [patch] Samsung printer not working in 
bidirectional mode

State-Changed-From-To: analyzed-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 31 11:54:31 UTC 2009
State-Changed-Why: 
To submitter: This is believed to actually be a bug in the ulpt(4)
driver, and is believed to be fixed in the new USB stack in 8.x.
Is there any chance you could test the patch from PR usb/103046
and see if that fixes things for you on 6.x or 7.x?


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 31 11:54:31 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=113060
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: kern/113432: [ucom] WARNING: attempt to net_add_domain(netgraph) after domainfinalize()

2009-08-31 Thread gavin
Synopsis: [ucom] WARNING: attempt to net_add_domain(netgraph) after 
domainfinalize()

Responsible-Changed-From-To: freebsd-usb-freebsd-net
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 31 11:55:54 UTC 2009
Responsible-Changed-Why: 
I believe this is more likely to be a problem at the netgraph
level rather than USB.

http://www.freebsd.org/cgi/query-pr.cgi?pr=113432
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/113977: [request] Need a way to set mode of USB disk's write cache

2009-08-31 Thread gavin
Synopsis: [request] Need a way to set mode of USB disk's write cache

State-Changed-From-To: suspended-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 31 12:07:21 UTC 2009
State-Changed-Why: 
To submitter: Sorry that this PR has not been looked at since
submission.  If your external device supports changing write
cache, I think it should be visible with camcontrol modepage da0 -m 8.
If that doesn't work, I don't know if there is any way you can
achieve what you want to do.


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 31 12:07:21 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=113977
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/107243: [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive quirk

2009-08-27 Thread gavin
Synopsis: [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive quirk

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Thu Aug 27 18:23:57 UTC 2009
State-Changed-Why: 
Submitter provided feedback (and an updated patch against 7.x) - 
but doesn't know if this is still an issue in 8.x.  Thanks for
your feedback!


Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Thu Aug 27 18:23:57 UTC 2009
Responsible-Changed-Why: 
Back over to maintainer(s)

http://www.freebsd.org/cgi/query-pr.cgi?pr=107243
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/100746: [usb67] [ukbd] system does not boot due to USB keyboard problem on Dell 3100

2009-08-26 Thread gavin
Synopsis: [usb67] [ukbd] system does not boot due to USB keyboard problem on 
Dell 3100

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Wed Aug 26 12:13:59 UTC 2009
State-Changed-Why: 
Feedback was received from submitter, who confirm that this problem is
fixed in 8.x.  Problem presumably still remains in 7.x.


Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Aug 26 12:13:59 UTC 2009
Responsible-Changed-Why: 
Over to maintainer(s)

http://www.freebsd.org/cgi/query-pr.cgi?pr=100746
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/101761: [usb67] [patch] [request] usb.h: increase maximal size of report descriptor

2009-08-26 Thread gavin
Synopsis: [usb67] [patch] [request] usb.h: increase maximal size of report 
descriptor

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Wed Aug 26 12:19:56 UTC 2009
State-Changed-Why: 
Submitter confirms that this is fixed in 8.x.  It appears from code inspection
that it is not fixed in 7.x, so keep it open.


Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Aug 26 12:19:56 UTC 2009
Responsible-Changed-Why: 
Over to maintainer(s)

http://www.freebsd.org/cgi/query-pr.cgi?pr=101761
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/109397: [usb67] [umass] [panic] FS corruption on booting from USB stick

2009-08-26 Thread gavin
Old Synopsis: [panic] on boot from USB flash
New Synopsis: [usb67] [umass] [panic] FS corruption on booting from USB stick

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Wed Aug 26 12:23:58 UTC 2009
State-Changed-Why: 
To submitter: Do you know if this problem was ever resolved?  If not, is there
any chance you could test using FreeBSD 8 and see if you still see the same
issues?  Also, the output of dmesg |grep -i usb might be useful.


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Aug 26 12:23:58 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=109397
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/110856: [usb67] [ugen] [patch] interrupt in msgs are truncated when buffer is full

2009-08-26 Thread gavin
Old Synopsis: [ugen] [patch] interrupt in msgs are truncated when buffer is full
New Synopsis: [usb67] [ugen] [patch] interrupt in msgs are truncated when 
buffer is full

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Wed Aug 26 12:27:39 UTC 2009
State-Changed-Why: 
To submitter: Firstly, sorry that this PR has sat here untouched for so
long.  Is there any chance you know if this patch is still required with
the new USB stack in FreeBSD 8.x?  As far as I can tell, it is still 
required under FreeBSD 6/7.  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Aug 26 12:27:39 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=110856
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/110197: [usb67] [umass] [ehci] Sony PSP umass device does not detach from EHCI port

2009-08-26 Thread gavin
Old Synopsis: [umass] Sony PSP umass device does not detach from EHCI port
New Synopsis: [usb67] [umass] [ehci] Sony PSP umass device does not detach from 
EHCI port

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Wed Aug 26 12:37:08 UTC 2009
State-Changed-Why: 
To submitter: Do you know if this problem was ever resolved in FreeBSD 6 or 7?
Is there any chance you could test with FreeBSD 8 and see if the problem
still exists?  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Aug 26 12:37:08 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=110197
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/111753: [usb67] [uhid] [panic] Replicable system panic involving UHID driver

2009-08-26 Thread gavin
Old Synopsis: [uhid] [panic] Replicable system panic involving UHID driver
New Synopsis: [usb67] [uhid] [panic] Replicable system panic involving UHID 
driver

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Wed Aug 26 12:39:15 UTC 2009
State-Changed-Why: 
To submitter:  Firstly, sorry that this PR has sat for so long without being
looked at.  Do you know if this issue was ever fixed with later versions of
FreeBSD (6 or 7)?  Also, is there any chance you could test with FreeBSD 8
and see if you still see the problem?  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Aug 26 12:39:15 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=111753
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/112461: [usb67] [ehci] ehci USB 2.0 doesn't work on nforce4

2009-08-26 Thread gavin
Old Synopsis: [ehci] [request] ehci USB 2.0 doesn't work on nforce4
New Synopsis: [usb67] [ehci] ehci USB 2.0 doesn't work on nforce4

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Wed Aug 26 12:42:04 UTC 2009
State-Changed-Why: 
To submitter:  Do you know if this issue was ever fixed with later versions of
FreeBSD (6 or 7)?  Also, is there any chance you could test with FreeBSD 8
and see if you still see the problem?  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Aug 26 12:42:04 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=112461
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/110856: [usb67] [ugen] [patch] interrupt in msgs are truncated when buffer is full

2009-08-26 Thread gavin
Synopsis: [usb67] [ugen] [patch] interrupt in msgs are truncated when buffer is 
full

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Wed Aug 26 12:44:41 UTC 2009
State-Changed-Why: 
Mail to submitter bounces, but from code inspection it appears that this
is still an issue in at least FreeBSD 6/7.


Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Wed Aug 26 12:44:41 UTC 2009
Responsible-Changed-Why: 
Over to maintainer(s)

http://www.freebsd.org/cgi/query-pr.cgi?pr=110856
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/103046: [usb67] [ulpt] [patch] ulpt event driven I/O with select(2) and nonblock

2009-08-25 Thread gavin
Synopsis: [usb67] [ulpt] [patch] ulpt event driven I/O with select(2) and 
nonblock

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Tue Aug 25 09:37:33 UTC 2009
State-Changed-Why: 
Submitter provided feedback, thanks!


Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Aug 25 09:37:33 UTC 2009
Responsible-Changed-Why: 
Back over to maintainer(s).  Submitter believes this is still a problem with
the old USB stack, although possibly a problem that fewer people will see as
cups includes a workaround for this problem.

http://www.freebsd.org/cgi/query-pr.cgi?pr=103046
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/106648: [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang on Insert w/o Floppy Disk

2009-08-25 Thread gavin
Old Synopsis: [umass] [hang] USB Floppy on D1950 10 min Hang on Insert w/o 
Floppy Disk
New Synopsis: [usb67] [umass] [hang] USB Floppy on D1950 10 min Hang on Insert 
w/o Floppy Disk

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Tue Aug 25 10:01:05 UTC 2009
State-Changed-Why: 
To submitter: sorry that this PR has sat around ignored for so long.
Do you know if this issue was ever resolved with later versions of
FreeBSD?  Do you know if it is still an issue in the upcoming FreeBSD 8?


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Aug 25 10:01:05 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=106648
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/106832: [usb67] [usb] USB HP printer is not detected by kernel when ACPI enabled.

2009-08-25 Thread gavin
Old Synopsis: [usb] USB HP printer is not detected by kernel when ACPI enabled.
New Synopsis: [usb67] [usb] USB HP printer is not detected by kernel when ACPI 
enabled.

State-Changed-From-To: suspended-feedback
State-Changed-By: gavin
State-Changed-When: Tue Aug 25 10:02:51 UTC 2009
State-Changed-Why: 
To submitter: do you know if this problem was ever fixed in later versions
of FreeBSD/  Is there any chance you can confirm that the problem no longer
exists in FreeBSD 8?  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Aug 25 10:02:51 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=106832
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/106861: [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 Bluetooth USB Adapter

2009-08-25 Thread gavin
Old Synopsis: [usbdevs] [patch]: usbdevs update: Add product ACER Zeevo BT-500 
Bluetooth USB Adapter
New Synopsis: [usb67] [usb8] [usbdevs] [patch] Add ACER Zeevo BT-500 Bluetooth 
USB Adapter

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Tue Aug 25 10:04:23 UTC 2009
State-Changed-Why: 
To submitter: Do you know if this USB bluetooth adapter works with more recent
versions of FreeBSD?


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Aug 25 10:04:23 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=106861
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/107243: [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive quirk

2009-08-25 Thread gavin
Old Synopsis: [cam] [patch] Apacer USB Flash Drive quirk
New Synopsis: [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive quirk

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Tue Aug 25 12:52:05 UTC 2009
State-Changed-Why: 
To submitter:  Do you know if this issue has ever been resolved?  Also, do
you know if this is still an issue with the new USB stack found in FreeBSD 8?


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Aug 25 12:52:05 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=107243
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/107496: [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 (SHORT_XFER) [regression]

2009-08-25 Thread gavin
Old Synopsis: [uhub] USB device problem on RELENG_6_2 (SHORT_XFER) [regression]
New Synopsis: [usb67] [uhub] [ehci] USB device problem on RELENG_6_2 
(SHORT_XFER) [regression]

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Tue Aug 25 12:56:25 UTC 2009
State-Changed-Why: 
To submitter:  Firstly, apologies that this PR has sat for so long
without being investigated.  Do you know if the issues you saw have ever
been resolved?  It is possible that this issue has been fixed with the
new USB stack found in FreeBSD 8.0.  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Aug 25 12:56:25 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=107496
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/109274: [usb67] [usb] MCP55 USB Controller fails to attach in AMD64 Current SMP Kernel [regression]

2009-08-25 Thread gavin
Old Synopsis: [usb] MCP55 USB Controller fails to attach in AMD64 Current SMP 
Kernel [regression]
New Synopsis: [usb67] [usb] MCP55 USB Controller fails to attach in AMD64 
Current SMP Kernel [regression]

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Tue Aug 25 13:36:21 UTC 2009
State-Changed-Why: 
To submitter: Do you know if this is still a problem with newer versions of
FreeBSD?  If at all possible, it would be useful to know if this works under
both 7.x, and under the new USB stack in 8.x.  Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Tue Aug 25 13:36:21 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=109274
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/134476: [usb2] [umass] [quirk] Add quirk for Cypress xx6830xx

2009-08-24 Thread gavin
Synopsis: [usb2] [umass] [quirk] Add quirk for Cypress xx6830xx

State-Changed-From-To: open-closed
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:06:25 UTC 2009
State-Changed-Why: 
Close, these were committed to -CURRENT

http://www.freebsd.org/cgi/query-pr.cgi?pr=134476
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/137188: [usb][patch] correctly handle USB report descriptors with interleaved report IDs

2009-08-24 Thread gavin
Synopsis: [usb][patch] correctly handle USB report descriptors with interleaved 
report IDs

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:08:16 UTC 2009
State-Changed-Why: 
Mark as patched.  It's fixed in HEAD but I have no idea if it is applicable
or even a problem in 7.x.  Hopefully the submitter or somebody more involved
with USB knows.  Either way, patched is more appropriate.

http://www.freebsd.org/cgi/query-pr.cgi?pr=137188
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/136761: [usbdevs] [patch] Teach usbdevs / u3g(4) about Huawei E180v 3G modem

2009-08-24 Thread gavin
Synopsis: [usbdevs] [patch] Teach usbdevs / u3g(4) about Huawei E180v 3G modem

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:11:04 UTC 2009
State-Changed-Why: 
Fixed in HEAD

http://www.freebsd.org/cgi/query-pr.cgi?pr=136761
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/125264: [patch] sysctl for set usb mouse rate (very useful for gamers - FPS games)

2009-08-24 Thread gavin
Synopsis: [patch] sysctl for set usb mouse rate (very useful for gamers - FPS 
games)

State-Changed-From-To: open-patched
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:12:23 UTC 2009
State-Changed-Why: 
Fixed in HEAD.

http://www.freebsd.org/cgi/query-pr.cgi?pr=125264
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/133545: [usb] [panic] Kernel crash in usb2_intr_schedule_adjust + 0x75

2009-08-24 Thread gavin
Synopsis: [usb] [panic] Kernel crash in usb2_intr_schedule_adjust + 0x75

State-Changed-From-To: feedback-closed
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:13:20 UTC 2009
State-Changed-Why: 
Feedback timeout (4 months).  This has been fixed in HEAD and doesn't seem
applicable to 7.x or before.

http://www.freebsd.org/cgi/query-pr.cgi?pr=133545
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/126848: [usb]: USB Keyboard hangs during Installation

2009-08-24 Thread gavin
Synopsis: [usb]: USB Keyboard hangs during Installation

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:21:32 UTC 2009
State-Changed-Why: 
Feedback was received some time ago.

http://www.freebsd.org/cgi/query-pr.cgi?pr=126848
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/128418: [panic] [rum] loading if_rum causes panic, looks like in usb stack

2009-08-24 Thread gavin
Synopsis: [panic] [rum] loading if_rum causes panic, looks like in usb stack

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:23:33 UTC 2009
State-Changed-Why: 
Feewdback was received some time ago.

http://www.freebsd.org/cgi/query-pr.cgi?pr=128418
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/131123: [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk

2009-08-24 Thread gavin
Synopsis: [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:24:25 UTC 2009
State-Changed-Why: 
Feedback was received some time ago

http://www.freebsd.org/cgi/query-pr.cgi?pr=131123
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/133712: [ural] [patch] RE: Fixed an issue with ural(4) that was creating kernel panics (trap 12)

2009-08-24 Thread gavin
Synopsis: [ural] [patch] RE: Fixed an issue with ural(4) that was creating 
kernel panics (trap 12)

State-Changed-From-To: feedback-open
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:26:02 UTC 2009
State-Changed-Why: 
Feedback was provided some time ago


Responsible-Changed-From-To: gavin-freebsd-usb
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 24 13:26:02 UTC 2009
Responsible-Changed-Why: 


http://www.freebsd.org/cgi/query-pr.cgi?pr=133712
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/135857: RTL8187 Wireless Adapter

2009-08-24 Thread gavin
Synopsis: RTL8187 Wireless Adapter

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 13:39:07 UTC 2009
State-Changed-Why: 
This device should be supported in 8.x by the urtw(4) driver.  It hasn't
yet been backported to 7.x, but it may well be in the future.  To
submitter: is there any chance you could test 8.0 and see if ith works
for you?

http://www.freebsd.org/cgi/query-pr.cgi?pr=135857
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/101096: [usb67] [ural] [panic] USB WLAN occasionally causes kernel-panics during large downloads

2009-08-24 Thread gavin
Old Synopsis: [ural] [panic] USB WLAN occasionally causes kernel-panics during 
large downloads
New Synopsis: [usb67] [ural] [panic] USB WLAN occasionally causes kernel-panics 
during large downloads

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 15:42:10 UTC 2009
State-Changed-Why: 
To submitter: what is the status of this PR?  Do you know if the problem was
ever fixed in FreeBSD?


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 24 15:42:10 UTC 2009
Responsible-Changed-Why: 
Track


http://www.freebsd.org/cgi/query-pr.cgi?pr=101096
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/101752: [usb67] [umass] [panic] 6.1-RELEASE kernel panic on usb device insertion

2009-08-24 Thread gavin
Old Synopsis: [umass] [panic] 6.1-RELEASE kernel panic on usb device insertion
New Synopsis: [usb67] [umass] [panic] 6.1-RELEASE kernel panic on usb device 
insertion

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 15:46:23 UTC 2009
State-Changed-Why: 
To submitter:  Firstly, sorry for this PR sitting ignored for so long.
I believe the panic seen might have been fixed before FreeBSD 6.3 was
released.  Do you know if that is in fact the case?  If not, do you know
if it is still an issue, or if it has been fixed in either 7.x or 8.x?
Thanks!


Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 24 15:46:23 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=101752
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/101761: [usb67] [patch] [request] usb.h: increase maximal size of report descriptor

2009-08-24 Thread gavin
Old Synopsis: [usb] [patch] [request] usb.h: increase maximal size of report 
descriptor
New Synopsis: [usb67] [patch] [request] usb.h: increase maximal size of report 
descriptor

State-Changed-From-To: open-feedback
State-Changed-By: gavin
State-Changed-When: Mon Aug 24 15:54:46 UTC 2009
State-Changed-Why: 
To submitter:  I'm not sure what the state is of this PR.  It looks like the
problem has not yet been fixed in FreeBSD 6 or 7, but I don't know if it is
still an issue with the new USB stack in 8.x.  Do you happen to know if this
PR is still valid against the new USB stack?  Thanks!

http://www.freebsd.org/cgi/query-pr.cgi?pr=101761
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


Re: usb/101761: [usb67] [patch] [request] usb.h: increase maximal size of report descriptor

2009-08-24 Thread gavin
Synopsis: [usb67] [patch] [request] usb.h: increase maximal size of report 
descriptor

Responsible-Changed-From-To: freebsd-usb-gavin
Responsible-Changed-By: gavin
Responsible-Changed-When: Mon Aug 24 15:58:10 UTC 2009
Responsible-Changed-Why: 
Track

http://www.freebsd.org/cgi/query-pr.cgi?pr=101761
___
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to freebsd-usb-unsubscr...@freebsd.org


  1   2   >