Skip to content
Snippets Groups Projects
Commit f37f0afb authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

[SOCK] sk_stamp: should be initialized to ktime_set(-1L, 0)


Problem spotted by Andrew Brampton

Signed-off-by: default avatarEric Dumazet <dada1@cosmosbay.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e01bf1c8
No related branches found
No related tags found
No related merge requests found
......@@ -1725,7 +1725,7 @@ void sock_init_data(struct socket *sock, struct sock *sk)
sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
sk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
sk->sk_stamp = ktime_set(-1L, -1L);
sk->sk_stamp = ktime_set(-1L, 0);
atomic_set(&sk->sk_refcnt, 1);
atomic_set(&sk->sk_drops, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment