tcp: unify tcp_v4_rtx_synack and tcp_v6_rtx_synack
Signed-off-by: Octavian Purdila <octavian.purdila@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d6274bd8d6
commit
5db92c9949
@ -1573,6 +1573,8 @@ int tcp4_proc_init(void);
|
|||||||
void tcp4_proc_exit(void);
|
void tcp4_proc_exit(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
int tcp_rtx_synack(struct sock *sk, struct request_sock *req);
|
||||||
|
|
||||||
/* TCP af-specific functions */
|
/* TCP af-specific functions */
|
||||||
struct tcp_sock_af_ops {
|
struct tcp_sock_af_ops {
|
||||||
#ifdef CONFIG_TCP_MD5SIG
|
#ifdef CONFIG_TCP_MD5SIG
|
||||||
|
@ -845,18 +845,6 @@ static int tcp_v4_send_synack(struct sock *sk, struct dst_entry *dst,
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tcp_v4_rtx_synack(struct sock *sk, struct request_sock *req)
|
|
||||||
{
|
|
||||||
const struct tcp_request_sock_ops *af_ops = tcp_rsk(req)->af_specific;
|
|
||||||
int res = af_ops->send_synack(sk, NULL, NULL, req, 0, NULL);
|
|
||||||
|
|
||||||
if (!res) {
|
|
||||||
TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_RETRANSSEGS);
|
|
||||||
NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_TCPSYNRETRANS);
|
|
||||||
}
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* IPv4 request_sock destructor.
|
* IPv4 request_sock destructor.
|
||||||
*/
|
*/
|
||||||
@ -1269,7 +1257,7 @@ static struct dst_entry *tcp_v4_route_req(struct sock *sk, struct flowi *fl,
|
|||||||
struct request_sock_ops tcp_request_sock_ops __read_mostly = {
|
struct request_sock_ops tcp_request_sock_ops __read_mostly = {
|
||||||
.family = PF_INET,
|
.family = PF_INET,
|
||||||
.obj_size = sizeof(struct tcp_request_sock),
|
.obj_size = sizeof(struct tcp_request_sock),
|
||||||
.rtx_syn_ack = tcp_v4_rtx_synack,
|
.rtx_syn_ack = tcp_rtx_synack,
|
||||||
.send_ack = tcp_v4_reqsk_send_ack,
|
.send_ack = tcp_v4_reqsk_send_ack,
|
||||||
.destructor = tcp_v4_reqsk_destructor,
|
.destructor = tcp_v4_reqsk_destructor,
|
||||||
.send_reset = tcp_v4_send_reset,
|
.send_reset = tcp_v4_send_reset,
|
||||||
|
@ -3299,3 +3299,18 @@ void tcp_send_probe0(struct sock *sk)
|
|||||||
TCP_RTO_MAX);
|
TCP_RTO_MAX);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int tcp_rtx_synack(struct sock *sk, struct request_sock *req)
|
||||||
|
{
|
||||||
|
const struct tcp_request_sock_ops *af_ops = tcp_rsk(req)->af_specific;
|
||||||
|
struct flowi fl;
|
||||||
|
int res;
|
||||||
|
|
||||||
|
res = af_ops->send_synack(sk, NULL, &fl, req, 0, NULL);
|
||||||
|
if (!res) {
|
||||||
|
TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_RETRANSSEGS);
|
||||||
|
NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_TCPSYNRETRANS);
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(tcp_rtx_synack);
|
||||||
|
@ -506,19 +506,6 @@ done:
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tcp_v6_rtx_synack(struct sock *sk, struct request_sock *req)
|
|
||||||
{
|
|
||||||
const struct tcp_request_sock_ops *af_ops = tcp_rsk(req)->af_specific;
|
|
||||||
struct flowi fl;
|
|
||||||
int res;
|
|
||||||
|
|
||||||
res = af_ops->send_synack(sk, NULL, &fl, req, 0, NULL);
|
|
||||||
if (!res) {
|
|
||||||
TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_RETRANSSEGS);
|
|
||||||
NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_TCPSYNRETRANS);
|
|
||||||
}
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void tcp_v6_reqsk_destructor(struct request_sock *req)
|
static void tcp_v6_reqsk_destructor(struct request_sock *req)
|
||||||
{
|
{
|
||||||
@ -759,7 +746,7 @@ static struct dst_entry *tcp_v6_route_req(struct sock *sk, struct flowi *fl,
|
|||||||
struct request_sock_ops tcp6_request_sock_ops __read_mostly = {
|
struct request_sock_ops tcp6_request_sock_ops __read_mostly = {
|
||||||
.family = AF_INET6,
|
.family = AF_INET6,
|
||||||
.obj_size = sizeof(struct tcp6_request_sock),
|
.obj_size = sizeof(struct tcp6_request_sock),
|
||||||
.rtx_syn_ack = tcp_v6_rtx_synack,
|
.rtx_syn_ack = tcp_rtx_synack,
|
||||||
.send_ack = tcp_v6_reqsk_send_ack,
|
.send_ack = tcp_v6_reqsk_send_ack,
|
||||||
.destructor = tcp_v6_reqsk_destructor,
|
.destructor = tcp_v6_reqsk_destructor,
|
||||||
.send_reset = tcp_v6_send_reset,
|
.send_reset = tcp_v6_send_reset,
|
||||||
|
Loading…
Reference in New Issue
Block a user