Home
last modified time | relevance | path

Searched refs:timeouts (Results 1 – 25 of 62) sorted by relevance

123

/Linux-v4.19/net/netfilter/
Dnf_conntrack_proto_udp.c42 return udp_pernet(net)->timeouts; in udp_get_timeouts()
51 unsigned int *timeouts; in udp_packet() local
53 timeouts = nf_ct_timeout_lookup(ct); in udp_packet()
54 if (!timeouts) in udp_packet()
55 timeouts = udp_get_timeouts(nf_ct_net(ct)); in udp_packet()
61 timeouts[UDP_CT_REPLIED]); in udp_packet()
67 timeouts[UDP_CT_UNREPLIED]); in udp_packet()
182 unsigned int *timeouts = data; in udp_timeout_nlattr_to_obj() local
185 if (!timeouts) in udp_timeout_nlattr_to_obj()
186 timeouts = un->timeouts; in udp_timeout_nlattr_to_obj()
[all …]
Dnf_conntrack_proto_tcp.c782 unsigned int index, *timeouts; in tcp_packet() local
1019 timeouts = nf_ct_timeout_lookup(ct); in tcp_packet()
1020 if (!timeouts) in tcp_packet()
1021 timeouts = tn->timeouts; in tcp_packet()
1024 timeouts[new_state] > timeouts[TCP_CONNTRACK_RETRANS]) in tcp_packet()
1025 timeout = timeouts[TCP_CONNTRACK_RETRANS]; in tcp_packet()
1028 timeouts[new_state] > timeouts[TCP_CONNTRACK_UNACK]) in tcp_packet()
1029 timeout = timeouts[TCP_CONNTRACK_UNACK]; in tcp_packet()
1031 timeouts[new_state] > timeouts[TCP_CONNTRACK_RETRANS]) in tcp_packet()
1032 timeout = timeouts[TCP_CONNTRACK_RETRANS]; in tcp_packet()
[all …]
Dnf_conntrack_proto_gre.c259 unsigned int *timeouts = nf_ct_timeout_lookup(ct); in gre_new() local
261 if (!timeouts) in gre_new()
262 timeouts = gre_get_timeouts(nf_ct_net(ct)); in gre_new()
269 ct->proto.gre.stream_timeout = timeouts[GRE_CT_REPLIED]; in gre_new()
270 ct->proto.gre.timeout = timeouts[GRE_CT_UNREPLIED]; in gre_new()
296 unsigned int *timeouts = data; in gre_timeout_nlattr_to_obj() local
299 if (!timeouts) in gre_timeout_nlattr_to_obj()
300 timeouts = gre_get_timeouts(net); in gre_timeout_nlattr_to_obj()
302 timeouts[GRE_CT_UNREPLIED] = net_gre->gre_timeouts[GRE_CT_UNREPLIED]; in gre_timeout_nlattr_to_obj()
303 timeouts[GRE_CT_REPLIED] = net_gre->gre_timeouts[GRE_CT_REPLIED]; in gre_timeout_nlattr_to_obj()
[all …]
Dnf_conntrack_proto_sctp.c289 unsigned int *timeouts; in sctp_packet() local
378 timeouts = nf_ct_timeout_lookup(ct); in sctp_packet()
379 if (!timeouts) in sctp_packet()
380 timeouts = sctp_pernet(nf_ct_net(ct))->timeouts; in sctp_packet()
382 nf_ct_refresh_acct(ct, ctinfo, skb, timeouts[new_state]); in sctp_packet()
602 unsigned int *timeouts = data; in sctp_timeout_nlattr_to_obj() local
608 timeouts[i] = sn->timeouts[i]; in sctp_timeout_nlattr_to_obj()
613 timeouts[i] = ntohl(nla_get_be32(tb[i])) * HZ; in sctp_timeout_nlattr_to_obj()
617 timeouts[CTA_TIMEOUT_SCTP_UNSPEC] = timeouts[CTA_TIMEOUT_SCTP_CLOSED]; in sctp_timeout_nlattr_to_obj()
624 const unsigned int *timeouts = data; in sctp_timeout_obj_to_nlattr() local
[all …]
Dnf_conntrack_proto_dccp.c448 unsigned int *timeouts; in dccp_packet() local
522 timeouts = nf_ct_timeout_lookup(ct); in dccp_packet()
523 if (!timeouts) in dccp_packet()
524 timeouts = dccp_pernet(nf_ct_net(ct))->dccp_timeout; in dccp_packet()
525 nf_ct_refresh_acct(ct, ctinfo, skb, timeouts[new_state]); in dccp_packet()
687 unsigned int *timeouts = data; in dccp_timeout_nlattr_to_obj() local
692 timeouts[i] = dn->dccp_timeout[i]; in dccp_timeout_nlattr_to_obj()
697 timeouts[i] = ntohl(nla_get_be32(tb[i])) * HZ; in dccp_timeout_nlattr_to_obj()
701 timeouts[CTA_TIMEOUT_DCCP_UNSPEC] = timeouts[CTA_TIMEOUT_DCCP_REQUEST]; in dccp_timeout_nlattr_to_obj()
708 const unsigned int *timeouts = data; in dccp_timeout_obj_to_nlattr() local
[all …]
/Linux-v4.19/drivers/staging/speakup/
Dserialio.c27 static int timeouts; variable
218 if ((in_synth->alive) && (timeouts >= NUM_DISABLE_TIMEOUTS)) { in spk_wait_for_xmitr()
227 timeouts = 0; in spk_wait_for_xmitr()
234 timeouts++; in spk_wait_for_xmitr()
243 timeouts++; in spk_wait_for_xmitr()
248 timeouts = 0; in spk_wait_for_xmitr()
/Linux-v4.19/include/net/netfilter/
Dnf_conntrack_timeout.h76 unsigned int *timeouts = NULL; in nf_ct_timeout_lookup() local
82 timeouts = nf_ct_timeout_data(timeout_ext); in nf_ct_timeout_lookup()
84 return timeouts; in nf_ct_timeout_lookup()
/Linux-v4.19/include/net/netns/
Dconntrack.h36 unsigned int timeouts[TCP_CONNTRACK_TIMEOUT_MAX]; member
50 unsigned int timeouts[UDP_CT_MAX]; member
69 unsigned int timeouts[SCTP_CONNTRACK_MAX]; member
/Linux-v4.19/net/rxrpc/
Dsendmsg.c537 memcpy(&p->call.timeouts, CMSG_DATA(cmsg), len); in rxrpc_sendmsg_cmsg()
539 if (p->call.timeouts.hard > INT_MAX / HZ) in rxrpc_sendmsg_cmsg()
541 if (p->call.nr_timeouts >= 2 && p->call.timeouts.idle > 60 * 60 * 1000) in rxrpc_sendmsg_cmsg()
543 if (p->call.nr_timeouts >= 3 && p->call.timeouts.normal > 60 * 60 * 1000) in rxrpc_sendmsg_cmsg()
688 j = msecs_to_jiffies(p.call.timeouts.normal); in rxrpc_do_sendmsg()
689 if (p.call.timeouts.normal > 0 && j == 0) in rxrpc_do_sendmsg()
694 j = msecs_to_jiffies(p.call.timeouts.idle); in rxrpc_do_sendmsg()
695 if (p.call.timeouts.idle > 0 && j == 0) in rxrpc_do_sendmsg()
700 if (p.call.timeouts.hard > 0) { in rxrpc_do_sendmsg()
701 j = msecs_to_jiffies(p.call.timeouts.hard); in rxrpc_do_sendmsg()
/Linux-v4.19/net/sctp/
Dsm_sideeffect.c203 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] = in sctp_gen_sack()
210 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] = in sctp_gen_sack()
840 asoc->timeouts[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN] = t->rto; in sctp_cmd_setup_t2()
895 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] = in sctp_cmd_new_state()
897 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] = in sctp_cmd_new_state()
955 asoc->timeouts[SCTP_EVENT_TIMEOUT_T4_RTO] = t->rto; in sctp_cmd_setup_t4()
1085 asoc->timeouts[timer] *= 2; in sctp_cmd_t1_timer_update()
1086 if (asoc->timeouts[timer] > asoc->max_init_timeo) { in sctp_cmd_t1_timer_update()
1087 asoc->timeouts[timer] = asoc->max_init_timeo; in sctp_cmd_t1_timer_update()
1094 asoc->timeouts[timer]); in sctp_cmd_t1_timer_update()
[all …]
Dassociola.c139 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] = asoc->rto_initial; in sctp_association_init()
140 asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] = asoc->rto_initial; in sctp_association_init()
141 asoc->timeouts[SCTP_EVENT_TIMEOUT_T2_SHUTDOWN] = asoc->rto_initial; in sctp_association_init()
147 asoc->timeouts[SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD] in sctp_association_init()
150 asoc->timeouts[SCTP_EVENT_TIMEOUT_SACK] = asoc->sackdelay; in sctp_association_init()
151 asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE] = sp->autoclose * HZ; in sctp_association_init()
/Linux-v4.19/Documentation/driver-api/soundwire/
Derror_handling.rst45 does not define timeouts but the MIPI SoundWire DisCo document adds
46 recommendation on timeouts. If such configurations do not complete, the
47 driver will return a -ETIMEOUT. Such timeouts are symptoms of a faulty
/Linux-v4.19/drivers/message/fusion/
Dmptctl.h397 unsigned int timeouts; /* num timeouts */ member
420 unsigned long timeouts; /* num timeouts */ member
/Linux-v4.19/Documentation/ABI/testing/
Dsysfs-platform-dell-laptop52 The timeouts are expressed in seconds, minutes, hours and
67 Also note that only some timeouts are supported and that
/Linux-v4.19/Documentation/ABI/stable/
Dsysfs-class-tpm170 What: /sys/class/tpm/tpmX/device/timeouts
174 Description: The "timeouts" property shows the 4 vendor-specific values
175 for the TPM's interface spec timeouts. The use of these
176 timeouts is defined by the TPM interface spec that the chip
/Linux-v4.19/net/ipv4/
Dtcp_fastopen.c523 u32 timeouts = inet_csk(sk)->icsk_retransmits; in tcp_fastopen_active_detect_blackhole() local
532 (timeouts == 2 || (timeouts < 2 && expired))) { in tcp_fastopen_active_detect_blackhole()
/Linux-v4.19/Documentation/media/uapi/rc/
Dlirc-set-rec-timeout.rst39 If supported by the hardware, setting it to 0 disables all hardware timeouts
/Linux-v4.19/Documentation/timers/
Dhrtimers.txt44 identified as "timeouts". Such timeouts are usually set up to cover
49 them becomes necessary. Thus the users of these timeouts can accept
55 (because most of the timeouts are deleted before completion), which
/Linux-v4.19/Documentation/networking/
Dproc_net_tcp.txt21 | | | | |--> number of unrecovered RTO timeouts
Dtcp-thin.txt13 waiting for long timeouts.
/Linux-v4.19/net/decnet/
DTODO4 o Proper timeouts on each neighbour (in routing mode) rather than
/Linux-v4.19/net/netfilter/ipvs/
Dip_vs_app.c100 if (app->timeouts) { in ip_vs_app_inc_new()
102 ip_vs_create_timeout_table(app->timeouts, in ip_vs_app_inc_new()
/Linux-v4.19/Documentation/ioctl/
Dbotching-up-ioctls.txt150 * For timeouts, use absolute times. If you're a good fellow and made your
151 ioctl restartable relative timeouts tend to be too coarse and can
154 frame counter. With a spec lawyer hat on this isn't a bug since timeouts can
158 * Consider ditching any synchronous wait ioctls with timeouts and just deliver
/Linux-v4.19/net/can/
DKconfig38 informs you on demand e.g. only on content updates / timeouts.
/Linux-v4.19/arch/arm/boot/dts/
Dam335x-bonegreen-wireless.dts118 /* intruces various issues (elp wkaeup timeouts etc.) */

123