aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/tcp_ipv4.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
index 499d440539ad..845c39de97ab 100644
--- a/net/ipv4/tcp_ipv4.c
+++ b/net/ipv4/tcp_ipv4.c
@@ -1277,6 +1277,7 @@ static const struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = {
1277 .route_req = tcp_v4_route_req, 1277 .route_req = tcp_v4_route_req,
1278 .init_seq = tcp_v4_init_sequence, 1278 .init_seq = tcp_v4_init_sequence,
1279 .send_synack = tcp_v4_send_synack, 1279 .send_synack = tcp_v4_send_synack,
1280 .queue_hash_add = inet_csk_reqsk_queue_hash_add,
1280}; 1281};
1281 1282
1282int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb) 1283int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
@@ -1403,7 +1404,7 @@ int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
1403 goto drop_and_free; 1404 goto drop_and_free;
1404 1405
1405 tcp_rsk(req)->listener = NULL; 1406 tcp_rsk(req)->listener = NULL;
1406 inet_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT); 1407 af_ops->queue_hash_add(sk, req, TCP_TIMEOUT_INIT);
1407 } 1408 }
1408 1409
1409 return 0; 1410 return 0;