mars/mars_device_aio.h

47 lines
831 B
C
Raw Normal View History

2010-11-26 13:45:10 +00:00
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef MARS_DEVICE_AIO_H
#define MARS_DEVICE_AIO_H
#include <linux/aio.h>
#include <linux/syscalls.h>
2010-12-15 12:13:18 +00:00
struct device_aio_mref_aspect {
GENERIC_ASPECT(mref);
2010-11-26 13:45:10 +00:00
struct list_head io_head;
int resubmit;
2010-12-10 17:40:20 +00:00
bool do_dealloc;
2010-11-26 13:45:10 +00:00
};
struct device_aio_brick {
MARS_BRICK(device_aio);
};
struct device_aio_input {
MARS_INPUT(device_aio);
};
struct aio_threadinfo {
struct list_head mref_list;
struct device_aio_output *output;
struct task_struct *thread;
wait_queue_head_t event;
spinlock_t lock;
2011-02-23 20:48:06 +00:00
bool terminated;
2010-11-26 13:45:10 +00:00
};
struct device_aio_output {
MARS_OUTPUT(device_aio);
// parameters
bool o_direct;
bool o_fdsync;
// private
struct file *filp;
int fd; // FIXME: remove this!
struct aio_threadinfo tinfo[3];
aio_context_t ctxp;
};
MARS_TYPES(device_aio);
#endif