ChangeSet 1.2009.3.2, 2004/10/04 14:34:36-07:00, [EMAIL PROTECTED]

[PATCH] USB: fix oops with latest ub driver in -mm tree

On Fri, 1 Oct 2004 11:39:17 -0700
Greg KH <[EMAIL PROTECTED]> wrote:

> Pete, any ideas?  Oh, it also happens on my UP laptop.
>[...]
> kernel BUG at kernel/timer.c:413!

I have a suspicion. Actually, it was pointed to me by a kind soul before,
but I forgot who he was, unfortunately. I'm not sure if this is the
problem, but please try it if you can. It should apply on top of "latest".
I really hate that word, but in this case I haven't got a version number.

Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>


 drivers/block/ub.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


diff -Nru a/drivers/block/ub.c b/drivers/block/ub.c
--- a/drivers/block/ub.c        2004-10-19 08:07:03 -07:00
+++ b/drivers/block/ub.c        2004-10-19 08:07:03 -07:00
@@ -842,7 +842,6 @@
 {
        struct ub_dev *sc = urb->context;
 
-       del_timer(&sc->work_timer);
        ub_complete(&sc->work_done);
        tasklet_schedule(&sc->tasklet);
 }
@@ -853,6 +852,7 @@
        unsigned long flags;
 
        spin_lock_irqsave(&sc->lock, flags);
+       del_timer(&sc->work_timer);
        ub_scsi_dispatch(sc);
        spin_unlock_irqrestore(&sc->lock, flags);
 }



-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to