Home
last modified time | relevance | path

Searched refs:recv_timeout (Results 1 – 8 of 8) sorted by relevance

/linux/tools/testing/selftests/bpf/prog_tests/
H A Dsockmap_strp.c29 recvd = recv_timeout(p, rcv, sizeof(rcv), 0, 1); in sockmap_strp_consume_pre_data()
144 recvd = recv_timeout(*send_dir[i].receiver, rcv, in test_sockmap_strp_dispatch_pkt()
207 recvd = recv_timeout(p, rcv, total + 1, MSG_DONTWAIT, IO_TIMEOUT_SEC); in test_sockmap_strp_multiple_pkt()
253 recvd = recv_timeout(p, rcv, sizeof(rcv), MSG_DONTWAIT, 1); in test_sockmap_strp_partial_read()
259 recvd = recv_timeout(p, rcv, sizeof(rcv), MSG_DONTWAIT, IO_TIMEOUT_SEC); in test_sockmap_strp_partial_read()
270 recvd = recv_timeout(p, rcv, sizeof(rcv), MSG_DONTWAIT, 1); in test_sockmap_strp_partial_read()
276 recvd = recv_timeout(p, rcv, sizeof(rcv), MSG_DONTWAIT, IO_TIMEOUT_SEC); in test_sockmap_strp_partial_read()
333 recvd = recv_timeout(p, rcv, sizeof(rcv), MSG_DONTWAIT, in test_sockmap_strp_pass()
351 recvd = recv_timeout(p, rcv, sizeof(rcv), MSG_DONTWAIT, in test_sockmap_strp_pass()
401 recvd = recv_timeout(c1, rcv, sizeof(rcv), MSG_DONTWAIT, in test_sockmap_strp_verdict()
[all …]
H A Dsocket_helpers.h122 ssize_t __ret = recv_timeout((fd), (buf), (len), (flags), \
304 static inline int recv_timeout(int fd, void *buf, size_t len, int flags, in recv_timeout() function
H A Dsockmap_listen.c711 n = recv_timeout(c0, &b, 1, 0, IO_TIMEOUT_SEC); in redir_to_connected()
1122 n = recv_timeout(c1, &b, sizeof(b), 0, IO_TIMEOUT_SEC); in test_reuseport_select_connected()
1189 n = recv_timeout(c, &b, sizeof(b), 0, IO_TIMEOUT_SEC); in test_reuseport_mixed_groups()
1406 n = recv_timeout(mode == REDIR_INGRESS ? peer0 : cli0, &b, 1, 0, IO_TIMEOUT_SEC); in pairs_redir_to_connected()
H A Dsockmap_basic.c584 recvd = recv_timeout(c1, &buf, sizeof(buf), MSG_DONTWAIT, IO_TIMEOUT_SEC); in test_sockmap_skb_verdict_fionread()
/linux/drivers/nfc/
H A Dnfcsim.c44 u16 recv_timeout; member
187 skb = nfcsim_link_recv_skb(dev->link_in, dev->recv_timeout, in nfcsim_recv_wq()
212 dev->recv_timeout = timeout; in nfcsim_send()
H A Dport100.c510 __le16 recv_timeout; member
1394 hdr->recv_timeout = cpu_to_le16(timeout); in port100_tg_send_cmd()
1450 hdr->recv_timeout = cpu_to_le16(timeout); in port100_listen_mdaa()
/linux/drivers/scsi/
H A Dlibiscsi.c1084 mod_timer(&conn->transport_timer, jiffies + conn->recv_timeout); in iscsi_nop_out_rsp()
2067 time_before_eq(conn->last_recv + (conn->recv_timeout * HZ) + in iscsi_has_ping_timed_out()
2158 if (!conn->recv_timeout && !conn->ping_timeout) in iscsi_eh_cmd_timed_out()
2245 unsigned long recv_timeout, next_timeout = 0, last_recv; in iscsi_check_transport_timeouts() local
2251 recv_timeout = conn->recv_timeout; in iscsi_check_transport_timeouts()
2252 if (!recv_timeout) in iscsi_check_transport_timeouts()
2255 recv_timeout *= HZ; in iscsi_check_transport_timeouts()
2262 conn->ping_timeout, conn->recv_timeout, in iscsi_check_transport_timeouts()
2269 if (time_before_eq(last_recv + recv_timeout, jiffies)) { in iscsi_check_transport_timeouts()
2277 next_timeout = last_recv + recv_timeout; in iscsi_check_transport_timeouts()
[all …]
/linux/include/scsi/
H A Dlibiscsi.h186 int recv_timeout; member