Home
last modified time | relevance | path

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

/openbmc/linux/net/core/
H A Dstream.c56 int sk_stream_wait_connect(struct sock *sk, long *timeo_p) in sk_stream_wait_connect() argument
68 if (!*timeo_p) in sk_stream_wait_connect()
71 return sock_intr_errno(*timeo_p); in sk_stream_wait_connect()
75 done = sk_wait_event(sk, timeo_p, in sk_stream_wait_connect()
118 int sk_stream_wait_memory(struct sock *sk, long *timeo_p) in sk_stream_wait_memory() argument
122 long current_timeo = *timeo_p; in sk_stream_wait_memory()
135 if (!*timeo_p) in sk_stream_wait_memory()
155 current_timeo = *timeo_p; in sk_stream_wait_memory()
161 *timeo_p = current_timeo; in sk_stream_wait_memory()
181 err = sock_intr_errno(*timeo_p); in sk_stream_wait_memory()
H A Ddatagram.c87 int *err, long *timeo_p, in __skb_wait_for_more_packets() argument
120 *timeo_p = schedule_timeout(*timeo_p); in __skb_wait_for_more_packets()
125 error = sock_intr_errno(*timeo_p); in __skb_wait_for_more_packets()
H A Dsock.c429 static int sock_set_timeout(long *timeo_p, sockptr_t optval, int optlen, in sock_set_timeout() argument
445 WRITE_ONCE(*timeo_p, 0); in sock_set_timeout()
458 WRITE_ONCE(*timeo_p, val); in sock_set_timeout()
/openbmc/linux/drivers/net/ethernet/chelsio/inline_crypto/chtls/
H A Dchtls_io.c911 struct sock *sk, long *timeo_p) in csk_wait_memory() argument
919 current_timeo = *timeo_p; in csk_wait_memory()
920 noblock = (*timeo_p ? false : true); in csk_wait_memory()
932 if (!*timeo_p) { in csk_wait_memory()
955 current_timeo = *timeo_p; in csk_wait_memory()
963 *timeo_p = current_timeo; in csk_wait_memory()
975 err = sock_intr_errno(*timeo_p); in csk_wait_memory()
/openbmc/linux/net/sctp/
H A Dsocket.c8995 *timeo_p = schedule_timeout(*timeo_p); in sctp_wait_for_packet()
9003 error = sock_intr_errno(*timeo_p); in sctp_wait_for_packet()
9204 long current_timeo = *timeo_p; in sctp_wait_for_sndbuf()
9209 *timeo_p, msg_len); in sctp_wait_for_sndbuf()
9220 if (!*timeo_p) in sctp_wait_for_sndbuf()
9239 *timeo_p = current_timeo; in sctp_wait_for_sndbuf()
9259 err = sock_intr_errno(*timeo_p); in sctp_wait_for_sndbuf()
9316 long current_timeo = *timeo_p; in sctp_wait_for_connect()
9327 if (!*timeo_p) in sctp_wait_for_connect()
9347 *timeo_p = current_timeo; in sctp_wait_for_connect()
[all …]
/openbmc/linux/include/net/
H A Dsock.h1206 int sk_stream_wait_connect(struct sock *sk, long *timeo_p);
1207 int sk_stream_wait_memory(struct sock *sk, long *timeo_p);
1208 void sk_stream_wait_close(struct sock *sk, long timeo_p);
/openbmc/linux/net/tipc/
H A Dsocket.c162 static int tipc_wait_for_connect(struct socket *sock, long *timeo_p);
2529 static int tipc_wait_for_connect(struct socket *sock, long *timeo_p) in tipc_wait_for_connect() argument
2539 if (!*timeo_p) in tipc_wait_for_connect()
2542 return sock_intr_errno(*timeo_p); in tipc_wait_for_connect()
2547 done = sk_wait_event(sk, timeo_p, tipc_sk_connected(sk), in tipc_wait_for_connect()
/openbmc/linux/include/linux/
H A Dskbuff.h3966 int *err, long *timeo_p,