forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
io_uring: move nop into its own file
Signed-off-by: Jens Axboe <[email protected]>
- Loading branch information
Showing
4 changed files
with
32 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
#include <linux/kernel.h> | ||
#include <linux/errno.h> | ||
#include <linux/fs.h> | ||
#include <linux/file.h> | ||
#include <linux/io_uring.h> | ||
|
||
#include <uapi/linux/io_uring.h> | ||
|
||
#include "io_uring_types.h" | ||
#include "io_uring.h" | ||
#include "nop.h" | ||
|
||
int io_nop_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) | ||
{ | ||
return 0; | ||
} | ||
|
||
/* | ||
* IORING_OP_NOP just posts a completion event, nothing else. | ||
*/ | ||
int io_nop(struct io_kiocb *req, unsigned int issue_flags) | ||
{ | ||
io_req_set_res(req, 0, 0); | ||
return IOU_OK; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
|
||
int io_nop_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); | ||
int io_nop(struct io_kiocb *req, unsigned int issue_flags); |