From: Pavel Begunkov <[email protected]>
To: [email protected]
Cc: Jens Axboe <[email protected]>, [email protected]
Subject: [PATCH liburing v2 3/5] examples/send-zc: add multithreading
Date: Sun, 5 Mar 2023 05:13:06 +0000 [thread overview]
Message-ID: <d5077c17a54e7f92be28ef499c83d99f4d3eb175.1677993039.git.asml.silence@gmail.com> (raw)
In-Reply-To: <[email protected]>
'-T <nr_threads>' will create the specified number of threads to test in
parallel. Each thread will have its own connection.
Signed-off-by: Pavel Begunkov <[email protected]>
---
examples/Makefile | 3 +
examples/send-zerocopy.c | 116 ++++++++++++++++++++++++++-------------
2 files changed, 81 insertions(+), 38 deletions(-)
diff --git a/examples/Makefile b/examples/Makefile
index ef79e42..ce33af9 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -10,6 +10,9 @@ ifneq ($(MAKECMDGOALS),clean)
include ../config-host.mak
endif
+LDFLAGS ?=
+override LDFLAGS += -L../src/ -luring -lpthread
+
example_srcs := \
io_uring-close-test.c \
io_uring-cp.c \
diff --git a/examples/send-zerocopy.c b/examples/send-zerocopy.c
index baa2bdf..683a965 100644
--- a/examples/send-zerocopy.c
+++ b/examples/send-zerocopy.c
@@ -11,6 +11,7 @@
#include <stdbool.h>
#include <stdarg.h>
#include <string.h>
+#include <pthread.h>
#include <sched.h>
#include <arpa/inet.h>
@@ -42,6 +43,16 @@
#define ZC_TAG 0xfffffffULL
#define MAX_SUBMIT_NR 512
+#define MAX_THREADS 100
+
+struct thread_data {
+ pthread_t thread;
+ void *ret;
+ int idx;
+ unsigned long long packets;
+ unsigned long long bytes;
+ struct sockaddr_storage dst_addr;
+};
static bool cfg_reg_ringfd = true;
static bool cfg_fixed_files = 1;
@@ -51,17 +62,21 @@ static bool cfg_fixed_buf = 1;
static bool cfg_hugetlb = 0;
static bool cfg_defer_taskrun = 0;
static int cfg_cpu = -1;
+static unsigned cfg_nr_threads = 1;
static int cfg_family = PF_UNSPEC;
+static int cfg_type = 0;
static int cfg_payload_len;
static int cfg_port = 8000;
static int cfg_runtime_ms = 4200;
static socklen_t cfg_alen;
-static struct sockaddr_storage cfg_dst_addr;
+static char *str_addr = NULL;
static char payload_buf[IP_MAXPACKET] __attribute__((aligned(4096)));
static char *payload;
+static struct thread_data threads[MAX_THREADS];
+static pthread_barrier_t barrier;
/*
* Implementation of error(3), prints an error message and exits.
@@ -125,12 +140,13 @@ static void setup_sockaddr(int domain, const char *str_addr,
{
struct sockaddr_in6 *addr6 = (void *) sockaddr;
struct sockaddr_in *addr4 = (void *) sockaddr;
+ int port = cfg_port;
switch (domain) {
case PF_INET:
memset(addr4, 0, sizeof(*addr4));
addr4->sin_family = AF_INET;
- addr4->sin_port = htons(cfg_port);
+ addr4->sin_port = htons(port);
if (str_addr &&
inet_pton(AF_INET, str_addr, &(addr4->sin_addr)) != 1)
t_error(1, 0, "ipv4 parse error: %s", str_addr);
@@ -138,7 +154,7 @@ static void setup_sockaddr(int domain, const char *str_addr,
case PF_INET6:
memset(addr6, 0, sizeof(*addr6));
addr6->sin6_family = AF_INET6;
- addr6->sin6_port = htons(cfg_port);
+ addr6->sin6_port = htons(port);
if (str_addr &&
inet_pton(AF_INET6, str_addr, &(addr6->sin6_addr)) != 1)
t_error(1, 0, "ipv6 parse error: %s", str_addr);
@@ -148,21 +164,6 @@ static void setup_sockaddr(int domain, const char *str_addr,
}
}
-static int do_setup_tx(int domain, int type, int protocol)
-{
- int fd;
-
- fd = socket(domain, type, protocol);
- if (fd == -1)
- t_error(1, errno, "socket t");
-
- do_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, 1 << 21);
-
- if (connect(fd, (void *) &cfg_dst_addr, cfg_alen))
- t_error(1, errno, "connect");
- return fd;
-}
-
static inline struct io_uring_cqe *wait_cqe_fast(struct io_uring *ring)
{
struct io_uring_cqe *cqe;
@@ -178,11 +179,9 @@ static inline struct io_uring_cqe *wait_cqe_fast(struct io_uring *ring)
return cqe;
}
-static void do_tx(int domain, int type, int protocol)
+static void do_tx(struct thread_data *td, int domain, int type, int protocol)
{
const int notif_slack = 128;
- unsigned long packets = 0;
- unsigned long bytes = 0;
struct io_uring ring;
struct iovec iov;
uint64_t tstop;
@@ -193,7 +192,14 @@ static void do_tx(int domain, int type, int protocol)
if (cfg_defer_taskrun)
ring_flags |= IORING_SETUP_DEFER_TASKRUN;
- fd = do_setup_tx(domain, type, protocol);
+ fd = socket(domain, type, protocol);
+ if (fd == -1)
+ t_error(1, errno, "socket t");
+
+ do_setsockopt(fd, SOL_SOCKET, SO_SNDBUF, 1 << 21);
+
+ if (connect(fd, (void *)&td->dst_addr, cfg_alen))
+ t_error(1, errno, "connect, idx %i", td->idx);
ret = io_uring_queue_init(512, &ring, ring_flags);
if (ret)
@@ -220,6 +226,8 @@ static void do_tx(int domain, int type, int protocol)
if (ret)
t_error(1, ret, "io_uring: buffer registration");
+ pthread_barrier_wait(&barrier);
+
tstop = gettimeofday_ms() + cfg_runtime_ms;
do {
struct io_uring_sqe *sqe;
@@ -271,8 +279,8 @@ static void do_tx(int domain, int type, int protocol)
compl_cqes++;
if (cqe->res >= 0) {
- packets++;
- bytes += cqe->res;
+ td->packets++;
+ td->bytes += cqe->res;
} else if (cqe->res == -ECONNREFUSED || cqe->res == -EPIPE ||
cqe->res == -ECONNRESET) {
fprintf(stderr, "Connection failure");
@@ -289,11 +297,6 @@ out_fail:
if (close(fd))
t_error(1, errno, "close");
- fprintf(stderr, "tx=%lu (MB=%lu), tx/s=%lu (MB/s=%lu)\n",
- packets, bytes >> 20,
- packets / (cfg_runtime_ms / 1000),
- (bytes >> 20) / (cfg_runtime_ms / 1000));
-
while (compl_cqes) {
struct io_uring_cqe *cqe = wait_cqe_fast(&ring);
@@ -303,14 +306,16 @@ out_fail:
io_uring_queue_exit(&ring);
}
-static void do_test(int domain, int type, int protocol)
+
+static void *do_test(void *arg)
{
- int i;
+ struct thread_data *td = arg;
+ int protocol = 0;
- for (i = 0; i < IP_MAXPACKET; i++)
- payload[i] = 'a' + (i % 26);
+ setup_sockaddr(cfg_family, str_addr, &td->dst_addr);
- do_tx(domain, type, protocol);
+ do_tx(td, cfg_family, cfg_type, protocol);
+ pthread_exit(&td->ret);
}
static void usage(const char *filepath)
@@ -333,7 +338,7 @@ static void parse_opts(int argc, char **argv)
cfg_payload_len = max_payload_len;
- while ((c = getopt(argc, argv, "46D:p:s:t:n:z:b:l:dC:")) != -1) {
+ while ((c = getopt(argc, argv, "46D:p:s:t:n:z:b:l:dC:T:")) != -1) {
switch (c) {
case '4':
if (cfg_family != PF_UNSPEC)
@@ -377,6 +382,11 @@ static void parse_opts(int argc, char **argv)
case 'C':
cfg_cpu = strtol(optarg, NULL, 0);
break;
+ case 'T':
+ cfg_nr_threads = strtol(optarg, NULL, 0);
+ if (cfg_nr_threads > MAX_THREADS)
+ t_error(1, 0, "too many threads\n");
+ break;
}
}
@@ -385,7 +395,7 @@ static void parse_opts(int argc, char **argv)
if (cfg_payload_len > max_payload_len)
t_error(1, 0, "-s: payload exceeds max (%d)", max_payload_len);
- setup_sockaddr(cfg_family, daddr, &cfg_dst_addr);
+ str_addr = daddr;
if (optind != argc - 1)
usage(argv[0]);
@@ -393,7 +403,11 @@ static void parse_opts(int argc, char **argv)
int main(int argc, char **argv)
{
+ unsigned long long packets = 0, bytes = 0;
+ struct thread_data *td;
const char *cfg_test;
+ void *res;
+ int i;
parse_opts(argc, argv);
set_cpu_affinity();
@@ -411,11 +425,37 @@ int main(int argc, char **argv)
cfg_test = argv[argc - 1];
if (!strcmp(cfg_test, "tcp"))
- do_test(cfg_family, SOCK_STREAM, 0);
+ cfg_type = SOCK_STREAM;
else if (!strcmp(cfg_test, "udp"))
- do_test(cfg_family, SOCK_DGRAM, 0);
+ cfg_type = SOCK_DGRAM;
else
t_error(1, 0, "unknown cfg_test %s", cfg_test);
+ pthread_barrier_init(&barrier, NULL, cfg_nr_threads);
+
+ for (i = 0; i < IP_MAXPACKET; i++)
+ payload[i] = 'a' + (i % 26);
+
+ for (i = 0; i < cfg_nr_threads; i++) {
+ td = &threads[i];
+ td->idx = i;
+ }
+
+ for (i = 0; i < cfg_nr_threads; i++)
+ pthread_create(&threads[i].thread, NULL, do_test, td);
+
+ for (i = 0; i < cfg_nr_threads; i++) {
+ td = &threads[i];
+ pthread_join(td->thread, &res);
+ packets += td->packets;
+ bytes += td->bytes;
+ }
+
+ fprintf(stderr, "tx=%llu (MB=%llu), tx/s=%llu (MB/s=%llu)\n",
+ packets, bytes >> 20,
+ packets / (cfg_runtime_ms / 1000),
+ (bytes >> 20) / (cfg_runtime_ms / 1000));
+
+ pthread_barrier_destroy(&barrier);
return 0;
}
--
2.39.1
next prev parent reply other threads:[~2023-03-05 5:14 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-05 5:13 [PATCH liburing v2 0/5] sendzc test improvements Pavel Begunkov
2023-03-05 5:13 ` [PATCH liburing v2 1/5] examples/send-zc: add defer taskrun support Pavel Begunkov
2023-03-05 5:13 ` [PATCH liburing v2 2/5] examples/send-zc: add affinity / CPU pinning Pavel Begunkov
2023-03-05 5:13 ` Pavel Begunkov [this message]
2023-03-05 5:13 ` [PATCH liburing v2 4/5] examples/send-zc: add the receive part Pavel Begunkov
2023-03-05 5:13 ` [PATCH liburing v2 5/5] examples/send-zc: kill sock bufs configuration Pavel Begunkov
2023-03-05 14:35 ` [PATCH liburing v2 0/5] sendzc test improvements Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d5077c17a54e7f92be28ef499c83d99f4d3eb175.1677993039.git.asml.silence@gmail.com \
[email protected] \
[email protected] \
[email protected] \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox