diff options
author | William Allen Simpson <william.allen.simpson@gmail.com> | 2009-12-02 13:07:39 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-03 01:07:23 -0500 |
commit | e6b4d11367519bc71729c09d05a126b133c755be (patch) | |
tree | b5d99b115a6ca9564d367b243a826d8b09da237e /net/ipv4/inet_connection_sock.c | |
parent | e00484023ebe94dce03fdd1270edf3e191c2bc79 (diff) |
TCPCT part 1a: add request_values parameter for sending SYNACK
Add optional function parameters associated with sending SYNACK.
These parameters are not needed after sending SYNACK, and are not
used for retransmission. Avoids extending struct tcp_request_sock,
and avoids allocating kernel memory.
Also affects DCCP as it uses common struct request_sock_ops,
but this parameter is currently reserved for future use.
Signed-off-by: William.Allen.Simpson@gmail.com
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_connection_sock.c')
-rw-r--r-- | net/ipv4/inet_connection_sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index 9b35c56d1023..ee16475f8fc3 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c | |||
@@ -531,7 +531,7 @@ void inet_csk_reqsk_queue_prune(struct sock *parent, | |||
531 | &expire, &resend); | 531 | &expire, &resend); |
532 | if (!expire && | 532 | if (!expire && |
533 | (!resend || | 533 | (!resend || |
534 | !req->rsk_ops->rtx_syn_ack(parent, req) || | 534 | !req->rsk_ops->rtx_syn_ack(parent, req, NULL) || |
535 | inet_rsk(req)->acked)) { | 535 | inet_rsk(req)->acked)) { |
536 | unsigned long timeo; | 536 | unsigned long timeo; |
537 | 537 | ||