Skip to content

Commit e28683b

Browse files
committed
io_uring: move nop into its own file
Signed-off-by: Jens Axboe <[email protected]>
1 parent 5e2a18d commit e28683b

File tree

4 files changed

+32
-15
lines changed

4 files changed

+32
-15
lines changed

io_uring/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
#
33
# Makefile for io_uring
44

5-
obj-$(CONFIG_IO_URING) += io_uring.o xattr.o
5+
obj-$(CONFIG_IO_URING) += io_uring.o xattr.o nop.o
66
obj-$(CONFIG_IO_WQ) += io-wq.o

io_uring/io_uring.c

+1-14
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
#include "io_uring.h"
9494

9595
#include "xattr.h"
96+
#include "nop.h"
9697

9798
#define IORING_MAX_ENTRIES 32768
9899
#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
@@ -4298,20 +4299,6 @@ static int io_splice(struct io_kiocb *req, unsigned int issue_flags)
42984299
return IOU_OK;
42994300
}
43004301

4301-
static int io_nop_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4302-
{
4303-
return 0;
4304-
}
4305-
4306-
/*
4307-
* IORING_OP_NOP just posts a completion event, nothing else.
4308-
*/
4309-
static int io_nop(struct io_kiocb *req, unsigned int issue_flags)
4310-
{
4311-
io_req_set_res(req, 0, 0);
4312-
return IOU_OK;
4313-
}
4314-
43154302
static int io_msg_ring_prep(struct io_kiocb *req,
43164303
const struct io_uring_sqe *sqe)
43174304
{

io_uring/nop.c

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
#include <linux/kernel.h>
3+
#include <linux/errno.h>
4+
#include <linux/fs.h>
5+
#include <linux/file.h>
6+
#include <linux/io_uring.h>
7+
8+
#include <uapi/linux/io_uring.h>
9+
10+
#include "io_uring_types.h"
11+
#include "io_uring.h"
12+
#include "nop.h"
13+
14+
int io_nop_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
15+
{
16+
return 0;
17+
}
18+
19+
/*
20+
* IORING_OP_NOP just posts a completion event, nothing else.
21+
*/
22+
int io_nop(struct io_kiocb *req, unsigned int issue_flags)
23+
{
24+
io_req_set_res(req, 0, 0);
25+
return IOU_OK;
26+
}

io_uring/nop.h

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
3+
int io_nop_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
4+
int io_nop(struct io_kiocb *req, unsigned int issue_flags);

0 commit comments

Comments
 (0)