2005-04-17 02:20:36 +04:00
|
|
|
#ifndef __LINUX__AIO_H
|
|
|
|
#define __LINUX__AIO_H
|
|
|
|
|
|
|
|
#include <linux/aio_abi.h>
|
|
|
|
|
|
|
|
struct kioctx;
|
2013-05-08 03:18:49 +04:00
|
|
|
struct kiocb;
|
2015-02-22 19:58:50 +03:00
|
|
|
struct mm_struct;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2013-05-08 03:19:10 +04:00
|
|
|
#define KIOCB_KEY 0
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2013-05-14 01:45:08 +04:00
|
|
|
typedef int (kiocb_cancel_fn)(struct kiocb *);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* prototypes */
|
2008-10-16 09:05:12 +04:00
|
|
|
#ifdef CONFIG_AIO
|
2008-02-14 02:03:15 +03:00
|
|
|
extern void exit_aio(struct mm_struct *mm);
|
2013-05-08 03:18:49 +04:00
|
|
|
void kiocb_set_cancel_fn(struct kiocb *req, kiocb_cancel_fn *cancel);
|
2008-10-16 09:05:12 +04:00
|
|
|
#else
|
|
|
|
static inline void exit_aio(struct mm_struct *mm) { }
|
2013-05-08 03:18:49 +04:00
|
|
|
static inline void kiocb_set_cancel_fn(struct kiocb *req,
|
|
|
|
kiocb_cancel_fn *cancel) { }
|
2008-10-16 09:05:12 +04:00
|
|
|
#endif /* CONFIG_AIO */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* for sysctl: */
|
2005-11-07 11:59:31 +03:00
|
|
|
extern unsigned long aio_nr;
|
|
|
|
extern unsigned long aio_max_nr;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#endif /* __LINUX__AIO_H */
|