Home
last modified time | relevance | path

Searched refs:sock_len (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/vhost/
H A Dnet.c1172 size_t vhost_len, sock_len; in handle_rx() local
1202 sock_len = vhost_net_rx_peek_head_len(net, sock->sk, in handle_rx()
1204 if (!sock_len) in handle_rx()
1206 sock_len += sock_hlen; in handle_rx()
1207 vhost_len = sock_len + vhost_hlen; in handle_rx()
1238 pr_debug("Discarded rx packet: len %zd\n", sock_len); in handle_rx()
1251 sock_len, MSG_DONTWAIT | MSG_TRUNC); in handle_rx()
1255 if (unlikely(err != sock_len)) { in handle_rx()
1257 " len %d, expected %zd\n", err, sock_len); in handle_rx()
1299 else if (!sock_len) in handle_rx()
/linux/tools/testing/selftests/net/ovpn/
H A Dovpn-cli.c479 size_t sock_len; in ovpn_socket() local
500 sock_len = sizeof(*in); in ovpn_socket()
507 sock_len = sizeof(*in6); in ovpn_socket()
546 ret = bind(s, (struct sockaddr *)&local_sock, sock_len); in ovpn_socket()