Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-only */
2#ifndef VSOCK_TEST_ZEROCOPY_H
3#define VSOCK_TEST_ZEROCOPY_H
4#include "util.h"
5
6void test_stream_msgzcopy_client(const struct test_opts *opts);
7void test_stream_msgzcopy_server(const struct test_opts *opts);
8
9void test_seqpacket_msgzcopy_client(const struct test_opts *opts);
10void test_seqpacket_msgzcopy_server(const struct test_opts *opts);
11
12void test_stream_msgzcopy_empty_errq_client(const struct test_opts *opts);
13void test_stream_msgzcopy_empty_errq_server(const struct test_opts *opts);
14
15#endif /* VSOCK_TEST_ZEROCOPY_H */