Re: [patch] usb-skeleton leaking locks on open.

Previous thread: MAX_LOCKDEP_SUBCLASSES too low in 2.6.23-rc7-mm1 by Mathieu Desnoyers on Monday, September 24, 2007 - 12:03 pm. (3 messages)

Next thread: [PATCH 0/5] Fair group scheduler - various fixes by Srivatsa Vaddagiri on Monday, September 24, 2007 - 12:33 pm. (16 messages)
To: lkml <linux-kernel@...>, usbdev <linux-usb-devel@...>
Date: Monday, September 24, 2007 - 12:18 pm

This weekend I was hacking around with a trivial USB driver for talking
to the boot load firmware of a USB Bit Whacker. It's running the
MicroChip Pic18 boot loader firmware and I'm putting together a flash
program for writing new FW to the thing.

Anyway in my use of the usb-skeleton.c as my starting point I discovered
my test program was getting hung up after attempting to write a buffer.
The application and driver where hung in a way that required me to
reboot to get it to clean up so I could try again.

It turned out the code path through skel_open can grap the driver's
io_mutex lock and forget to release it.

The following patch fixes the problem for me.

--mgross

Signed-off-by: Mark Gross <mgross@linux.intel.com>

diff -urN -X linux-2.6.23-rc7/Documentation/dontdiff linux-2.6.23-rc7/drivers/usb/usb-skeleton.c linux-2.6.23-rc7-bugfix/drivers/usb/usb-skeleton.c
--- linux-2.6.23-rc7/drivers/usb/usb-skeleton.c 2007-09-24 08:57:54.000000000 -0700
+++ linux-2.6.23-rc7-bugfix/drivers/usb/usb-skeleton.c 2007-09-24 09:01:43.000000000 -0700
@@ -125,6 +125,7 @@

/* save our object in the file's private structure */
file->private_data = dev;
+ mutex_unlock(&dev->io_mutex);

exit:
return retval;
-

To: lkml <linux-kernel@...>, usbdev <linux-usb-devel@...>
Date: Monday, September 24, 2007 - 12:26 pm

forgot to CC greg ...

-

Previous thread: MAX_LOCKDEP_SUBCLASSES too low in 2.6.23-rc7-mm1 by Mathieu Desnoyers on Monday, September 24, 2007 - 12:03 pm. (3 messages)

Next thread: [PATCH 0/5] Fair group scheduler - various fixes by Srivatsa Vaddagiri on Monday, September 24, 2007 - 12:33 pm. (16 messages)