diff options
author | Ian Campbell <[email protected]> | 2011-03-14 09:50:39 +0000 |
---|---|---|
committer | Konrad Rzeszutek Wilk <[email protected]> | 2011-03-14 10:53:02 -0400 |
commit | a7b807ce8c86925eef92fe6aa79cea4ac7f097c4 (patch) | |
tree | 73123e401a3382480eb25fce79c97dba1b2d7cbb | |
parent | 7bee976822a78bbb278790c2cd64293568592cdb (diff) |
xen: events: correct locking in xen_irq_from_pirq
One of those spin_lock() calls should be an unlock...
Signed-off-by: Ian Campbell <[email protected]>
Signed-off-by: Konrad Rzeszutek Wilk <[email protected]>
-rw-r--r-- | drivers/xen/events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index 3566c00e1e3d..dc8177950d05 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -752,7 +752,7 @@ int xen_irq_from_pirq(unsigned pirq) } irq = -1; out: - spin_lock(&irq_mapping_update_lock); + spin_unlock(&irq_mapping_update_lock); return irq; } |