4 #include <linux/list.h>
5 #include <linux/workqueue.h>
6 #include <linux/aio_abi.h>
8 #include <linux/rcupdate.h>
10 #include <linux/atomic.h>
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
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().
28 #define KIOCB_CANCELLED ((void *) (~0ULL))
30 typedef int (kiocb_cancel_fn
)(struct kiocb
*);
34 struct kioctx
*ki_ctx
; /* NULL for sync ops */
35 kiocb_cancel_fn
*ki_cancel
;
40 struct task_struct
*tsk
;
43 __u64 ki_user_data
; /* user's data for completion */
45 size_t ki_nbytes
; /* copy of iocb->aio_nbytes */
47 struct list_head ki_list
; /* the aio core uses this
51 * If the aio_resfd field of the userspace iocb is not zero,
52 * this is the underlying eventfd context to deliver events to.
54 struct eventfd_ctx
*ki_eventfd
;
57 static inline bool is_sync_kiocb(struct kiocb
*kiocb
)
59 return kiocb
->ki_ctx
== NULL
;
62 static inline void init_sync_kiocb(struct kiocb
*kiocb
, struct file
*filp
)
64 *kiocb
= (struct kiocb
) {
67 .ki_obj
.tsk
= current
,
73 extern ssize_t
wait_on_sync_kiocb(struct kiocb
*iocb
);
74 extern void aio_complete(struct kiocb
*iocb
, long res
, long res2
);
76 extern void exit_aio(struct mm_struct
*mm
);
77 extern long do_io_submit(aio_context_t ctx_id
, long nr
,
78 struct iocb __user
*__user
*iocbpp
, bool compat
);
79 void kiocb_set_cancel_fn(struct kiocb
*req
, kiocb_cancel_fn
*cancel
);
81 static inline ssize_t
wait_on_sync_kiocb(struct kiocb
*iocb
) { return 0; }
82 static inline void aio_complete(struct kiocb
*iocb
, long res
, long res2
) { }
84 static inline void exit_aio(struct mm_struct
*mm
) { }
85 static inline long do_io_submit(aio_context_t ctx_id
, long nr
,
86 struct iocb __user
* __user
*iocbpp
,
87 bool compat
) { return 0; }
88 static inline void kiocb_set_cancel_fn(struct kiocb
*req
,
89 kiocb_cancel_fn
*cancel
) { }
90 #endif /* CONFIG_AIO */
92 static inline struct kiocb
*list_kiocb(struct list_head
*h
)
94 return list_entry(h
, struct kiocb
, ki_list
);
98 extern unsigned long aio_nr
;
99 extern unsigned long aio_max_nr
;
101 #endif /* __LINUX__AIO_H */