Home
last modified time | relevance | path

Searched refs:recv_bytes (Results 1 – 3 of 3) sorted by relevance

/dpdk/drivers/net/tap/
H A Dtap_netlink.c245 int recv_bytes; in tap_nl_recv() local
248 recv_bytes = recv(nlsk_fd, buf, sizeof(buf), 0); in tap_nl_recv()
249 if (recv_bytes < 0) { in tap_nl_recv()
256 NLMSG_OK(nh, (unsigned int)recv_bytes); in tap_nl_recv()
257 nh = NLMSG_NEXT(nh, recv_bytes)) { in tap_nl_recv()
/dpdk/drivers/common/mlx5/linux/
H A Dmlx5_nl.c377 int recv_bytes; in mlx5_nl_recv() local
383 recv_bytes = recvmsg(nlsk_fd, &msg, in mlx5_nl_recv()
385 if (recv_bytes < 0) { in mlx5_nl_recv()
390 if (recv_bytes == 0) { in mlx5_nl_recv()
396 if (recv_bytes < MLX5_RECV_BUF_SIZE) in mlx5_nl_recv()
397 recv_bytes = MLX5_RECV_BUF_SIZE; in mlx5_nl_recv()
407 iov.iov_len = recv_bytes; in mlx5_nl_recv()
408 recv_bytes = recvmsg(nlsk_fd, &msg, 0); in mlx5_nl_recv()
409 if (recv_bytes == -1) { in mlx5_nl_recv()
417 NLMSG_OK(nh, (unsigned int)recv_bytes); in mlx5_nl_recv()
[all …]
/dpdk/examples/ipsec-secgw/test/
H A Dpkttest.py76 return Ether(self.recv_bytes())
78 def recv_bytes(self): member in Interface