diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2019-09-11 18:02:39 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-09-21 07:14:02 +0200 |
commit | 18e0093d1028b7f44eeb5a09058908a1310ea575 (patch) | |
tree | f89c35c7d490f44510e01527612c788a3796fe9b /net/sctp | |
parent | cbb4979f32638afb9f41714df42faf385033d480 (diff) | |
download | linux-stable-18e0093d1028b7f44eeb5a09058908a1310ea575.tar.gz linux-stable-18e0093d1028b7f44eeb5a09058908a1310ea575.tar.bz2 linux-stable-18e0093d1028b7f44eeb5a09058908a1310ea575.zip |
sctp: Fix the link time qualifier of 'sctp_ctrlsock_exit()'
[ Upstream commit b456d72412ca8797234449c25815e82f4e1426c0 ]
The '.exit' functions from 'pernet_operations' structure should be marked
as __net_exit, not __net_init.
Fixes: 8e2d61e0aed2 ("sctp: fix race on protocol/netns initialization")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c index d6af93a24aa0..833283c8fe11 100644 --- a/net/sctp/protocol.c +++ b/net/sctp/protocol.c @@ -1336,7 +1336,7 @@ static int __net_init sctp_ctrlsock_init(struct net *net) return status; } -static void __net_init sctp_ctrlsock_exit(struct net *net) +static void __net_exit sctp_ctrlsock_exit(struct net *net) { /* Free the control endpoint. */ inet_ctl_sock_destroy(net->sctp.ctl_sock); |