tcp/dccp: add inet_csk_reqsk_queue_drop_and_put() helper
Let's reduce the confusion about inet_csk_reqsk_queue_drop() :
In many cases we also need to release reference on request socket,
so add a helper to do this, reducing code size and complexity.
Fixes: 4bdc3d6614 ("tcp/dccp: fix behavior of stale SYN_RECV request sockets")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
ef84d8ce5a
commit
f03f2e154f
@@ -546,6 +546,13 @@ void inet_csk_reqsk_queue_drop(struct sock *sk, struct request_sock *req)
|
||||
}
|
||||
EXPORT_SYMBOL(inet_csk_reqsk_queue_drop);
|
||||
|
||||
void inet_csk_reqsk_queue_drop_and_put(struct sock *sk, struct request_sock *req)
|
||||
{
|
||||
inet_csk_reqsk_queue_drop(sk, req);
|
||||
reqsk_put(req);
|
||||
}
|
||||
EXPORT_SYMBOL(inet_csk_reqsk_queue_drop_and_put);
|
||||
|
||||
static void reqsk_timer_handler(unsigned long data)
|
||||
{
|
||||
struct request_sock *req = (struct request_sock *)data;
|
||||
@@ -608,8 +615,7 @@ static void reqsk_timer_handler(unsigned long data)
|
||||
return;
|
||||
}
|
||||
drop:
|
||||
inet_csk_reqsk_queue_drop(sk_listener, req);
|
||||
reqsk_put(req);
|
||||
inet_csk_reqsk_queue_drop_and_put(sk_listener, req);
|
||||
}
|
||||
|
||||
static void reqsk_queue_hash_req(struct request_sock *req,
|
||||
|
||||
Reference in New Issue
Block a user