Commit 2feda341 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

tcp/dccp: remove inet_csk_reqsk_queue_added() timeout argument

This is no longer used.
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent aa3a0c8c
...@@ -282,8 +282,7 @@ static inline void inet_csk_reqsk_queue_add(struct sock *sk, ...@@ -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, void inet_csk_reqsk_queue_hash_add(struct sock *sk, struct request_sock *req,
unsigned long timeout); unsigned long timeout);
static inline void inet_csk_reqsk_queue_added(struct sock *sk, static inline void inet_csk_reqsk_queue_added(struct sock *sk)
const unsigned long timeout)
{ {
reqsk_queue_added(&inet_csk(sk)->icsk_accept_queue); reqsk_queue_added(&inet_csk(sk)->icsk_accept_queue);
} }
......
...@@ -531,7 +531,7 @@ void inet_csk_reqsk_queue_hash_add(struct sock *sk, struct request_sock *req, ...@@ -531,7 +531,7 @@ void inet_csk_reqsk_queue_hash_add(struct sock *sk, struct request_sock *req,
lopt->hash_rnd, lopt->nr_table_entries); lopt->hash_rnd, lopt->nr_table_entries);
reqsk_queue_hash_req(&icsk->icsk_accept_queue, h, req, timeout); reqsk_queue_hash_req(&icsk->icsk_accept_queue, h, req, timeout);
inet_csk_reqsk_queue_added(sk, timeout); inet_csk_reqsk_queue_added(sk);
} }
EXPORT_SYMBOL_GPL(inet_csk_reqsk_queue_hash_add); EXPORT_SYMBOL_GPL(inet_csk_reqsk_queue_hash_add);
......
...@@ -157,7 +157,7 @@ void inet6_csk_reqsk_queue_hash_add(struct sock *sk, ...@@ -157,7 +157,7 @@ void inet6_csk_reqsk_queue_hash_add(struct sock *sk,
lopt->hash_rnd, lopt->nr_table_entries); lopt->hash_rnd, lopt->nr_table_entries);
reqsk_queue_hash_req(&icsk->icsk_accept_queue, h, req, timeout); reqsk_queue_hash_req(&icsk->icsk_accept_queue, h, req, timeout);
inet_csk_reqsk_queue_added(sk, timeout); inet_csk_reqsk_queue_added(sk);
} }
EXPORT_SYMBOL_GPL(inet6_csk_reqsk_queue_hash_add); EXPORT_SYMBOL_GPL(inet6_csk_reqsk_queue_hash_add);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment