aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2022-09-01 11:54:00 +0100
committerJens Axboe <axboe@kernel.dk>2022-09-01 09:13:33 -0600
commit75847100c351c7a49dddd60d1d023bd3e6640682 (patch)
tree5ac245b9eb82246fd3f33b22cdcae2ba84b078fd /tools
parentio_uring/net: fix overexcessive retries (diff)
downloadlinux-dev-75847100c351c7a49dddd60d1d023bd3e6640682.tar.xz
linux-dev-75847100c351c7a49dddd60d1d023bd3e6640682.zip
selftests/net: temporarily disable io_uring zc test
We're going to change API, to avoid build problems with a couple of following commits, disable io_uring testing. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/12b7507223df04fbd12aa05fc0cb544b51d7ed79.1662027856.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/net/io_uring_zerocopy_tx.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/testing/selftests/net/io_uring_zerocopy_tx.c b/tools/testing/selftests/net/io_uring_zerocopy_tx.c
index 9d64c560a2d6..7446ef364e9f 100644
--- a/tools/testing/selftests/net/io_uring_zerocopy_tx.c
+++ b/tools/testing/selftests/net/io_uring_zerocopy_tx.c
@@ -36,6 +36,8 @@
#include <sys/un.h>
#include <sys/wait.h>
+#if 0
+
#define NOTIF_TAG 0xfffffffULL
#define NONZC_TAG 0
#define ZC_TAG 1
@@ -603,3 +605,10 @@ int main(int argc, char **argv)
error(1, 0, "unknown cfg_test %s", cfg_test);
return 0;
}
+
+#else
+int main(int argc, char **argv)
+{
+ return 0;
+}
+#endif