]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: sctp_transport_lookup_process should rcu_read_unlock when transport is null
authorXin Long <lucien.xin@gmail.com>
Thu, 15 Dec 2016 15:05:52 +0000 (23:05 +0800)
committerDavid S. Miller <davem@davemloft.net>
Sat, 17 Dec 2016 16:43:23 +0000 (11:43 -0500)
commitafcf25d401bb55647cca5ec319f5a711ee0efd46
tree332e55af950dbf914c4fcac02936da59eb9be94b
parent657b08b048527ee94161016c180e692ea85d96a3
sctp: sctp_transport_lookup_process should rcu_read_unlock when transport is null

Prior to this patch, sctp_transport_lookup_process didn't rcu_read_unlock
when it failed to find a transport by sctp_addrs_lookup_transport.

This patch is to fix it by moving up rcu_read_unlock right before checking
transport and also to remove the out path.

Fixes: f659765ec7bb ("sctp: fix the issue sctp_diag uses lock_sock in rcu_read_lock")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/socket.c