Re: [linux-usb-devel] usb bluetooth code debugging

2001-03-29 Thread Greg KH
On Fri, Mar 30, 2001 at 10:17:02AM +0530, Ravi Kumar B S wrote: > hi, > > no. i am not fiinding any problem with the bluetooth driver as i yet to test > it. but before that i want to understand the control flow. starting from > usbregistration, open, write etc. so i want a kgdb(kernel debugger) a

[linux-usb-devel] [PATCH] Fix SMP lockup in usbdevfs

2001-03-29 Thread Tony Hoyle
This fixes a lockup when calling the USBDEVFS_SUBMITURB ioctl in an SMP kernel. Tony -- Don't click on this sig - a cyberwoozle will eat your underwear. [EMAIL PROTECTED]http://www.nothing-on.tv --- devio.c.old Fri Mar 30 02:22:32 2001 +++ devio.c Fri Mar 30 02:12:09 2001 @@ -17

Re: [linux-usb-devel] [Patch] CDC Ethernet model - driver

2001-03-29 Thread Brad Hards
Brad Hards wrote: > > Find enclosed a highly experimental patch for the Communication Device Class > Ethernet model. This aspect of CDC is used by some USB cable modems > (Ericsson, Broadcom, etc). It might be worth putting in the AC patches, but > is definately too unstable to go to Linux just y

Re: [linux-usb-devel] Bug: two devices get same scsi LUN

2001-03-29 Thread Robert Baruch
Hmm... Maybe. But when xcdroast scanned the SCSI devices (probably through , it only found the SDDR09, even though both SDDR09 and HP8200e showed up in the USB storage debug logs. Maybe xcdroast reads /proc/scsi/scsi... I'll have to find out. --Rob Matthew Dharm wrote: > I've seen something

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread Johannes Erdfelt
On Thu, Mar 29, 2001, Tony Hoyle <[EMAIL PROTECTED]> wrote: > Johannes Erdfelt wrote: > > On Thu, Mar 29, 2001, Tony Hoyle <[EMAIL PROTECTED]> wrote: > >> Johannes Erdfelt wrote: > >>> I have a new version of my uhci.c patch. Here's the list of changes: > >>> > >>> - Fixed bulk urb queuing! > >>

Re: [linux-usb-devel] usb bluetooth code debugging

2001-03-29 Thread Greg KH
On Thu, Mar 29, 2001 at 02:06:03PM +0530, Ravi Kumar B S wrote: > hi all, > > i am trying to debug the usb bluetooth code. since it runs in the kernel > mode, kgdb is necessary. can anybody help me in getting the kgdb kernel patch > and the required commands to install and use it. Is there a pro

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread Tony Hoyle
Johannes Erdfelt wrote: > On Thu, Mar 29, 2001, Tony Hoyle <[EMAIL PROTECTED]> wrote: > >> Johannes Erdfelt wrote: >> >> >>> I have a new version of my uhci.c patch. Here's the list of changes: >>> >>> - Fixed bulk urb queuing! >> >> Will this make things work in SMP again? It's a pain havi

Re: [linux-usb-devel] USB on MIPS

2001-03-29 Thread Judd Montgomery
Well, this isn't a regular PC type of computer. Its a set top box. Kind of like a Tivo, but lots better. Judd Brian Rudden wrote: > > I don't have an awnser for you, but I do have a question. I was wondering > what kind of MIPS machine you are using. I'm thinking of trying out some > differ

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread Johannes Erdfelt
On Thu, Mar 29, 2001, Tony Hoyle <[EMAIL PROTECTED]> wrote: > Unfortunately I can't test it as it uses undefined routines > pci_pool_{alloc,free}. Is there another patch that goes with this one? This one. JE --- include/linux/pci-orig.hWed Mar 14 12:40:44 2001 +++ include/linux/pci.h Th

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread Johannes Erdfelt
On Thu, Mar 29, 2001, Tony Hoyle <[EMAIL PROTECTED]> wrote: > Johannes Erdfelt wrote: > > > I have a new version of my uhci.c patch. Here's the list of changes: > > > > - Fixed bulk urb queuing! > > Will this make things work in SMP again? It's a pain having to boot a > UP kernel just because

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread Johannes Erdfelt
On Fri, Mar 30, 2001, Brad Hards <[EMAIL PROTECTED]> wrote: > Johannes Erdfelt wrote: > > > > I have a new version of my uhci.c patch. Here's the list of changes: > [snip] > > What is this patch against? I am getting a bit lost in patchland, and > haven't followed the patches as well as I should

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread David Brownell
> Also, which of the pci_pool patches haven't been applied to the ac patches > or the 2.4.3 patches? I want to turn on all the new kernel_hacking options > (especially slab poisoning), but if it breaks, I want to know it is my > crappy driver coding, and not the slab alignment. None of them has

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread David Brownell
This one. - Original Message - From: "Tony Hoyle" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 29, 2001 1:11 AM Subject: Re: [linux-usb-devel] [exp patch] uhci.c update > Unfortunately I can't test it as it uses undefined routines > pci_pool_{alloc,free}. Is ther

Re: [linux-usb-devel] Problem with Minds@Work Digital Wallet

2001-03-29 Thread Robert A Crawford
OK, it looks like the USB core is recognizing the device, but I think something's happening when usb-storage tries to initialize: Mar 28 23:02:41 kloognome kernel: hub.c: USB new device connect on bus1/2, assigned device number 2 Mar 28 23:02:41 kloognome kernel: usb.c: USB device 2 (ven

[linux-usb-devel] [patch] Fix acm.c CLOCAL handling

2001-03-29 Thread Vojtech Pavlik
On Thu, Mar 29, 2001 at 04:00:02PM +0800, Richard Shih-Ping Chan wrote: > Hello, this patch is a small fix to acm.c CLOCAL handling. > > It sets the clocal member to unsigned int instead of unsigned > char becase CLOCAL in exceeds the size of 8-bits. > This patch renables the "hangup if not CLO

Re: [linux-usb-devel] Interrupt context question

2001-03-29 Thread Georg Acher
On Fri, Mar 30, 2001 at 06:09:00AM +1000, Brad Hards wrote: > I take it that my interrupt URB completion routine runs in interrupt > context. Correct. > Is is OK to submit any async urb in interrupt context? It is OK and it was supposed to work like that from the beginning. > Is it not OK t

[linux-usb-devel] [Patch] CDC Ethernet model - driver

2001-03-29 Thread Brad Hards
Find enclosed a highly experimental patch for the Communication Device Class Ethernet model. This aspect of CDC is used by some USB cable modems (Ericsson, Broadcom, etc). It might be worth putting in the AC patches, but is definately too unstable to go to Linux just yet. If anyone uses this patch

Re: [linux-usb-devel] Re: Lexar digital film reader

2001-03-29 Thread Jimmie Mayfield
On Wed, Mar 28, 2001 at 08:37:22PM -0500, Dan Eifert wrote: > Does anyone have any information regarding a driver for the Lexar digital > film reader? Afraid you'll have to be more specific. Which Lexar digital film reader? Jimmie -- Jimmie Mayfield http://www.sackheads.org/mayfield

[linux-usb-devel] -EPIPE return from USBDEVFS_REAPURB, Stalled endpoint?

2001-03-29 Thread Benoit PAPILLAULT
Configuration info: kernel 2.4.2 USB Controller: VIA Technologies, Inc. VT82C586B USB (rev 10) usb-uhci & uhci (same result with both modules) I read data from my USB device (ALCATEL ADSL SpeedTouch USB modem) in user space (ok, it's strange, but afterwards, it calls kernel mode functions!) usin

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread Tony Hoyle
Unfortunately I can't test it as it uses undefined routines pci_pool_{alloc,free}. Is there another patch that goes with this one? ___ [EMAIL PROTECTED] To unsubscribe, use the last form field at: http://lists.sourceforge.net/lists/listinfo/linux-usb

Re: [linux-usb-devel] [exp patch] uhci.c update

2001-03-29 Thread Tony Hoyle
Johannes Erdfelt wrote: > I have a new version of my uhci.c patch. Here's the list of changes: > > - Fixed bulk urb queuing! Will this make things work in SMP again? It's a pain having to boot a UP kernel just because app decides to submit an urb... Tony ___

RE: [linux-usb-devel] usb bluetooth code debugging

2001-03-29 Thread Ravi Kumar B S
sorry. forgot to mention that i am working with 2.4.1 kernel. -Original Message- From: Ravi Kumar B S Sent: Thursday, March 29, 2001 2:06 PM To: [EMAIL PROTECTED] Subject: [linux-usb-devel] usb bluetooth code debugging hi all, i am trying to debug the usb bluetooth code. since it runs

[linux-usb-devel] usb bluetooth code debugging

2001-03-29 Thread Ravi Kumar B S
hi all, i am trying to debug the usb bluetooth code. since it runs in the kernel mode, kgdb is necessary. can anybody help me in getting the kgdb kernel patch and the required commands to install and use it. regards, ravi kumar ___ [EMAIL PROTECTED] T