Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f46c7011 authored by Xin Long's avatar Xin Long Committed by David S. Miller
Browse files

sctp: move rcu_read_lock from __sctp_lookup_association to sctp_lookup_association



__sctp_lookup_association() is only invoked by sctp_v4_err() and
sctp_rcv(), both which run on the rx BH, and it has been protected
by rcu_read_lock [see ip_local_deliver_finish() / ipv6_rcv()].

So we can move it to sctp_lookup_association, only let
sctp_lookup_association use rcu_read_lock.

Signed-off-by: default avatarXin Long <lucien.xin@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bd4508e8
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -937,7 +937,6 @@ static struct sctp_association *__sctp_lookup_association(
	struct sctp_transport *t;
	struct sctp_transport *t;
	struct sctp_association *asoc = NULL;
	struct sctp_association *asoc = NULL;


	rcu_read_lock();
	t = sctp_addrs_lookup_transport(net, local, peer);
	t = sctp_addrs_lookup_transport(net, local, peer);
	if (!t || !sctp_transport_hold(t))
	if (!t || !sctp_transport_hold(t))
		goto out;
		goto out;
@@ -949,7 +948,6 @@ static struct sctp_association *__sctp_lookup_association(
	sctp_transport_put(t);
	sctp_transport_put(t);


out:
out:
	rcu_read_unlock();
	return asoc;
	return asoc;
}
}


@@ -962,7 +960,9 @@ struct sctp_association *sctp_lookup_association(struct net *net,
{
{
	struct sctp_association *asoc;
	struct sctp_association *asoc;


	rcu_read_lock();
	asoc = __sctp_lookup_association(net, laddr, paddr, transportp);
	asoc = __sctp_lookup_association(net, laddr, paddr, transportp);
	rcu_read_unlock();


	return asoc;
	return asoc;
}
}