Searched refs:lopt (Results 1 - 6 of 6) sorted by relevance

/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/
H A Dtcp_timer.c450 struct tcp_listen_opt *lopt = tp->listen_opt; local
457 if (lopt == NULL || lopt->qlen == 0)
477 if (lopt->qlen>>(lopt->max_qlen_log-1)) {
478 int young = (lopt->qlen_young<<1);
481 if (lopt->qlen < young)
492 i = lopt->clock_hand;
495 reqp=&lopt->syn_table[i];
504 lopt
[all...]
H A Dtcp.c529 struct tcp_listen_opt *lopt; local
537 lopt = kmalloc(sizeof(struct tcp_listen_opt), GFP_KERNEL);
538 if (!lopt)
541 memset(lopt, 0, sizeof(struct tcp_listen_opt));
542 for (lopt->max_qlen_log = 6; ; lopt->max_qlen_log++)
543 if ((1<<lopt->max_qlen_log) >= sysctl_max_syn_backlog)
547 tp->listen_opt = lopt;
569 kfree(lopt);
581 struct tcp_listen_opt *lopt local
[all...]
H A Dtcp_ipv4.c873 struct tcp_listen_opt *lopt = tp->listen_opt; local
876 for (prev = &lopt->syn_table[tcp_v4_synq_hash(raddr, rport)];
895 struct tcp_listen_opt *lopt = tp->listen_opt; local
901 req->dl_next = lopt->syn_table[h];
904 lopt->syn_table[h] = req;
2171 struct tcp_listen_opt *lopt; local
2195 lopt = tp->listen_opt;
2196 if (lopt && lopt->qlen != 0) {
2198 for (req = lopt
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Dtcp.h1593 struct tcp_listen_opt *lopt = sk->tp_pinfo.af_tcp.listen_opt; local
1595 if (--lopt->qlen == 0)
1598 lopt->qlen_young--;
1603 struct tcp_listen_opt *lopt = sk->tp_pinfo.af_tcp.listen_opt; local
1605 if (lopt->qlen++ == 0)
1607 lopt->qlen_young++;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Dtcp.h1594 struct tcp_listen_opt *lopt = sk->tp_pinfo.af_tcp.listen_opt; local
1596 if (--lopt->qlen == 0)
1599 lopt->qlen_young--;
1604 struct tcp_listen_opt *lopt = sk->tp_pinfo.af_tcp.listen_opt; local
1606 if (lopt->qlen++ == 0)
1608 lopt->qlen_young++;
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv6/
H A Dtcp_ipv6.c375 struct tcp_listen_opt *lopt = tp->listen_opt; local
378 for (prev = &lopt->syn_table[tcp_v6_synq_hash(raddr, rport)];
1118 struct tcp_listen_opt *lopt = tp->listen_opt; local
1124 req->dl_next = lopt->syn_table[h];
1127 lopt->syn_table[h] = req;
1992 struct tcp_listen_opt *lopt; local
2014 lopt = tp->listen_opt;
2015 if (lopt && lopt->qlen != 0) {
2017 for (req = lopt
[all...]

Completed in 75 milliseconds