|
@@ -588,13 +588,7 @@ int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
|
|
if (inet_csk_reqsk_queue_is_full(sk))
|
|
if (inet_csk_reqsk_queue_is_full(sk))
|
|
goto drop;
|
|
goto drop;
|
|
|
|
|
|
- /*
|
|
|
|
- * Accept backlog is full. If we have already queued enough
|
|
|
|
- * of warm entries in syn queue, drop request. It is better than
|
|
|
|
- * clogging syn queue with openreqs with exponentially increasing
|
|
|
|
- * timeout.
|
|
|
|
- */
|
|
|
|
- if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
|
|
|
|
|
|
+ if (sk_acceptq_is_full(sk))
|
|
goto drop;
|
|
goto drop;
|
|
|
|
|
|
req = inet_reqsk_alloc(&dccp_request_sock_ops, sk, true);
|
|
req = inet_reqsk_alloc(&dccp_request_sock_ops, sk, true);
|