Home
last modified time | relevance | path

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

/openbmc/linux/tools/testing/vsock/
H A Dvsock_perf.c32 static unsigned long buf_size_bytes = DEFAULT_BUF_SIZE_BYTES; variable
160 printf("RX buffer %lu bytes\n", buf_size_bytes); in run_receiver()
187 data = malloc(buf_size_bytes); in run_receiver()
219 bytes_read = read(fds.fd, data, buf_size_bytes); in run_receiver()
261 printf("TX buffer %lu bytes\n", buf_size_bytes); in run_sender()
268 data = malloc(buf_size_bytes); in run_sender()
275 memset(data, 0, buf_size_bytes); in run_sender()
282 sent = write(fd, data, buf_size_bytes); in run_sender()
407 buf_size_bytes = memparse(optarg); in main()