projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f681bf
)
[USBSTOR]
author
Cameron Gutman
<aicommander@gmail.com>
Tue, 24 Jan 2012 21:33:51 +0000
(21:33 +0000)
committer
Cameron Gutman
<aicommander@gmail.com>
Tue, 24 Jan 2012 21:33:51 +0000
(21:33 +0000)
- Release the spinlock before returning (accidentally removed)
svn path=/branches/usb-bringup-trunk/; revision=55152
drivers/usb/usbstor/queue.c
patch
|
blob
|
history
diff --git
a/drivers/usb/usbstor/queue.c
b/drivers/usb/usbstor/queue.c
index
9d42e9f
..
edc45ca
100644
(file)
--- a/
drivers/usb/usbstor/queue.c
+++ b/
drivers/usb/usbstor/queue.c
@@
-365,6
+365,11
@@
USBSTOR_QueueFlushIrps(
//
KeAcquireSpinLock(&FDODeviceExtension->IrpListLock, &OldLevel);
}
+
+ //
+ // release lock
+ //
+ KeReleaseSpinLock(&FDODeviceExtension->IrpListLock, OldLevel);
}
VOID