aboutsummaryrefslogtreecommitdiffstats
path: root/net/xfrm/xfrm_state.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2016-08-09 12:16:09 +0200
committerSteffen Klassert <steffen.klassert@secunet.com>2016-08-10 11:23:24 +0200
commitd737a5805581c6f99dad4caa9fdf80965d617d1a (patch)
tree4a41adb2c5c3ac0ea2816fa8789b828499d8fee4 /net/xfrm/xfrm_state.c
parentxfrm: state: use rcu_deref and assign_pointer helpers (diff)
downloadlinux-dev-d737a5805581c6f99dad4caa9fdf80965d617d1a.tar.xz
linux-dev-d737a5805581c6f99dad4caa9fdf80965d617d1a.zip
xfrm: state: don't use lock anymore unless acquire operation is needed
push the lock down, after earlier patches we can rely on rcu to make sure state struct won't go away. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net/xfrm/xfrm_state.c')
-rw-r--r--net/xfrm/xfrm_state.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
index 53e7867f9254..1a15b658a79e 100644
--- a/net/xfrm/xfrm_state.c
+++ b/net/xfrm/xfrm_state.c
@@ -799,7 +799,7 @@ xfrm_state_find(const xfrm_address_t *daddr, const xfrm_address_t *saddr,
sequence = read_seqcount_begin(&xfrm_state_hash_generation);
- spin_lock_bh(&net->xfrm.xfrm_state_lock);
+ rcu_read_lock();
h = xfrm_dst_hash(net, daddr, saddr, tmpl->reqid, encap_family);
hlist_for_each_entry_rcu(x, net->xfrm.state_bydst + h, bydst) {
if (x->props.family == encap_family &&
@@ -870,6 +870,7 @@ found:
}
if (km_query(x, tmpl, pol) == 0) {
+ spin_lock_bh(&net->xfrm.xfrm_state_lock);
x->km.state = XFRM_STATE_ACQ;
list_add(&x->km.all, &net->xfrm.state_all);
hlist_add_head_rcu(&x->bydst, net->xfrm.state_bydst + h);
@@ -883,6 +884,7 @@ found:
tasklet_hrtimer_start(&x->mtimer, ktime_set(net->xfrm.sysctl_acq_expires, 0), HRTIMER_MODE_REL);
net->xfrm.state_num++;
xfrm_hash_grow_check(net, x->bydst.next != NULL);
+ spin_unlock_bh(&net->xfrm.xfrm_state_lock);
} else {
x->km.state = XFRM_STATE_DEAD;
to_put = x;
@@ -899,7 +901,7 @@ out:
} else {
*err = acquire_in_progress ? -EAGAIN : error;
}
- spin_unlock_bh(&net->xfrm.xfrm_state_lock);
+ rcu_read_unlock();
if (to_put)
xfrm_state_put(to_put);