diff options
author | Eric Dumazet <edumazet@google.com> | 2015-10-02 11:43:31 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-10-03 04:32:40 -0700 |
commit | 2feda34192a379f8b35a7c6c5826b2f23e884f32 (patch) | |
tree | e0bf027b018cd71c6da2e5e08b120ce0dca1891e /include/net/inet_connection_sock.h | |
parent | aa3a0c8ce651b5e16124866b0a10d1b90b9ef022 (diff) | |
download | lwn-2feda34192a379f8b35a7c6c5826b2f23e884f32.tar.gz lwn-2feda34192a379f8b35a7c6c5826b2f23e884f32.zip |
tcp/dccp: remove inet_csk_reqsk_queue_added() timeout argument
This is no longer used.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet_connection_sock.h')
-rw-r--r-- | include/net/inet_connection_sock.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/inet_connection_sock.h b/include/net/inet_connection_sock.h index ee54f21a8113..b2e2e30befa9 100644 --- a/include/net/inet_connection_sock.h +++ b/include/net/inet_connection_sock.h @@ -282,8 +282,7 @@ static inline void inet_csk_reqsk_queue_add(struct sock *sk, void inet_csk_reqsk_queue_hash_add(struct sock *sk, struct request_sock *req, unsigned long timeout); -static inline void inet_csk_reqsk_queue_added(struct sock *sk, - const unsigned long timeout) +static inline void inet_csk_reqsk_queue_added(struct sock *sk) { reqsk_queue_added(&inet_csk(sk)->icsk_accept_queue); } |