sock/uring: Add the async network I/O support for socket
This patch is used to add the async network I/O support in sock layer. If code is configured with I/O uring, --with-uring, we can use io uring in Linux (version >=5.4-rc3). PS: We also make VPP's default priority > uring, because for the iSCSI or sock test linked with VPP. It tests VPP with a given address (which is not a special VPP can only open address), so using uring can also listen those address succefully. And if we make uring with priority > VPP, actually, VPP will not tested in those cases. Additionally, the current CI pool is not ready for test, we need wait for the CI system ready. And I test on my local platform, it works. Signed-off-by: Ziye Yang <ziye.yang@intel.com> Change-Id: Ie8ee3c8ddf8d2a7264f2b382376733e002816dcc Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/952 Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
parent
3524dd0153
commit
465f4c1254
2
configure
vendored
2
configure
vendored
@ -90,7 +90,7 @@ function usage()
|
||||
echo " example: /usr/src/ocf/"
|
||||
echo " isal Build with ISA-L. Enabled by default on x86 and aarch64 architectures."
|
||||
echo " No path required."
|
||||
echo " uring Build I/O uring bdev."
|
||||
echo " uring Build I/O uring bdev or socket module."
|
||||
echo " If an argument is provided, it is considered a directory containing"
|
||||
echo " liburing.a and io_uring.h. Otherwise the regular system paths will"
|
||||
echo " be searched."
|
||||
|
@ -108,6 +108,7 @@ DEPDIRS-env_dpdk_rpc := log $(JSON_LIBS)
|
||||
|
||||
# module/sock
|
||||
DEPDIRS-sock_posix := log sock util
|
||||
DEPDIRS-sock_uring := log sock util
|
||||
DEPDIRS-sock_vpp := log sock util thread
|
||||
|
||||
# module/bdev
|
||||
|
@ -89,6 +89,12 @@ endif
|
||||
|
||||
SOCK_MODULES_LIST = sock_posix
|
||||
|
||||
ifeq ($(OS), Linux)
|
||||
ifeq ($(CONFIG_URING),y)
|
||||
SOCK_MODULES_LIST += sock_uring
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_VPP),y)
|
||||
SYS_LIBS += -Wl,--whole-archive
|
||||
ifneq ($(CONFIG_VPP_DIR),)
|
||||
|
@ -35,6 +35,9 @@ SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
|
||||
DIRS-y = posix
|
||||
ifeq ($(OS), Linux)
|
||||
DIRS-$(CONFIG_URING) += uring
|
||||
endif
|
||||
DIRS-$(CONFIG_VPP) += vpp
|
||||
|
||||
.PHONY: all clean $(DIRS-y)
|
||||
|
40
module/sock/uring/Makefile
Normal file
40
module/sock/uring/Makefile
Normal file
@ -0,0 +1,40 @@
|
||||
#
|
||||
# BSD LICENSE
|
||||
#
|
||||
# Copyright (c) Intel Corporation.
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions
|
||||
# are met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# * Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in
|
||||
# the documentation and/or other materials provided with the
|
||||
# distribution.
|
||||
# * Neither the name of Intel Corporation nor the names of its
|
||||
# contributors may be used to endorse or promote products derived
|
||||
# from this software without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
|
||||
LIBNAME = sock_uring
|
||||
C_SRCS = uring.c
|
||||
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|
1063
module/sock/uring/uring.c
Normal file
1063
module/sock/uring/uring.c
Normal file
File diff suppressed because it is too large
Load Diff
@ -1616,7 +1616,7 @@ static struct spdk_net_impl g_vpp_net_impl = {
|
||||
.group_impl_close = spdk_vpp_sock_group_impl_close,
|
||||
};
|
||||
|
||||
SPDK_NET_IMPL_REGISTER(vpp, &g_vpp_net_impl, DEFAULT_SOCK_PRIORITY + 1);
|
||||
SPDK_NET_IMPL_REGISTER(vpp, &g_vpp_net_impl, DEFAULT_SOCK_PRIORITY + 2);
|
||||
|
||||
static void
|
||||
spdk_vpp_net_framework_fini(void)
|
||||
|
@ -29,6 +29,7 @@ module/bdev/nvme/bdev_nvme_cuse_rpc
|
||||
# Currently we don't have this plumbed for testing, enable when ready.
|
||||
module/bdev/uring/bdev_uring
|
||||
module/bdev/uring/bdev_uring_rpc
|
||||
module/sock/uring/uring
|
||||
|
||||
# Currently not testing blobfs_fuse, enable when ready.
|
||||
module/blobfs/bdev/blobfs_fuse
|
||||
|
@ -36,6 +36,10 @@ include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
|
||||
DIRS-y = sock.c posix.c
|
||||
|
||||
ifeq ($(OS), Linux)
|
||||
DIRS-$(CONFIG_URING) += uring.c
|
||||
endif
|
||||
|
||||
.PHONY: all clean $(DIRS-y)
|
||||
|
||||
all: $(DIRS-y)
|
||||
|
1
test/unit/lib/sock/uring.c/.gitignore
vendored
Normal file
1
test/unit/lib/sock/uring.c/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
uring_ut
|
38
test/unit/lib/sock/uring.c/Makefile
Normal file
38
test/unit/lib/sock/uring.c/Makefile
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# BSD LICENSE
|
||||
#
|
||||
# Copyright (c) Intel Corporation.
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions
|
||||
# are met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# * Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in
|
||||
# the documentation and/or other materials provided with the
|
||||
# distribution.
|
||||
# * Neither the name of Intel Corporation nor the names of its
|
||||
# contributors may be used to endorse or promote products derived
|
||||
# from this software without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../../..)
|
||||
|
||||
TEST_FILE = uring_ut.c
|
||||
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.unittest.mk
|
281
test/unit/lib/sock/uring.c/uring_ut.c
Normal file
281
test/unit/lib/sock/uring.c/uring_ut.c
Normal file
@ -0,0 +1,281 @@
|
||||
/*-
|
||||
* BSD LICENSE
|
||||
*
|
||||
* Copyright (c) Intel Corporation.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* * Neither the name of Intel Corporation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "spdk/stdinc.h"
|
||||
#include "spdk/util.h"
|
||||
|
||||
#include "spdk_internal/mock.h"
|
||||
|
||||
#include "spdk_cunit.h"
|
||||
|
||||
#include "sock/uring/uring.c"
|
||||
|
||||
DEFINE_STUB_V(spdk_net_impl_register, (struct spdk_net_impl *impl, int priority));
|
||||
DEFINE_STUB(spdk_sock_close, int, (struct spdk_sock **s), 0);
|
||||
DEFINE_STUB(__io_uring_get_cqe, int, (struct io_uring *ring, struct io_uring_cqe **cqe_ptr,
|
||||
unsigned submit,
|
||||
unsigned wait_nr, sigset_t *sigmask), 0);
|
||||
DEFINE_STUB(io_uring_submit, int, (struct io_uring *ring), 0);
|
||||
DEFINE_STUB(io_uring_get_sqe, struct io_uring_sqe *, (struct io_uring *ring), 0);
|
||||
DEFINE_STUB(io_uring_queue_init, int, (unsigned entries, struct io_uring *ring, unsigned flags), 0);
|
||||
DEFINE_STUB_V(io_uring_queue_exit, (struct io_uring *ring));
|
||||
|
||||
static void
|
||||
_req_cb(void *cb_arg, int len)
|
||||
{
|
||||
*(bool *)cb_arg = true;
|
||||
CU_ASSERT(len == 0);
|
||||
}
|
||||
|
||||
static void
|
||||
flush_client(void)
|
||||
{
|
||||
struct spdk_uring_sock_group_impl group = {};
|
||||
struct spdk_uring_sock usock = {};
|
||||
struct spdk_sock *sock = &usock.base;
|
||||
struct spdk_sock_request *req1, *req2;
|
||||
bool cb_arg1, cb_arg2;
|
||||
int rc;
|
||||
|
||||
/* Set up data structures */
|
||||
TAILQ_INIT(&sock->queued_reqs);
|
||||
TAILQ_INIT(&sock->pending_reqs);
|
||||
sock->group_impl = &group.base;
|
||||
|
||||
req1 = calloc(1, sizeof(struct spdk_sock_request) + 3 * sizeof(struct iovec));
|
||||
SPDK_CU_ASSERT_FATAL(req1 != NULL);
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 0)->iov_base = (void *)100;
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 0)->iov_len = 64;
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 1)->iov_base = (void *)200;
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 1)->iov_len = 64;
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 2)->iov_base = (void *)300;
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 2)->iov_len = 64;
|
||||
req1->iovcnt = 3;
|
||||
req1->cb_fn = _req_cb;
|
||||
req1->cb_arg = &cb_arg1;
|
||||
|
||||
req2 = calloc(1, sizeof(struct spdk_sock_request) + 2 * sizeof(struct iovec));
|
||||
SPDK_CU_ASSERT_FATAL(req2 != NULL);
|
||||
SPDK_SOCK_REQUEST_IOV(req2, 0)->iov_base = (void *)100;
|
||||
SPDK_SOCK_REQUEST_IOV(req2, 0)->iov_len = 32;
|
||||
SPDK_SOCK_REQUEST_IOV(req2, 1)->iov_base = (void *)200;
|
||||
SPDK_SOCK_REQUEST_IOV(req2, 1)->iov_len = 32;
|
||||
req2->iovcnt = 2;
|
||||
req2->cb_fn = _req_cb;
|
||||
req2->cb_arg = &cb_arg2;
|
||||
|
||||
/* Simple test - a request with a 3 element iovec
|
||||
* that gets submitted in a single sendmsg. */
|
||||
spdk_sock_request_queue(sock, req1);
|
||||
MOCK_SET(sendmsg, 192);
|
||||
cb_arg1 = false;
|
||||
rc = _sock_flush_client(sock);
|
||||
CU_ASSERT(rc == 0);
|
||||
CU_ASSERT(cb_arg1 == true);
|
||||
CU_ASSERT(TAILQ_EMPTY(&sock->queued_reqs));
|
||||
|
||||
/* Two requests, where both can fully send. */
|
||||
spdk_sock_request_queue(sock, req1);
|
||||
spdk_sock_request_queue(sock, req2);
|
||||
MOCK_SET(sendmsg, 256);
|
||||
cb_arg1 = false;
|
||||
cb_arg2 = false;
|
||||
rc = _sock_flush_client(sock);
|
||||
CU_ASSERT(rc == 0);
|
||||
CU_ASSERT(cb_arg1 == true);
|
||||
CU_ASSERT(cb_arg2 == true);
|
||||
CU_ASSERT(TAILQ_EMPTY(&sock->queued_reqs));
|
||||
|
||||
/* Two requests. Only first one can send */
|
||||
spdk_sock_request_queue(sock, req1);
|
||||
spdk_sock_request_queue(sock, req2);
|
||||
MOCK_SET(sendmsg, 192);
|
||||
cb_arg1 = false;
|
||||
cb_arg2 = false;
|
||||
rc = _sock_flush_client(sock);
|
||||
CU_ASSERT(rc == 0);
|
||||
CU_ASSERT(cb_arg1 == true);
|
||||
CU_ASSERT(cb_arg2 == false);
|
||||
CU_ASSERT(TAILQ_FIRST(&sock->queued_reqs) == req2);
|
||||
TAILQ_REMOVE(&sock->queued_reqs, req2, internal.link);
|
||||
CU_ASSERT(TAILQ_EMPTY(&sock->queued_reqs));
|
||||
|
||||
/* One request. Partial send. */
|
||||
spdk_sock_request_queue(sock, req1);
|
||||
MOCK_SET(sendmsg, 10);
|
||||
cb_arg1 = false;
|
||||
rc = _sock_flush_client(sock);
|
||||
CU_ASSERT(rc == 0);
|
||||
CU_ASSERT(cb_arg1 == false);
|
||||
CU_ASSERT(TAILQ_FIRST(&sock->queued_reqs) == req1);
|
||||
|
||||
/* Do a second flush that partial sends again. */
|
||||
MOCK_SET(sendmsg, 52);
|
||||
cb_arg1 = false;
|
||||
rc = _sock_flush_client(sock);
|
||||
CU_ASSERT(rc == 0);
|
||||
CU_ASSERT(cb_arg1 == false);
|
||||
CU_ASSERT(TAILQ_FIRST(&sock->queued_reqs) == req1);
|
||||
|
||||
/* Flush the rest of the data */
|
||||
MOCK_SET(sendmsg, 130);
|
||||
cb_arg1 = false;
|
||||
rc = _sock_flush_client(sock);
|
||||
CU_ASSERT(rc == 0);
|
||||
CU_ASSERT(cb_arg1 == true);
|
||||
CU_ASSERT(TAILQ_EMPTY(&sock->queued_reqs));
|
||||
|
||||
free(req1);
|
||||
free(req2);
|
||||
}
|
||||
|
||||
static void
|
||||
flush_server(void)
|
||||
{
|
||||
struct spdk_uring_sock_group_impl group = {};
|
||||
struct spdk_uring_sock usock = {};
|
||||
struct spdk_sock *sock = &usock.base;
|
||||
struct spdk_sock_request *req1, *req2;
|
||||
bool cb_arg1, cb_arg2;
|
||||
int rc;
|
||||
|
||||
/* Set up data structures */
|
||||
TAILQ_INIT(&sock->queued_reqs);
|
||||
TAILQ_INIT(&sock->pending_reqs);
|
||||
sock->group_impl = &group.base;
|
||||
usock.write_task.sock = &usock;
|
||||
usock.group = &group;
|
||||
|
||||
req1 = calloc(1, sizeof(struct spdk_sock_request) + 2 * sizeof(struct iovec));
|
||||
SPDK_CU_ASSERT_FATAL(req1 != NULL);
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 0)->iov_base = (void *)100;
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 0)->iov_len = 64;
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 1)->iov_base = (void *)200;
|
||||
SPDK_SOCK_REQUEST_IOV(req1, 1)->iov_len = 64;
|
||||
req1->iovcnt = 2;
|
||||
req1->cb_fn = _req_cb;
|
||||
req1->cb_arg = &cb_arg1;
|
||||
|
||||
req2 = calloc(1, sizeof(struct spdk_sock_request) + 2 * sizeof(struct iovec));
|
||||
SPDK_CU_ASSERT_FATAL(req2 != NULL);
|
||||
SPDK_SOCK_REQUEST_IOV(req2, 0)->iov_base = (void *)100;
|
||||
SPDK_SOCK_REQUEST_IOV(req2, 0)->iov_len = 32;
|
||||
SPDK_SOCK_REQUEST_IOV(req2, 1)->iov_base = (void *)200;
|
||||
SPDK_SOCK_REQUEST_IOV(req2, 1)->iov_len = 32;
|
||||
req2->iovcnt = 2;
|
||||
req2->cb_fn = _req_cb;
|
||||
req2->cb_arg = &cb_arg2;
|
||||
|
||||
/* we should not call _sock_flush directly, since it will finally
|
||||
* call liburing related funtions */
|
||||
|
||||
/* Simple test - a request with a 2 element iovec
|
||||
* that is fully completed. */
|
||||
spdk_sock_request_queue(sock, req1);
|
||||
cb_arg1 = false;
|
||||
rc = spdk_sock_prep_reqs(sock, usock.write_task.iovs, 0, NULL);
|
||||
CU_ASSERT(rc == 2);
|
||||
spdk_sock_complete_reqs(sock, 128);
|
||||
CU_ASSERT(cb_arg1 == true);
|
||||
CU_ASSERT(TAILQ_EMPTY(&sock->queued_reqs));
|
||||
|
||||
/* Two requests, where both can be fully completed. */
|
||||
spdk_sock_request_queue(sock, req1);
|
||||
spdk_sock_request_queue(sock, req2);
|
||||
cb_arg1 = false;
|
||||
cb_arg2 = false;
|
||||
rc = spdk_sock_prep_reqs(sock, usock.write_task.iovs, 0, NULL);
|
||||
CU_ASSERT(rc == 4);
|
||||
spdk_sock_complete_reqs(sock, 192);
|
||||
CU_ASSERT(cb_arg1 == true);
|
||||
CU_ASSERT(cb_arg2 == true);
|
||||
CU_ASSERT(TAILQ_EMPTY(&sock->queued_reqs));
|
||||
|
||||
|
||||
/* One request that is partially sent. */
|
||||
spdk_sock_request_queue(sock, req1);
|
||||
cb_arg1 = false;
|
||||
rc = spdk_sock_prep_reqs(sock, usock.write_task.iovs, 0, NULL);
|
||||
CU_ASSERT(rc == 2);
|
||||
spdk_sock_complete_reqs(sock, 92);
|
||||
CU_ASSERT(rc == 2);
|
||||
CU_ASSERT(cb_arg1 == false);
|
||||
CU_ASSERT(TAILQ_FIRST(&sock->queued_reqs) == req1);
|
||||
|
||||
/* Get the second time partial sent result. */
|
||||
spdk_sock_complete_reqs(sock, 10);
|
||||
CU_ASSERT(cb_arg1 == false);
|
||||
CU_ASSERT(TAILQ_FIRST(&sock->queued_reqs) == req1);
|
||||
|
||||
/* Data is finally sent. */
|
||||
spdk_sock_complete_reqs(sock, 26);
|
||||
CU_ASSERT(cb_arg1 == true);
|
||||
CU_ASSERT(TAILQ_EMPTY(&sock->queued_reqs));
|
||||
|
||||
free(req1);
|
||||
free(req2);
|
||||
}
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
CU_pSuite suite = NULL;
|
||||
unsigned int num_failures;
|
||||
|
||||
if (CU_initialize_registry() != CUE_SUCCESS) {
|
||||
return CU_get_error();
|
||||
}
|
||||
|
||||
suite = CU_add_suite("uring", NULL, NULL);
|
||||
if (suite == NULL) {
|
||||
CU_cleanup_registry();
|
||||
return CU_get_error();
|
||||
}
|
||||
|
||||
if (
|
||||
CU_add_test(suite, "flush_client", flush_client) == NULL ||
|
||||
CU_add_test(suite, "flush_server", flush_server) == NULL
|
||||
) {
|
||||
CU_cleanup_registry();
|
||||
return CU_get_error();
|
||||
}
|
||||
|
||||
CU_basic_set_mode(CU_BRM_VERBOSE);
|
||||
|
||||
CU_basic_run_tests();
|
||||
|
||||
num_failures = CU_get_number_of_failures();
|
||||
CU_cleanup_registry();
|
||||
|
||||
return num_failures;
|
||||
}
|
Loading…
Reference in New Issue
Block a user