diff options
author | Ian Campbell <Ian.Campbell@citrix.com> | 2011-03-14 05:50:39 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-03-14 10:53:02 -0400 |
commit | a7b807ce8c86925eef92fe6aa79cea4ac7f097c4 (patch) | |
tree | 73123e401a3382480eb25fce79c97dba1b2d7cbb /drivers | |
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 <ian.campbell@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers')
-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 3566c00e1e3..dc8177950d0 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c | |||
@@ -752,7 +752,7 @@ int xen_irq_from_pirq(unsigned pirq) | |||
752 | } | 752 | } |
753 | irq = -1; | 753 | irq = -1; |
754 | out: | 754 | out: |
755 | spin_lock(&irq_mapping_update_lock); | 755 | spin_unlock(&irq_mapping_update_lock); |
756 | 756 | ||
757 | return irq; | 757 | return irq; |
758 | } | 758 | } |