mirror of
https://github.com/openharmony/third_party_liburing.git
synced 2026-08-27 02:51:16 -04:00
b71741dc80
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/20a5afbb4f8aeb586b6ce04a623264f18c4fe467.1658484803.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
102 lines
2.1 KiB
C
102 lines
2.1 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <signal.h>
|
|
#include <poll.h>
|
|
#include <sys/time.h>
|
|
#include <sys/wait.h>
|
|
|
|
#include "liburing.h"
|
|
|
|
static char buf[4096];
|
|
static unsigned long runtime_ms = 10000;
|
|
|
|
static unsigned long gettimeofday_ms(void)
|
|
{
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
return (tv.tv_sec * 1000) + (tv.tv_usec / 1000);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
unsigned long tstop;
|
|
unsigned long nr_reqs = 0;
|
|
struct io_uring_cqe *cqe;
|
|
struct io_uring_sqe *sqe;
|
|
struct io_uring ring;
|
|
int pipe1[2];
|
|
int ret, i, qd = 32;
|
|
|
|
if (pipe(pipe1) != 0) {
|
|
perror("pipe");
|
|
return 1;
|
|
}
|
|
|
|
ret = io_uring_queue_init(1024, &ring, IORING_SETUP_SINGLE_ISSUER);
|
|
if (ret == -EINVAL) {
|
|
fprintf(stderr, "can't single\n");
|
|
ret = io_uring_queue_init(1024, &ring, 0);
|
|
}
|
|
if (ret) {
|
|
fprintf(stderr, "child: ring setup failed: %d\n", ret);
|
|
return 1;
|
|
}
|
|
|
|
ret = io_uring_register_files(&ring, pipe1, 2);
|
|
if (ret < 0) {
|
|
fprintf(stderr, "io_uring_register_files failed\n");
|
|
return 1;
|
|
}
|
|
|
|
ret = io_uring_register_ring_fd(&ring);
|
|
if (ret < 0) {
|
|
fprintf(stderr, "io_uring_register_ring_fd failed\n");
|
|
return 1;
|
|
}
|
|
|
|
tstop = gettimeofday_ms() + runtime_ms;
|
|
do {
|
|
for (i = 0; i < qd; i++) {
|
|
sqe = io_uring_get_sqe(&ring);
|
|
io_uring_prep_poll_add(sqe, 0, POLLIN);
|
|
sqe->flags |= IOSQE_FIXED_FILE;
|
|
sqe->user_data = 1;
|
|
}
|
|
|
|
ret = io_uring_submit(&ring);
|
|
if (ret != qd) {
|
|
fprintf(stderr, "child: sqe submit failed: %d\n", ret);
|
|
return 1;
|
|
}
|
|
|
|
ret = write(pipe1[1], buf, 1);
|
|
if (ret != 1) {
|
|
fprintf(stderr, "write failed %i\n", errno);
|
|
return 1;
|
|
}
|
|
ret = read(pipe1[0], buf, 1);
|
|
if (ret != 1) {
|
|
fprintf(stderr, "read failed %i\n", errno);
|
|
return 1;
|
|
}
|
|
|
|
for (i = 0; i < qd; i++) {
|
|
ret = io_uring_wait_cqe(&ring, &cqe);
|
|
if (ret < 0) {
|
|
fprintf(stderr, "child: wait completion %d\n", ret);
|
|
break;
|
|
}
|
|
io_uring_cqe_seen(&ring, cqe);
|
|
nr_reqs++;
|
|
}
|
|
} while (gettimeofday_ms() < tstop);
|
|
|
|
fprintf(stderr, "requests/s: %lu\n", nr_reqs * 1000UL / runtime_ms);
|
|
return 0;
|
|
}
|