1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/* SPDX-License-Identifier: MIT */
/*
* Test alloc hint sanity after unregistering the file table
*/
#include <stdio.h>
#include <unistd.h>
#include <sys/socket.h>
#include "liburing.h"
#include "helpers.h"
int main(int argc, char *argv[])
{
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
struct io_uring ring;
int ret;
if (argc > 1)
return T_EXIT_SKIP;
io_uring_queue_init(1, &ring, 0);
ret = io_uring_register_files_sparse(&ring, 16);
if (ret) {
if (ret == -EINVAL)
return T_EXIT_SKIP;
fprintf(stderr, "Failed to register file table: %d\n", ret);
return T_EXIT_FAIL;
}
io_uring_unregister_files(&ring);
sqe = io_uring_get_sqe(&ring);
io_uring_prep_socket_direct_alloc(sqe, AF_UNIX, SOCK_DGRAM, 0, 0);
ret = io_uring_submit(&ring);
if (ret != 1) {
fprintf(stderr, "submit %d\n", ret);
return T_EXIT_FAIL;
}
ret = io_uring_wait_cqe(&ring, &cqe);
if (ret) {
fprintf(stderr, "wait cqe: %d\n", ret);
return T_EXIT_FAIL;
}
if (cqe->res != -ENFILE) {
fprintf(stderr, "Bad CQE res: %d\n", cqe->res);
return T_EXIT_FAIL;
}
io_uring_cqe_seen(&ring, cqe);
return T_EXIT_PASS;
}
|