提交 46c0ef6e 编写于 作者: T Taehee Yoo 提交者: Steffen Klassert

xfrm: fix rcu_read_unlock usage in xfrm_local_error

In the xfrm_local_error, rcu_read_unlock should be called when afinfo
is not NULL. because xfrm_state_get_afinfo calls rcu_read_unlock
if afinfo is NULL.

Fixes: af5d27c4 ("xfrm: remove xfrm_state_put_afinfo")
Signed-off-by: NTaehee Yoo <ap420073@gmail.com>
Signed-off-by: NSteffen Klassert <steffen.klassert@secunet.com>
上级 51d4740f
...@@ -285,8 +285,9 @@ void xfrm_local_error(struct sk_buff *skb, int mtu) ...@@ -285,8 +285,9 @@ void xfrm_local_error(struct sk_buff *skb, int mtu)
return; return;
afinfo = xfrm_state_get_afinfo(proto); afinfo = xfrm_state_get_afinfo(proto);
if (afinfo) if (afinfo) {
afinfo->local_error(skb, mtu); afinfo->local_error(skb, mtu);
rcu_read_unlock(); rcu_read_unlock();
}
} }
EXPORT_SYMBOL_GPL(xfrm_local_error); EXPORT_SYMBOL_GPL(xfrm_local_error);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册