]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - include/linux/aio.h
aio: give shared kioctx fields their own cachelines
[mirror_ubuntu-focal-kernel.git] / include / linux / aio.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX__AIO_H
2#define __LINUX__AIO_H
3
4#include <linux/list.h>
5#include <linux/workqueue.h>
6#include <linux/aio_abi.h>
027445c3 7#include <linux/uio.h>
abf137dd 8#include <linux/rcupdate.h>
1da177e4 9
60063497 10#include <linux/atomic.h>
1da177e4 11
1da177e4 12struct kioctx;
0460fef2 13struct kiocb;
1da177e4 14
1da177e4
LT
15#define KIOCB_SYNC_KEY (~0U)
16
0460fef2
KO
17/*
18 * We use ki_cancel == KIOCB_CANCELLED to indicate that a kiocb has been either
19 * cancelled or completed (this makes a certain amount of sense because
20 * successful cancellation - io_cancel() - does deliver the completion to
21 * userspace).
22 *
23 * And since most things don't implement kiocb cancellation and we'd really like
24 * kiocb completion to be lockless when possible, we use ki_cancel to
25 * synchronize cancellation and completion - we only set it to KIOCB_CANCELLED
26 * with xchg() or cmpxchg(), see batch_complete_aio() and kiocb_cancel().
27 */
28#define KIOCB_CANCELLED ((void *) (~0ULL))
1da177e4 29
0460fef2 30typedef int (kiocb_cancel_fn)(struct kiocb *, struct io_event *);
1da177e4 31
897f15fb
ZB
32/* is there a better place to document function pointer methods? */
33/**
34 * ki_retry - iocb forward progress callback
35 * @kiocb: The kiocb struct to advance by performing an operation.
36 *
37 * This callback is called when the AIO core wants a given AIO operation
38 * to make forward progress. The kiocb argument describes the operation
39 * that is to be performed. As the operation proceeds, perhaps partially,
40 * ki_retry is expected to update the kiocb with progress made. Typically
41 * ki_retry is set in the AIO core and it itself calls file_operations
42 * helpers.
43 *
44 * ki_retry's return value determines when the AIO operation is completed
45 * and an event is generated in the AIO event ring. Except the special
46 * return values described below, the value that is returned from ki_retry
47 * is transferred directly into the completion ring as the operation's
48 * resulting status. Once this has happened ki_retry *MUST NOT* reference
49 * the kiocb pointer again.
50 *
51 * If ki_retry returns -EIOCBQUEUED it has made a promise that aio_complete()
52 * will be called on the kiocb pointer in the future. The AIO core will
53 * not ask the method again -- ki_retry must ensure forward progress.
54 * aio_complete() must be called once and only once in the future, multiple
55 * calls may result in undefined behaviour.
897f15fb 56 */
1da177e4 57struct kiocb {
11599eba 58 atomic_t ki_users;
1da177e4
LT
59 unsigned ki_key; /* id of this request */
60
61 struct file *ki_filp;
62 struct kioctx *ki_ctx; /* may be NULL for sync ops */
0460fef2 63 kiocb_cancel_fn *ki_cancel;
1da177e4
LT
64 ssize_t (*ki_retry)(struct kiocb *);
65 void (*ki_dtor)(struct kiocb *);
66
1da177e4
LT
67 union {
68 void __user *user;
69 struct task_struct *tsk;
70 } ki_obj;
59d9136b 71
1da177e4
LT
72 __u64 ki_user_data; /* user's data for completion */
73 loff_t ki_pos;
59d9136b
BL
74
75 void *private;
1da177e4
LT
76 /* State that we remember to be able to restart/retry */
77 unsigned short ki_opcode;
78 size_t ki_nbytes; /* copy of iocb->aio_nbytes */
79 char __user *ki_buf; /* remaining iocb->aio_buf */
80 size_t ki_left; /* remaining bytes */
027445c3 81 struct iovec ki_inline_vec; /* inline vector */
eed4e51f
BP
82 struct iovec *ki_iovec;
83 unsigned long ki_nr_segs;
84 unsigned long ki_cur_seg;
1da177e4 85
59d9136b
BL
86 struct list_head ki_list; /* the aio core uses this
87 * for cancellation */
9c3060be
DL
88
89 /*
90 * If the aio_resfd field of the userspace iocb is not zero,
13389010 91 * this is the underlying eventfd context to deliver events to.
9c3060be 92 */
13389010 93 struct eventfd_ctx *ki_eventfd;
1da177e4
LT
94};
95
f7e1becb
AM
96static inline bool is_sync_kiocb(struct kiocb *kiocb)
97{
98 return kiocb->ki_key == KIOCB_SYNC_KEY;
99}
100
101static inline void init_sync_kiocb(struct kiocb *kiocb, struct file *filp)
102{
103 *kiocb = (struct kiocb) {
11599eba 104 .ki_users = ATOMIC_INIT(1),
f7e1becb
AM
105 .ki_key = KIOCB_SYNC_KEY,
106 .ki_filp = filp,
107 .ki_obj.tsk = current,
108 };
109}
1da177e4 110
1da177e4 111/* prototypes */
ebf3f09c 112#ifdef CONFIG_AIO
b3c97528 113extern ssize_t wait_on_sync_kiocb(struct kiocb *iocb);
2d68449e
KO
114extern void aio_put_req(struct kiocb *iocb);
115extern void aio_complete(struct kiocb *iocb, long res, long res2);
1da177e4 116struct mm_struct;
b3c97528 117extern void exit_aio(struct mm_struct *mm);
9d85cba7
JM
118extern long do_io_submit(aio_context_t ctx_id, long nr,
119 struct iocb __user *__user *iocbpp, bool compat);
0460fef2 120void kiocb_set_cancel_fn(struct kiocb *req, kiocb_cancel_fn *cancel);
ebf3f09c
TP
121#else
122static inline ssize_t wait_on_sync_kiocb(struct kiocb *iocb) { return 0; }
2d68449e
KO
123static inline void aio_put_req(struct kiocb *iocb) { }
124static inline void aio_complete(struct kiocb *iocb, long res, long res2) { }
ebf3f09c
TP
125struct mm_struct;
126static inline void exit_aio(struct mm_struct *mm) { }
9d85cba7
JM
127static inline long do_io_submit(aio_context_t ctx_id, long nr,
128 struct iocb __user * __user *iocbpp,
129 bool compat) { return 0; }
0460fef2
KO
130static inline void kiocb_set_cancel_fn(struct kiocb *req,
131 kiocb_cancel_fn *cancel) { }
ebf3f09c 132#endif /* CONFIG_AIO */
1da177e4 133
1da177e4
LT
134static inline struct kiocb *list_kiocb(struct list_head *h)
135{
136 return list_entry(h, struct kiocb, ki_list);
137}
138
139/* for sysctl: */
d55b5fda
ZB
140extern unsigned long aio_nr;
141extern unsigned long aio_max_nr;
1da177e4
LT
142
143#endif /* __LINUX__AIO_H */