aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKanchan Joshi <[email protected]>2022-08-23 21:44:40 +0530
committerJens Axboe <[email protected]>2022-09-21 10:30:42 -0600
commitde27e18e86173b704beaa19f0ee376f3305c4794 (patch)
tree0b8519c80531ebd52a1f3f19b53a27587f196b2e
parentf75d5036d04cd57103fe1a50dffceb7c1040fbe7 (diff)
fs: add file_operations->uring_cmd_iopoll
io_uring will invoke this to do completion polling on uring-cmd operations. Signed-off-by: Kanchan Joshi <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r--include/linux/fs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 9eced4cc286e..d6badd19784f 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2132,6 +2132,7 @@ struct file_operations {
loff_t len, unsigned int remap_flags);
int (*fadvise)(struct file *, loff_t, loff_t, int);
int (*uring_cmd)(struct io_uring_cmd *ioucmd, unsigned int issue_flags);
+ int (*uring_cmd_iopoll)(struct io_uring_cmd *ioucmd);
} __randomize_layout;
struct inode_operations {