Skip to content

Commit

Permalink
selftests/net: temporarily disable io_uring zc test
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Pavel Begunkov authored and Jens Axboe committed Sep 1, 2022
1 parent dfb58b1 commit 7584710
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tools/testing/selftests/net/io_uring_zerocopy_tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 7584710

Please sign in to comment.