diff options
author | Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> | 2015-12-04 15:14:05 -0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-12-05 22:23:22 -0500 |
commit | 50a5ffb1ef535e3c6989711c51b5d61b543a3b45 (patch) | |
tree | ad426ebf6b714b6cffa20281d789ef488b812d7c /net/sctp/socket.c | |
parent | 01ce63c90170283a9855d1db4fe81934dddce648 (diff) | |
download | linux-stable-50a5ffb1ef535e3c6989711c51b5d61b543a3b45.tar.gz linux-stable-50a5ffb1ef535e3c6989711c51b5d61b543a3b45.tar.bz2 linux-stable-50a5ffb1ef535e3c6989711c51b5d61b543a3b45.zip |
sctp: also copy sk_tsflags when copying the socket
As we are keeping timestamps on when copying the socket, we also have to
copy sk_tsflags.
This is needed since b9f40e21ef42 ("net-timestamp: move timestamp flags
out of sk_flags").
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/socket.c')
-rw-r--r-- | net/sctp/socket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c index 4c9282bdd067..1a32ecdb8bae 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -7167,6 +7167,7 @@ void sctp_copy_sock(struct sock *newsk, struct sock *sk, newsk->sk_type = sk->sk_type; newsk->sk_bound_dev_if = sk->sk_bound_dev_if; newsk->sk_flags = sk->sk_flags; + newsk->sk_tsflags = sk->sk_tsflags; newsk->sk_no_check_tx = sk->sk_no_check_tx; newsk->sk_no_check_rx = sk->sk_no_check_rx; newsk->sk_reuse = sk->sk_reuse; |