lkml.org 
[lkml]   [2003]   [Apr]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
SubjectRe: [PATCH] More USB fixes for 2.5.67
From
Date
ChangeSet 1.1056, 2003/04/14 10:17:46-07:00, greg@kroah.com

[PATCH] USB: fix up spin_unlock_irqrestore() issues in previous patch


diff -Nru a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c
--- a/drivers/usb/core/hcd.c Wed Apr 16 10:49:33 2003
+++ b/drivers/usb/core/hcd.c Wed Apr 16 10:49:33 2003
@@ -1283,13 +1283,13 @@
if (urb->status != -EINPROGRESS)
continue;
usb_get_urb (urb);
- spin_unlock (&hcd_data_lock);
+ spin_unlock_irqrestore (&hcd_data_lock, flags);

- spin_lock (&urb->lock);
+ spin_lock_irqsave (&urb->lock, flags);
tmp = urb->status;
if (tmp == -EINPROGRESS)
urb->status = -ESHUTDOWN;
- spin_unlock (&urb->lock);
+ spin_unlock_irqrestore (&urb->lock, flags);

/* kick hcd unless it's already returning this */
if (tmp == -EINPROGRESS) {
-
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/

\
 
 \ /
  Last update: 2005-03-22 13:34    [W:0.038 / U:0.452 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site