提交 cea9ea67 编写于 作者: H Hoang-Nam Nguyen 提交者: Roland Dreier

IB/ehca: Fix mismatched spin_unlock in irq handler

The lock is taken with _irqsave and hence must be released with
_irqrestore on all paths.

Signed-off-by Hoang-Nam Nguyen <hnguyen@de.ibm.com>
Signed-off-by: NRoland Dreier <rolandd@cisco.com>
上级 ce29d72c
...@@ -440,7 +440,8 @@ void ehca_tasklet_eq(unsigned long data) ...@@ -440,7 +440,8 @@ void ehca_tasklet_eq(unsigned long data)
cq = idr_find(&ehca_cq_idr, token); cq = idr_find(&ehca_cq_idr, token);
if (cq == NULL) { if (cq == NULL) {
spin_unlock(&ehca_cq_idr_lock); spin_unlock_irqrestore(&ehca_cq_idr_lock,
flags);
break; break;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册