BKL in tiglusb release function

From: Dave Hansen (haveblue@us.ibm.com)
Date: Thu Apr 04 2002 - 19:38:23 EST


Is there a reason for the BKL to be used in tiglusb_release()? Are you
worried about a race between open and release, or were you just
following examples from other code?

I'm sure we can remove it safely. We might need another lock, but it
won't be much.

-- 
Dave Hansen
haveblue@us.ibm.com

--- linux-2.5.8-pre1-clean/drivers/usb/tiglusb.c Thu Apr 4 08:58:26 2002 +++ linux/drivers/usb/tiglusb.c Thu Apr 4 16:29:31 2002 @@ -128,7 +128,6 @@ { ptiglusb_t s = (ptiglusb_t) file->private_data; - lock_kernel (); down (&s->mutex); s->state = _stopped; up (&s->mutex); @@ -139,7 +138,6 @@ wake_up (&s->remove_ok); s->opened = 0; - unlock_kernel (); return 0; }

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sun Apr 07 2002 - 22:00:15 EST