mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 15:41:52 +02:00
io_uring: add io_uring_cmd_get_async_data helper
Add a helper function in include/linux/io_uring/cmd.h to read the async_data pointer from a struct io_uring_cmd. Signed-off-by: Mark Harmstone <maharmstone@fb.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
3347fa658a
commit
b0af20d33f
|
|
@ -118,4 +118,9 @@ static inline struct task_struct *io_uring_cmd_get_task(struct io_uring_cmd *cmd
|
|||
return cmd_to_io_kiocb(cmd)->task;
|
||||
}
|
||||
|
||||
static inline struct io_uring_cmd_data *io_uring_cmd_get_async_data(struct io_uring_cmd *cmd)
|
||||
{
|
||||
return cmd_to_io_kiocb(cmd)->async_data;
|
||||
}
|
||||
|
||||
#endif /* _LINUX_IO_URING_CMD_H */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user