Re: [linux-usb-devel] EHCI Split Isochronous issues

2005-11-23 Thread Manjunath B S
Hello All, Thanks a lot for your reply, I have redone all the tests again to confirm my observations. I am yet to port the kernel onto the latest kernel and verify the observations in the same. Please find my reply inline... On 11/17/05, David Brownell [EMAIL PROTECTED] wrote: On Wednesday

Re: [linux-usb-devel] Re: USB printer fails to print intermittently

2005-11-23 Thread Steve Bangert
On Tue, 2005-11-22 at 16:51 -0500, Alan Stern wrote: On Tue, 22 Nov 2005, Steve Bangert wrote: Ok, here's the two raw text files sent directly to the device node, this one a repost of the non-working printer: ddb97300 1765765675 S Bi:003:02 -115 8192 ddb97800 1765766313 S Bo:003:01

[linux-usb-devel] Re: [PATCH 2/2] - usbserial: race-condition fix.

2005-11-23 Thread Luiz Fernando Capitulino
On Tue, 22 Nov 2005 14:13:53 -0800 Greg KH [EMAIL PROTECTED] wrote: | On Tue, Nov 22, 2005 at 07:59:26PM -0200, Luiz Fernando Capitulino wrote: | @@ -60,6 +61,7 @@ struct usb_serial_port { | struct usb_serial * serial; | struct tty_struct * tty; | spinlock_t

[linux-usb-devel] Re: [PATCH 2/2] - usbserial: race-condition fix.

2005-11-23 Thread Eduardo Pereira Habkost
On Wed, Nov 23, 2005 at 09:36:55AM -0200, Luiz Fernando Capitulino wrote: On Tue, 22 Nov 2005 14:13:53 -0800 Greg KH [EMAIL PROTECTED] wrote: | On Tue, Nov 22, 2005 at 07:59:26PM -0200, Luiz Fernando Capitulino wrote: | @@ -60,6 +61,7 @@ struct usb_serial_port { |struct usb_serial *

[linux-usb-devel] Re: [PATCH 2/2] - usbserial: race-condition fix.

2005-11-23 Thread Luiz Fernando Capitulino
On Wed, 23 Nov 2005 09:56:33 -0200 Eduardo Pereira Habkost [EMAIL PROTECTED] wrote: | On Wed, Nov 23, 2005 at 09:36:55AM -0200, Luiz Fernando Capitulino wrote: | On Tue, 22 Nov 2005 14:13:53 -0800 | Greg KH [EMAIL PROTECTED] wrote: | | | On Tue, Nov 22, 2005 at 07:59:26PM -0200, Luiz

[linux-usb-devel] USB CDC WMC Device Management - Sony Ericsson 600i

2005-11-23 Thread Alex Kanavin
Hi, I've been given lsusb -v output for a Sony Ericsson 600i phone, and it has an interface that looks like this: Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber7 bAlternateSetting 0 bNumEndpoints

Re: [linux-usb-devel] USB CDC WMC Device Management - Sony Ericsson 600i

2005-11-23 Thread Oliver Neukum
Am Mittwoch, 23. November 2005 13:43 schrieb Alex Kanavin: Hi, I've been given lsusb -v output for a Sony Ericsson 600i phone, and it has an interface that looks like this: Interface Descriptor: bLength 9 bDescriptorType 4

RE: [linux-usb-devel] USB CDC WMC Device Management - Sony Ericsson 600i

2005-11-23 Thread rao.shalini
Hi I hope this phone should have more than 6 interfaces if I'm not wrong It should include bulk IN/OUT interfaces for data transmission Regards Shalini G -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Oliver Neukum Sent: Wednesday, November 23, 2005

Re: [linux-usb-devel] negative pipe value.....

2005-11-23 Thread Alan Stern
On Wed, 23 Nov 2005, Kiran Jammula wrote: Thank you... I am using usb_sndbulkpipe in usb_bulg_msg the return value of the usb_bulk_msg is also a positive number. But there is no response from the device.. If the return value is positive then there _is_ a response from the device,

Re: [linux-usb-devel] Re: USB printer fails to print intermittently

2005-11-23 Thread Alan Stern
On Wed, 23 Nov 2005, Steve Bangert wrote: These traces show that the same data is getting sent to the printer in the same way each time. So there's nothing wrong with the printing procedure itself. Whatever is going wrong must happen earlier, during the device detection and setup. Do

[linux-usb-devel] [PATCH] usbcore: Consider power budget when choosing configuration

2005-11-23 Thread Alan Stern
Greg: This patch (as609) changes the way we keep track of power budgeting for USB hubs and devices, and it updates the choose_configuration routine to take this information into account. (This is something we should have been doing all along.) A new field in struct usb_device holds the amount

[linux-usb-devel] [PATCH] Store port number in usb_device

2005-11-23 Thread Alan Stern
Greg: This patch (as610) adds a field to struct usb_device to store the device's port number. This allows us to remove several loops in the hub driver (searching for a particular device among all the entries in the parent's array of children). Alan Stern Signed-off-by: Alan Stern [EMAIL

[linux-usb-devel] [RESEND 2/2] - usbserial: race-condition fix.

2005-11-23 Thread Luiz Fernando Capitulino
On Tue, 22 Nov 2005 14:13:53 -0800 Greg KH [EMAIL PROTECTED] wrote: | On Tue, Nov 22, 2005 at 07:59:26PM -0200, Luiz Fernando Capitulino wrote: | @@ -60,6 +61,7 @@ struct usb_serial_port { | struct usb_serial * serial; | struct tty_struct * tty; | spinlock_t

[linux-usb-devel] Re: [PATCH 2/2] - usbserial: race-condition fix.

2005-11-23 Thread Greg KH
On Wed, Nov 23, 2005 at 09:36:55AM -0200, Luiz Fernando Capitulino wrote: On Tue, 22 Nov 2005 14:13:53 -0800 Greg KH [EMAIL PROTECTED] wrote: | On Tue, Nov 22, 2005 at 07:59:26PM -0200, Luiz Fernando Capitulino wrote: | @@ -60,6 +61,7 @@ struct usb_serial_port { |struct usb_serial *

[linux-usb-devel] Re: [RESEND 2/2] - usbserial: race-condition fix.

2005-11-23 Thread Greg KH
On Wed, Nov 23, 2005 at 03:46:50PM -0200, Luiz Fernando Capitulino wrote: On Tue, 22 Nov 2005 14:13:53 -0800 Greg KH [EMAIL PROTECTED] wrote: | On Tue, Nov 22, 2005 at 07:59:26PM -0200, Luiz Fernando Capitulino wrote: | @@ -60,6 +61,7 @@ struct usb_serial_port { |struct usb_serial *

[linux-usb-devel] Re: [RESEND 2/2] - usbserial: race-condition fix.

2005-11-23 Thread Luiz Fernando Capitulino
On Wed, 23 Nov 2005 10:01:08 -0800 Greg KH [EMAIL PROTECTED] wrote: | On Wed, Nov 23, 2005 at 03:46:50PM -0200, Luiz Fernando Capitulino wrote: | On Tue, 22 Nov 2005 14:13:53 -0800 | Greg KH [EMAIL PROTECTED] wrote: | | | On Tue, Nov 22, 2005 at 07:59:26PM -0200, Luiz Fernando Capitulino

[linux-usb-devel] Re: [2.6 patch] drivers/usb/misc/sisusbvga/sisusb.c: remove dead code

2005-11-23 Thread Greg KH
On Mon, Nov 21, 2005 at 12:22:39AM +0100, Adrian Bunk wrote: The Coverity checker found this obviously dead code. I think the checker is wrong, this does not look correct to me. thanks, greg k-h --- This SF.net email is sponsored by: Splunk

[linux-usb-devel] Re: [PATCH] - Fixes NULL pointer deference in usb-serial driver.

2005-11-23 Thread Greg KH
On Wed, Nov 16, 2005 at 05:54:09PM +, Russell King wrote: Hint: there's a VERY good reason the serial_core layer exists and it's to get these kind of semantics (and bugs) centralised in one place rather than spread across thousands of drivers. Yes, I know I need to convert the usb-serial

Re: [linux-usb-devel] Re: [2.6 patch] drivers/usb/misc/sisusbvga/sisusb.c: remove dead code

2005-11-23 Thread Christian Iversen
On Wednesday 23 November 2005 20:02, Greg KH wrote: On Mon, Nov 21, 2005 at 12:22:39AM +0100, Adrian Bunk wrote: The Coverity checker found this obviously dead code. I think the checker is wrong, this does not look correct to me. How can a value != 0, in the first line of a body of a while

Re: [linux-usb-devel] Linux 2.6.10 and later kernels, USB2 stopped working

2005-11-23 Thread Alan Stern
On Wed, 9 Nov 2005, Charles Shannon Hendrix wrote: Wed, 09 Nov 2005 @ 10:38 -0500, Alan Stern said: A 1-second delay is kind of long. Does the iPod continue to work if you decrease the delay length? How low can you go? Not sure yet. Any word yet on how long a delay is needed for the

[linux-usb-devel] Re: [PATCH 2/2] - usbserial: race-condition fix.

2005-11-23 Thread Greg KH
On Wed, Nov 23, 2005 at 10:07:08AM -0200, Luiz Fernando Capitulino wrote: Since the spinlock seems to be only used to protect 'write_urb_busy', I agree with those changes. Greg, do you? If so, I suggested we should add the semaphore first, because it is a bug fix. Yes, I agree. I can

[linux-usb-devel] Re: [2.6 patch] drivers/usb/misc/sisusbvga/sisusb.c: remove dead code

2005-11-23 Thread Adrian Bunk
On Wed, Nov 23, 2005 at 11:02:37AM -0800, Greg KH wrote: On Mon, Nov 21, 2005 at 12:22:39AM +0100, Adrian Bunk wrote: The Coverity checker found this obviously dead code. I think the checker is wrong, this does not look correct to me. Why? Due to the while(length), length can't be 0 at the

[linux-usb-devel] PL2303 based USB to SERIAL cable on kernel 2.6.14-1.1637_FC4 - reenabling (changing ttyUSB*)

2005-11-23 Thread Zdenek Habala
Dear all, I have a very strange behavior of my USB to SERIAL cable for mobile phone NOKIA 6020. It is connected to my PC with Fedora Core 4.0 kernel 2.6.14-1.1637_FC4. The cable is properly recognized during boot see messages: Nov 23 20:44:52 localhost kernel: usbcore: registered new

Re: [linux-usb-devel] Re: USB printer fails to print intermittently

2005-11-23 Thread Steve Bangert
On Wed, 2005-11-23 at 10:54 -0500, Alan Stern wrote: On Wed, 23 Nov 2005, Steve Bangert wrote: These traces show that the same data is getting sent to the printer in the same way each time. So there's nothing wrong with the printing procedure itself. Whatever is going wrong must

Re: [linux-usb-devel] PL2303 based USB to SERIAL cable on kernel 2.6.14-1.1637_FC4 - reenabling (changing ttyUSB*)

2005-11-23 Thread Pete Zaitcev
On Thu, 24 Nov 2005 00:00:56 +0100, Zdenek Habala [EMAIL PROTECTED] wrote: hub 2-0:1.0: port 2 disabled by hub (EMI?), re-enabling... usb 2-2: USB disconnect, address 2 [...] Do you have any clue, why it behaves like that? And what can I do against that ? In my experience, it actually always

[linux-usb-devel] [patch 15/22] USB: ftdi_sio: new IDs for KOBIL devices

2005-11-23 Thread Greg Kroah-Hartman
From: Ian Abbott [EMAIL PROTECTED] This patch adds two new devices to the ftdi_sio driver's device ID table. The device IDs were supplied by Stefan Nies of KOBIL Systems for two of their devices using the FTDI chip. Signed-off-by: Ian Abbott [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman

[linux-usb-devel] [patch 08/22] hwmon: hdaps missing an axis

2005-11-23 Thread Greg Kroah-Hartman
From: Eugeniy Meshcheryakov [EMAIL PROTECTED] Trivial patch to report both hdaps axises to the joystick device, not just the X axis. Signed-off-by: Robert Love [EMAIL PROTECTED] Signed-off-by: Jean Delvare [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] ---

[linux-usb-devel] [patch 17/22] USB: EHCI updates mostly whitespace cleanups

2005-11-23 Thread Greg Kroah-Hartman
From: David Brownell [EMAIL PROTECTED] This cleans up the recent updates to EHCI PCI support: - Gets rid of checks for is this a PCI device, they're no longer needed since this is now all PCI-only code. - Reduce log spamming: MWI is only interesting in the atypical case that it can

[linux-usb-devel] [patch 03/22] Clarify T: field in MAINTAINERS

2005-11-23 Thread Greg Kroah-Hartman
From: Jody McIntyre [EMAIL PROTECTED] Pavel Machek points out that for git repos, what we include is not actually a URL. It is undesirable to use a URL since git repos can be accessed in many different ways. Signed-off-by: Jody McIntyre [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL

[linux-usb-devel] [patch 13/22] PCI: direct.c: DBG

2005-11-23 Thread Greg Kroah-Hartman
From: Daniel Marjam?ki [EMAIL PROTECTED] The DBG() call where updated with the appropriate KERN_* symbol. Signed-off-by: Daniel Marjam?ki [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- arch/i386/pci/direct.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[linux-usb-devel] [patch 05/22] hwmon: Fix missing boundary check when setting W83627THF in0 limits

2005-11-23 Thread Greg Kroah-Hartman
From: Yuan Mu [EMAIL PROTECTED] Add SENSORS_LIMIT in store VCore limit functions. This fixes a potential u8 overflow on out-of-range user input. Signed-off-by: Jean Delvare [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/hwmon/w83627hf.c |8 ++-- 1 file

[linux-usb-devel] [patch 12/22] PCI: kernel-doc fix for pci-acpi.c

2005-11-23 Thread Greg Kroah-Hartman
From: Randy Dunlap [EMAIL PROTECTED] Fix kernel-doc warning in pci/pci-acpi.c. Signed-off-by: Randy Dunlap [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/pci/pci-acpi.c |1 + 1 file changed, 1 insertion(+) --- usb-2.6.orig/drivers/pci/pci-acpi.c +++

[linux-usb-devel] [patch 20/22] USB: fix USB key generates ioctl_internal_command errors issue

2005-11-23 Thread Greg Kroah-Hartman
From: David H?rdeman [EMAIL PROTECTED] On Wed, Nov 16, 2005 at 06:34:24PM -0800, Pete Zaitcev wrote: On Wed, 16 Nov 2005 23:52:32 +0100, David H?rdeman [EMAIL PROTECTED] wrote: usb-storage: waiting for device to settle before scanning Vendor: I0MEGAModel: UMni1GB*IOM2K4Rev: 1.01

[linux-usb-devel] [patch 21/22] USB: kernel-doc for linux/usb.h

2005-11-23 Thread Greg Kroah-Hartman
From: Randy Dunlap [EMAIL PROTECTED] Fix kernel-doc warning in linux/usb.h. Signed-off-by: Randy Dunlap [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- include/linux/usb.h |1 + 1 file changed, 1 insertion(+) --- usb-2.6.orig/include/linux/usb.h +++

[linux-usb-devel] [patch 06/22] hwmon: Fix lm78 VID conversion

2005-11-23 Thread Greg Kroah-Hartman
From: Jean Delvare [EMAIL PROTECTED] Fix the lm78 VID reading, which I accidentally broke while making this driver use the common vid_from_reg function rather than reimplementing its own in 2.6.14-rc1. I'm not proud of it, trust me. Signed-off-by: Jean Delvare [EMAIL PROTECTED] Signed-off-by:

[linux-usb-devel] [patch 09/22] PCI: trivial printk updates in common.c

2005-11-23 Thread Greg Kroah-Hartman
From: Daniel Marjam?kia [EMAIL PROTECTED] Modified common.c so it's using the appropriate KERN_* in printk() calls. Signed-off-by: Daniel Marjam?kia [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- arch/i386/pci/common.c |4 ++-- 1 file changed, 2 insertions(+), 2

[linux-usb-devel] [patch 19/22] USB: ohci, move ppc asic tweaks nearer pci

2005-11-23 Thread Greg Kroah-Hartman
From: David Brownell [EMAIL PROTECTED] This should fix a suspend/resume issues that appear with OHCI on some PPC hardware. The PCI layer should doesn't have the hooks needed for such ASIC-specific hooks (in this case, software clock gating), so this moves the code to do that into hcd-pci.c ...

[linux-usb-devel] [patch 10/22] PCI Express Hotplug: clear sticky power-fault bit

2005-11-23 Thread Greg Kroah-Hartman
From: Rajesh Shah [EMAIL PROTECTED] Per the PCI Express spec, the power-fault-detected bit in the slot status register can be set anytime hardware detects a power fault, regardless of whether the slot has a device populated in it or not. This bit is sticky and must be explicitly cleared. This

[linux-usb-devel] [patch 02/22] MTD git tree location added to MAINTAINERS

2005-11-23 Thread Greg Kroah-Hartman
From: Josh Boyer [EMAIL PROTECTED] Here's the MTD one. More later as I find them. Signed-off-by: Josh Boyer [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] diff --git a/MAINTAINERS b/MAINTAINERS index c5cf7d7..1e84be3 100644 --- MAINTAINERS |1 + 1 file changed, 1

[linux-usb-devel] [patch 11/22] PCI: remove bogus resource collision error

2005-11-23 Thread Greg Kroah-Hartman
From: Rajesh Shah [EMAIL PROTECTED] When attempting to hotadd a PCI card with a bridge on it, I saw the kernel reporting resource collision errors even when there were really no collisions. The problem is that the code doesn't skip over invalid resources with their resource type flag not set.

[linux-usb-devel] [patch 16/22] USB: EHCI updates

2005-11-23 Thread Greg Kroah-Hartman
From: David Brownell [EMAIL PROTECTED] This fixes some bugs in EHCI suspend/resume that joined us over the past few releases (as usbcore, PCI, pmcore, and other components evolved): - Removes suspend and resume recursion from the EHCI driver, getting rid of the USB_SUSPEND special casing.

[linux-usb-devel] [patch 07/22] hwmon: Fix missing it87 fan div init

2005-11-23 Thread Greg Kroah-Hartman
From: Jean Delvare [EMAIL PROTECTED] Fix a bug where setting the low fan speed limits will not work if no data was ever read through the sysfs interface and the fan clock dividers have not been explicitely set yet either. The reason is that data-fan_div[nr] may currently be used before it is

[linux-usb-devel] [patch 14/22] USB: SN9C10x driver - bad page state fix

2005-11-23 Thread Greg Kroah-Hartman
From: Damian Wrobel [EMAIL PROTECTED] This patch solves the following problem I've already discovered on the latest 2.6.15-rc1-git1 kernel: Nov 13 07:37:28 wrobel kernel: Bad page state at free_hot_cold_page (in process 'motion', page c164e020) Nov 13 07:37:28 wrobel kernel: flags:0x4400

[linux-usb-devel] [patch 01/22] Small fixes to driver core

2005-11-23 Thread Greg Kroah-Hartman
From: Alan Stern [EMAIL PROTECTED] This patch (as603) makes a few small fixes to the driver core: Change spin_lock_irq for a klist lock to spin_lock; Fix reference count leaks; Minor spelling and formatting changes. Signed-off-by: Alan Stern [EMAIL PROTECTED] Acked-by Patrick Mochel [EMAIL

[linux-usb-devel] [patch 22/22] usb serial: remove redundant include

2005-11-23 Thread Greg Kroah-Hartman
From: Nicolas Kaiser [EMAIL PROTECTED] remove redundant include Signed-off-by: Nicolas Kaiser [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/ipw.c |1 - 1 file changed, 1 deletion(-) --- usb-2.6.orig/drivers/usb/serial/ipw.c +++

[linux-usb-devel] [patch 04/22] Add more SCM trees to MAINTAINERS

2005-11-23 Thread Greg Kroah-Hartman
From: Josh Boyer [EMAIL PROTECTED] Greg requested a patch to update MAINTAINERS with more SCM entries. The patch below is what I've found so far. Signed-off-by: Josh Boyer [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- MAINTAINERS | 17 + 1 file

[linux-usb-devel] [patch 18/22] USB: EHCI updates split init/reinit logic for resume

2005-11-23 Thread Greg Kroah-Hartman
From: David Brownell [EMAIL PROTECTED] Moving the PCI-specific parts of the EHCI driver into their own file created a few issues ... notably on resume paths which (like swsusp) require re-initializing the controller. This patch: - Splits the EHCI startup code into run-once HCD setup code and

[linux-usb-devel] [patch 00/22] PCI, USB and hwmon patches for 2.6.15-rc2-git

2005-11-23 Thread Greg Kroah-Hartman
Here are a few PCI, USB, hwmon, and documentation patches against your latest git tree, they have all been in the past few -mm releases just fine. The big changes in here are some ehci and ohci fixes to handle suspend better (there is still one more pending patch to get it all working completely,

[linux-usb-devel] Re: [patch 00/22] PCI, USB and hwmon patches for 2.6.15-rc2-git

2005-11-23 Thread Linus Torvalds
On Wed, 23 Nov 2005, Greg Kroah-Hartman wrote: Here are a few PCI, USB, hwmon, and documentation patches against your latest git tree, they have all been in the past few -mm releases just fine. Is there any reason you don't use git to sync up? Linus

[linux-usb-devel] Re: [patch 00/22] PCI, USB and hwmon patches for 2.6.15-rc2-git

2005-11-23 Thread Greg KH
On Wed, Nov 23, 2005 at 04:01:36PM -0800, Linus Torvalds wrote: On Wed, 23 Nov 2005, Greg Kroah-Hartman wrote: Here are a few PCI, USB, hwmon, and documentation patches against your latest git tree, they have all been in the past few -mm releases just fine. Is there any reason you

[linux-usb-devel] search tools to test usb smart card driver

2005-11-23 Thread mail mail
Hi, I have finised writing a usb smart card driver. Is there any tool recommended to test smart card driver, espcially in writing APDU and get responce from sim card? Thanks. Best regards, TowerGee --- This SF.net email is sponsored by:

Re: [linux-usb-devel] PL2303 based USB to SERIAL cable on kernel 2.6.14-1.1637_FC4 - reenabling (changing ttyUSB*)

2005-11-23 Thread Alan Stern
On Thu, 24 Nov 2005, Zdenek Habala wrote: Dear all, I have a very strange behavior of my USB to SERIAL cable for mobile phone NOKIA 6020. It is connected to my PC with Fedora Core 4.0 kernel 2.6.14-1.1637_FC4. The cable is properly recognized during boot see messages: But then, after

Re: [linux-usb-devel] Re: USB printer fails to print intermittently

2005-11-23 Thread Alan Stern
On Wed, 23 Nov 2005, Steve Bangert wrote: What happens if you move or rename the usblp.ko driver module, so that it's not available at boot time? You could then insmod it later on. Normally the file is found in /lib/modules/linux-version/kernel/drivers/usb/class It may

Re: [linux-usb-devel] Linux 2.6.10 and later kernels, USB2 stopped working

2005-11-23 Thread Charles Shannon Hendrix
Wed, 23 Nov 2005 @ 15:04 -0500, Alan Stern said: On Wed, 9 Nov 2005, Charles Shannon Hendrix wrote: Wed, 09 Nov 2005 @ 10:38 -0500, Alan Stern said: A 1-second delay is kind of long. Does the iPod continue to work if you decrease the delay length? How low can you go? Not

Re: [linux-usb-devel] lease send a copy of this message to linux-usb-devel@lists.sourceforge.net

2005-11-23 Thread Phil Dibowitz
Alan Stern wrote: And I seem to recall them both needing the SC and PR... so I plan to write the patch to include the NEED_OVERRIDE flag - unless anyone thinks they may not be needed for some reason - but this page is from August, so I can't see how that need would have changed. In my copy

Re: [linux-usb-devel] lease send a copy of this message to linux-usb-devel@lists.sourceforge.net

2005-11-23 Thread Phil Dibowitz
Thorsten George wrote: Oct 29 20:43:54 atlantis kernel: usb-storage: This device (0409,0040,0150 S 04 P 00) has unneeded SubClass and Protocol entries in unusual_devs.h Oct 29 20:43:54 atlantis kernel:Please send a copy of this message to linux-usb-devel@lists.sourceforge.net Thorsten,

[linux-usb-devel] Re: usbmon question

2005-11-23 Thread Pete Zaitcev
On Tue, 15 Nov 2005 16:08:08 -0500 (EST), Alan Stern [EMAIL PROTECTED] wrote: /* * Bulk is easy to shortcut reliably. * XXX Other pipe types need consideration. Currently, we overdo it * and collect garbage for them: better more than less. */ if