aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@ghostprotocols.net>2005-06-19 01:47:21 -0400
committerDavid S. Miller <davem@davemloft.net>2005-06-19 01:47:21 -0400
commit60236fdd08b2169045a3bbfc5ffe1576e6c3c17b (patch)
tree4541c682cc72daf560ec516e2b5868089a88b6ea /net/ipv4/tcp.c
parent2e6599cb899ba4b133f42cbf9d2b1883d2dc583a (diff)
[NET] Rename open_request to request_sock
Ok, this one just renames some stuff to have a better namespace and to dissassociate it from TCP: struct open_request -> struct request_sock tcp_openreq_alloc -> reqsk_alloc tcp_openreq_free -> reqsk_free tcp_openreq_fastfree -> __reqsk_free With this most of the infrastructure closely resembles a struct sock methods subset. Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp.c')
-rw-r--r--net/ipv4/tcp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
index a3cabfa2022a..1c29feb6b35f 100644
--- a/net/ipv4/tcp.c
+++ b/net/ipv4/tcp.c
@@ -516,8 +516,8 @@ static void tcp_listen_stop (struct sock *sk)
516{ 516{
517 struct tcp_sock *tp = tcp_sk(sk); 517 struct tcp_sock *tp = tcp_sk(sk);
518 struct tcp_listen_opt *lopt = tp->listen_opt; 518 struct tcp_listen_opt *lopt = tp->listen_opt;
519 struct open_request *acc_req = tp->accept_queue; 519 struct request_sock *acc_req = tp->accept_queue;
520 struct open_request *req; 520 struct request_sock *req;
521 int i; 521 int i;
522 522
523 tcp_delete_keepalive_timer(sk); 523 tcp_delete_keepalive_timer(sk);
@@ -533,7 +533,7 @@ static void tcp_listen_stop (struct sock *sk)
533 while ((req = lopt->syn_table[i]) != NULL) { 533 while ((req = lopt->syn_table[i]) != NULL) {
534 lopt->syn_table[i] = req->dl_next; 534 lopt->syn_table[i] = req->dl_next;
535 lopt->qlen--; 535 lopt->qlen--;
536 tcp_openreq_free(req); 536 reqsk_free(req);
537 537
538 /* Following specs, it would be better either to send FIN 538 /* Following specs, it would be better either to send FIN
539 * (and enter FIN-WAIT-1, it is normal close) 539 * (and enter FIN-WAIT-1, it is normal close)
@@ -573,7 +573,7 @@ static void tcp_listen_stop (struct sock *sk)
573 sock_put(child); 573 sock_put(child);
574 574
575 sk_acceptq_removed(sk); 575 sk_acceptq_removed(sk);
576 tcp_openreq_fastfree(req); 576 __reqsk_free(req);
577 } 577 }
578 BUG_TRAP(!sk->sk_ack_backlog); 578 BUG_TRAP(!sk->sk_ack_backlog);
579} 579}
@@ -1894,7 +1894,7 @@ static int wait_for_connect(struct sock *sk, long timeo)
1894struct sock *tcp_accept(struct sock *sk, int flags, int *err) 1894struct sock *tcp_accept(struct sock *sk, int flags, int *err)
1895{ 1895{
1896 struct tcp_sock *tp = tcp_sk(sk); 1896 struct tcp_sock *tp = tcp_sk(sk);
1897 struct open_request *req; 1897 struct request_sock *req;
1898 struct sock *newsk; 1898 struct sock *newsk;
1899 int error; 1899 int error;
1900 1900
@@ -1927,7 +1927,7 @@ struct sock *tcp_accept(struct sock *sk, int flags, int *err)
1927 1927
1928 newsk = req->sk; 1928 newsk = req->sk;
1929 sk_acceptq_removed(sk); 1929 sk_acceptq_removed(sk);
1930 tcp_openreq_fastfree(req); 1930 __reqsk_free(req);
1931 BUG_TRAP(newsk->sk_state != TCP_SYN_RECV); 1931 BUG_TRAP(newsk->sk_state != TCP_SYN_RECV);
1932 release_sock(sk); 1932 release_sock(sk);
1933 return newsk; 1933 return newsk;