2010-11-26 13:45:10 +00:00
|
|
|
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
|
|
|
|
|
|
|
|
//#define BRICK_DEBUGGING
|
2013-05-10 06:50:48 +00:00
|
|
|
#define MARS_DEBUGGING
|
2011-02-23 20:48:06 +00:00
|
|
|
//#define IO_DEBUGGING
|
2010-11-26 13:45:10 +00:00
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
2013-07-02 05:43:42 +00:00
|
|
|
#include <linux/version.h>
|
2010-11-26 13:45:10 +00:00
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/blkdev.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/wait.h>
|
|
|
|
#include <linux/file.h>
|
|
|
|
|
|
|
|
#include "mars.h"
|
2012-10-12 12:17:34 +00:00
|
|
|
#include "lib_timing.h"
|
2013-01-23 11:21:22 +00:00
|
|
|
#include "lib_mapfree.h"
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
#include "mars_aio.h"
|
|
|
|
|
2010-11-26 13:45:10 +00:00
|
|
|
#define MARS_MAX_AIO 1024
|
|
|
|
#define MARS_MAX_AIO_READ 32
|
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
static struct timing_stats timings[3] = {};
|
2011-03-07 10:27:38 +00:00
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
struct threshold aio_submit_threshold = {
|
|
|
|
.thr_ban = &mars_global_ban,
|
|
|
|
.thr_limit = AIO_SUBMIT_MAX_LATENCY,
|
|
|
|
.thr_factor = 10,
|
|
|
|
.thr_plus = 10000,
|
|
|
|
};
|
|
|
|
EXPORT_SYMBOL_GPL(aio_submit_threshold);
|
|
|
|
|
|
|
|
struct threshold aio_io_threshold[2] = {
|
|
|
|
[0] = {
|
|
|
|
.thr_ban = &mars_global_ban,
|
|
|
|
.thr_limit = AIO_IO_R_MAX_LATENCY,
|
|
|
|
.thr_factor = 100,
|
|
|
|
.thr_plus = 0,
|
|
|
|
},
|
|
|
|
[1] = {
|
|
|
|
.thr_ban = &mars_global_ban,
|
|
|
|
.thr_limit = AIO_IO_W_MAX_LATENCY,
|
|
|
|
.thr_factor = 100,
|
|
|
|
.thr_plus = 0,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
EXPORT_SYMBOL_GPL(aio_io_threshold);
|
2011-05-13 11:19:28 +00:00
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
struct threshold aio_sync_threshold = {
|
|
|
|
.thr_ban = &mars_global_ban,
|
|
|
|
.thr_limit = AIO_SYNC_MAX_LATENCY,
|
|
|
|
.thr_factor = 100,
|
|
|
|
.thr_plus = 0,
|
|
|
|
};
|
|
|
|
EXPORT_SYMBOL_GPL(aio_sync_threshold);
|
2011-05-13 11:19:28 +00:00
|
|
|
|
2013-07-02 05:43:42 +00:00
|
|
|
int aio_sync_mode = 1;
|
|
|
|
EXPORT_SYMBOL_GPL(aio_sync_mode);
|
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
///////////////////////// own type definitions ////////////////////////
|
2011-05-13 11:19:28 +00:00
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
////////////////// some helpers //////////////////
|
|
|
|
|
2011-03-10 11:40:06 +00:00
|
|
|
static inline
|
|
|
|
void _enqueue(struct aio_threadinfo *tinfo, struct aio_mref_aspect *mref_a, int prio, bool at_end)
|
2011-03-07 10:27:38 +00:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
2011-05-19 11:36:00 +00:00
|
|
|
#if 1
|
|
|
|
prio++;
|
2012-02-25 21:32:53 +00:00
|
|
|
if (unlikely(prio < 0)) {
|
2011-05-19 11:36:00 +00:00
|
|
|
prio = 0;
|
2012-02-25 21:32:53 +00:00
|
|
|
} else if (unlikely(prio >= MARS_PRIO_NR)) {
|
|
|
|
prio = MARS_PRIO_NR - 1;
|
2011-05-19 11:36:00 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
prio = 0;
|
|
|
|
#endif
|
2011-03-07 10:27:38 +00:00
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
mref_a->enqueue_stamp = cpu_clock(raw_smp_processor_id());
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
traced_lock(&tinfo->lock, flags);
|
|
|
|
|
2011-03-10 11:40:06 +00:00
|
|
|
if (at_end) {
|
|
|
|
list_add_tail(&mref_a->io_head, &tinfo->mref_list[prio]);
|
|
|
|
} else {
|
|
|
|
list_add(&mref_a->io_head, &tinfo->mref_list[prio]);
|
|
|
|
}
|
2012-10-15 14:35:36 +00:00
|
|
|
tinfo->queued[prio]++;
|
2012-12-19 15:19:33 +00:00
|
|
|
atomic_inc(&tinfo->queued_sum);
|
2011-03-07 10:27:38 +00:00
|
|
|
|
|
|
|
traced_unlock(&tinfo->lock, flags);
|
2011-05-06 10:25:52 +00:00
|
|
|
|
|
|
|
atomic_inc(&tinfo->total_enqueue_count);
|
2012-10-15 14:35:36 +00:00
|
|
|
|
|
|
|
wake_up_interruptible_all(&tinfo->event);
|
2011-03-07 10:27:38 +00:00
|
|
|
}
|
|
|
|
|
2011-03-10 11:40:06 +00:00
|
|
|
static inline
|
2012-10-15 14:35:36 +00:00
|
|
|
struct aio_mref_aspect *_dequeue(struct aio_threadinfo *tinfo)
|
2011-03-07 10:27:38 +00:00
|
|
|
{
|
2011-03-10 11:40:06 +00:00
|
|
|
struct aio_mref_aspect *mref_a = NULL;
|
|
|
|
int prio;
|
|
|
|
unsigned long flags = 0;
|
2011-03-07 10:27:38 +00:00
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
traced_lock(&tinfo->lock, flags);
|
2011-03-07 10:27:38 +00:00
|
|
|
|
2011-05-19 11:36:00 +00:00
|
|
|
for (prio = 0; prio < MARS_PRIO_NR; prio++) {
|
|
|
|
struct list_head *start = &tinfo->mref_list[prio];
|
|
|
|
struct list_head *tmp = start->next;
|
|
|
|
if (tmp != start) {
|
2012-10-15 14:35:36 +00:00
|
|
|
list_del_init(tmp);
|
|
|
|
tinfo->queued[prio]--;
|
2012-12-19 15:19:33 +00:00
|
|
|
atomic_dec(&tinfo->queued_sum);
|
2011-03-10 11:40:06 +00:00
|
|
|
mref_a = container_of(tmp, struct aio_mref_aspect, io_head);
|
|
|
|
goto done;
|
|
|
|
}
|
2011-03-07 10:27:38 +00:00
|
|
|
}
|
|
|
|
|
2011-03-10 11:40:06 +00:00
|
|
|
done:
|
2012-10-15 14:35:36 +00:00
|
|
|
traced_unlock(&tinfo->lock, flags);
|
|
|
|
|
|
|
|
if (likely(mref_a && mref_a->object)) {
|
|
|
|
unsigned long long latency;
|
|
|
|
latency = cpu_clock(raw_smp_processor_id()) - mref_a->enqueue_stamp;
|
|
|
|
threshold_check(&aio_io_threshold[mref_a->object->ref_rw & 1], latency);
|
|
|
|
}
|
2011-03-08 16:45:52 +00:00
|
|
|
return mref_a;
|
|
|
|
}
|
|
|
|
|
2013-07-03 10:43:58 +00:00
|
|
|
////////////////// dirty IOs on the fly //////////////////
|
|
|
|
|
|
|
|
static inline
|
|
|
|
void insert_dirty(struct aio_output *output, struct aio_mref_aspect *mref_a)
|
|
|
|
{
|
|
|
|
unsigned long flags = 0;
|
|
|
|
|
|
|
|
traced_lock(&output->dirty_lock, flags);
|
|
|
|
list_del(&mref_a->dirty_head);
|
|
|
|
list_add(&mref_a->dirty_head, &output->dirty_anchor);
|
|
|
|
traced_unlock(&output->dirty_lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
void remove_dirty(struct aio_output *output, struct aio_mref_aspect *mref_a)
|
|
|
|
{
|
|
|
|
if (!list_empty(&mref_a->dirty_head)) {
|
|
|
|
unsigned long flags = 0;
|
|
|
|
|
|
|
|
traced_lock(&output->dirty_lock, flags);
|
|
|
|
list_del_init(&mref_a->dirty_head);
|
|
|
|
traced_unlock(&output->dirty_lock, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
void get_dirty(struct aio_output *output, loff_t *min, loff_t *max)
|
|
|
|
{
|
|
|
|
struct list_head *tmp;
|
|
|
|
unsigned long flags = 0;
|
|
|
|
|
|
|
|
traced_lock(&output->dirty_lock, flags);
|
|
|
|
for (tmp = output->dirty_anchor.next; tmp != &output->dirty_anchor; tmp = tmp->next) {
|
|
|
|
struct aio_mref_aspect *mref_a = container_of(tmp, struct aio_mref_aspect, dirty_head);
|
|
|
|
struct mref_object *mref = mref_a->object;
|
|
|
|
if (mref->ref_pos < *min) {
|
|
|
|
*min = mref->ref_pos;
|
|
|
|
}
|
|
|
|
if (mref->ref_pos + mref->ref_len > *max) {
|
|
|
|
*max = mref->ref_pos + mref->ref_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
traced_unlock(&output->dirty_lock, flags);
|
|
|
|
}
|
|
|
|
|
2010-11-26 13:45:10 +00:00
|
|
|
////////////////// own brick / input / output operations //////////////////
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static int aio_ref_get(struct aio_output *output, struct mref_object *mref)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2012-12-26 18:35:49 +00:00
|
|
|
struct file *file;
|
|
|
|
struct inode *inode;
|
|
|
|
loff_t total_size;
|
|
|
|
|
|
|
|
if (unlikely(!output->mf)) {
|
|
|
|
MARS_ERR("brick is not switched on\n");
|
|
|
|
return -EILSEQ;
|
|
|
|
}
|
2011-03-07 10:27:38 +00:00
|
|
|
|
2012-12-13 17:12:21 +00:00
|
|
|
if (unlikely(mref->ref_len <= 0)) {
|
|
|
|
MARS_ERR("bad ref_len=%d\n", mref->ref_len);
|
|
|
|
return -EILSEQ;
|
|
|
|
}
|
|
|
|
|
2012-12-10 09:31:28 +00:00
|
|
|
if (mref->ref_initialized) {
|
|
|
|
_mref_get(mref);
|
2011-04-14 14:21:26 +00:00
|
|
|
return mref->ref_len;
|
|
|
|
}
|
2012-12-10 09:31:28 +00:00
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
file = output->mf->mf_filp;
|
|
|
|
if (unlikely(!file)) {
|
|
|
|
MARS_ERR("file is not open\n");
|
|
|
|
return -EILSEQ;
|
|
|
|
}
|
|
|
|
if (unlikely(!file->f_mapping)) {
|
|
|
|
MARS_ERR("file %p has no mapping\n", file);
|
|
|
|
return -EILSEQ;
|
|
|
|
}
|
|
|
|
inode = file->f_mapping->host;
|
|
|
|
if (unlikely(!inode)) {
|
|
|
|
MARS_ERR("file %p has no inode\n", file);
|
|
|
|
return -EILSEQ;
|
|
|
|
}
|
|
|
|
|
|
|
|
total_size = i_size_read(inode);
|
|
|
|
mref->ref_total_size = total_size;
|
|
|
|
/* Only check reads.
|
|
|
|
* Writes behind EOF are always allowed (sparse files)
|
|
|
|
*/
|
|
|
|
if (!mref->ref_may_write) {
|
|
|
|
loff_t len = total_size - mref->ref_pos;
|
|
|
|
if (unlikely(len <= 0)) {
|
|
|
|
/* Special case: allow reads starting _exactly_ at EOF when a timeout is specified.
|
|
|
|
*/
|
|
|
|
if (len < 0 || mref->ref_timeout <= 0) {
|
|
|
|
MARS_DBG("ENODATA %lld\n", len);
|
|
|
|
return -ENODATA;
|
2011-03-24 16:05:46 +00:00
|
|
|
}
|
|
|
|
}
|
2012-12-26 18:35:49 +00:00
|
|
|
// Shorten below EOF, but allow special case
|
|
|
|
if (mref->ref_len > len && len > 0) {
|
|
|
|
mref->ref_len = len;
|
|
|
|
}
|
2011-03-07 10:27:38 +00:00
|
|
|
}
|
|
|
|
|
2011-03-24 16:05:46 +00:00
|
|
|
/* Buffered IO.
|
2010-11-26 13:45:10 +00:00
|
|
|
*/
|
2010-12-10 17:40:20 +00:00
|
|
|
if (!mref->ref_data) {
|
2011-10-03 17:31:02 +00:00
|
|
|
struct aio_mref_aspect *mref_a = aio_mref_get_aspect(output->brick, mref);
|
2012-12-13 17:12:21 +00:00
|
|
|
if (unlikely(!mref_a)) {
|
|
|
|
MARS_ERR("bad mref_a\n");
|
2010-12-10 17:40:20 +00:00
|
|
|
return -EILSEQ;
|
2012-12-13 17:12:21 +00:00
|
|
|
}
|
|
|
|
if (unlikely(mref->ref_len <= 0)) {
|
2011-07-28 11:41:06 +00:00
|
|
|
MARS_ERR("bad ref_len = %d\n", mref->ref_len);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2011-08-12 11:09:48 +00:00
|
|
|
mref->ref_data = brick_block_alloc(mref->ref_pos, (mref_a->alloc_len = mref->ref_len));
|
2012-12-13 17:12:21 +00:00
|
|
|
if (unlikely(!mref->ref_data)) {
|
2011-07-15 10:12:06 +00:00
|
|
|
MARS_ERR("ENOMEM %d bytes\n", mref->ref_len);
|
2010-12-10 17:40:20 +00:00
|
|
|
return -ENOMEM;
|
2011-03-24 16:05:46 +00:00
|
|
|
}
|
2011-03-18 13:15:40 +00:00
|
|
|
#if 0 // ???
|
2010-12-10 17:40:20 +00:00
|
|
|
mref->ref_flags = 0;
|
|
|
|
#endif
|
2011-03-18 13:15:40 +00:00
|
|
|
mref_a->do_dealloc = true;
|
2011-04-12 15:31:08 +00:00
|
|
|
atomic_inc(&output->total_alloc_count);
|
|
|
|
atomic_inc(&output->alloc_count);
|
2010-12-10 17:40:20 +00:00
|
|
|
}
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2012-12-10 09:31:28 +00:00
|
|
|
_mref_get_first(mref);
|
2011-04-14 14:21:26 +00:00
|
|
|
return mref->ref_len;
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static void aio_ref_put(struct aio_output *output, struct mref_object *mref)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2012-12-26 18:35:49 +00:00
|
|
|
struct file *file;
|
2011-03-07 10:27:38 +00:00
|
|
|
struct aio_mref_aspect *mref_a;
|
|
|
|
|
2012-12-10 09:31:28 +00:00
|
|
|
if (!_mref_put(mref)) {
|
2011-03-07 10:27:38 +00:00
|
|
|
goto done;
|
|
|
|
}
|
2011-03-18 13:15:40 +00:00
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
if (output->mf && (file = output->mf->mf_filp) && file->f_mapping && file->f_mapping->host) {
|
2011-03-18 13:15:40 +00:00
|
|
|
mref->ref_total_size = i_size_read(file->f_mapping->host);
|
|
|
|
}
|
|
|
|
|
2011-10-03 17:31:02 +00:00
|
|
|
mref_a = aio_mref_get_aspect(output->brick, mref);
|
2010-12-10 17:40:20 +00:00
|
|
|
if (mref_a && mref_a->do_dealloc) {
|
2011-08-12 11:09:48 +00:00
|
|
|
brick_block_free(mref->ref_data, mref_a->alloc_len);
|
2011-04-12 15:31:08 +00:00
|
|
|
atomic_dec(&output->alloc_count);
|
2010-12-10 17:40:20 +00:00
|
|
|
}
|
2011-03-07 10:27:38 +00:00
|
|
|
aio_free_mref(mref);
|
|
|
|
done:;
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static
|
2013-07-10 07:53:59 +00:00
|
|
|
void _complete(struct aio_output *output, struct aio_mref_aspect *mref_a, int err)
|
2011-03-07 10:27:38 +00:00
|
|
|
{
|
2013-07-10 07:53:59 +00:00
|
|
|
struct mref_object *mref;
|
|
|
|
|
|
|
|
CHECK_PTR(mref_a, fatal);
|
|
|
|
mref = mref_a->object;
|
|
|
|
CHECK_PTR(mref, fatal);
|
2012-12-10 09:31:28 +00:00
|
|
|
|
2011-03-27 15:18:38 +00:00
|
|
|
mars_trace(mref, "aio_endio");
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
if (err < 0) {
|
2011-07-15 10:12:06 +00:00
|
|
|
MARS_ERR("IO error %d at pos=%lld len=%d (mref=%p ref_data=%p)\n", err, mref->ref_pos, mref->ref_len, mref, mref->ref_data);
|
2011-03-07 10:27:38 +00:00
|
|
|
} else {
|
2012-08-01 10:09:49 +00:00
|
|
|
mref_checksum(mref);
|
2011-03-07 10:27:38 +00:00
|
|
|
mref->ref_flags |= MREF_UPTODATE;
|
|
|
|
}
|
2011-04-12 15:31:08 +00:00
|
|
|
|
2011-10-04 11:34:18 +00:00
|
|
|
CHECKED_CALLBACK(mref, err, err_found);
|
2011-04-12 15:31:08 +00:00
|
|
|
|
2011-05-19 11:36:00 +00:00
|
|
|
done:
|
2011-04-12 15:31:08 +00:00
|
|
|
if (mref->ref_rw) {
|
2013-07-03 10:43:58 +00:00
|
|
|
atomic_dec(&output->write_count);
|
2011-04-12 15:31:08 +00:00
|
|
|
} else {
|
|
|
|
atomic_dec(&output->read_count);
|
|
|
|
}
|
|
|
|
|
2013-07-10 07:53:59 +00:00
|
|
|
remove_dirty(output, mref_a);
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
aio_ref_put(output, mref);
|
2012-11-16 11:43:10 +00:00
|
|
|
atomic_dec(&mars_global_io_flying);
|
2011-05-19 11:36:00 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
err_found:
|
|
|
|
MARS_FAT("giving up...\n");
|
|
|
|
goto done;
|
2013-07-10 07:53:59 +00:00
|
|
|
|
|
|
|
fatal:
|
|
|
|
MARS_FAT("bad pointer, giving up...\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void _complete_mref(struct aio_output *output, struct mref_object *mref, int err)
|
|
|
|
{
|
|
|
|
struct aio_mref_aspect *mref_a;
|
|
|
|
_mref_check(mref);
|
|
|
|
mref_a = aio_mref_get_aspect(output->brick, mref);
|
|
|
|
CHECK_PTR(mref_a, fatal);
|
|
|
|
_complete(output, mref_a, err);
|
|
|
|
return;
|
|
|
|
|
|
|
|
fatal:
|
|
|
|
MARS_FAT("bad pointer, giving up...\n");
|
2011-03-07 10:27:38 +00:00
|
|
|
}
|
|
|
|
|
2011-07-01 14:07:56 +00:00
|
|
|
static
|
|
|
|
void _complete_all(struct list_head *tmp_list, struct aio_output *output, int err)
|
|
|
|
{
|
|
|
|
while (!list_empty(tmp_list)) {
|
|
|
|
struct list_head *tmp = tmp_list->next;
|
|
|
|
struct aio_mref_aspect *mref_a = container_of(tmp, struct aio_mref_aspect, io_head);
|
|
|
|
list_del_init(tmp);
|
2013-07-10 07:53:59 +00:00
|
|
|
_complete(output, mref_a, err);
|
2011-07-01 14:07:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static void aio_ref_io(struct aio_output *output, struct mref_object *mref)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
|
|
|
struct aio_threadinfo *tinfo = &output->tinfo[0];
|
2011-03-07 10:27:38 +00:00
|
|
|
struct aio_mref_aspect *mref_a;
|
|
|
|
int err = -EINVAL;
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2012-12-10 09:31:28 +00:00
|
|
|
_mref_get(mref);
|
2012-11-16 11:43:10 +00:00
|
|
|
atomic_inc(&mars_global_io_flying);
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2011-04-12 15:31:08 +00:00
|
|
|
// statistics
|
|
|
|
if (mref->ref_rw) {
|
|
|
|
atomic_inc(&output->total_write_count);
|
|
|
|
atomic_inc(&output->write_count);
|
|
|
|
} else {
|
|
|
|
atomic_inc(&output->total_read_count);
|
|
|
|
atomic_inc(&output->read_count);
|
|
|
|
}
|
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
if (unlikely(!output->mf || !output->mf->mf_filp)) {
|
2010-11-26 13:45:10 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2013-04-16 07:37:54 +00:00
|
|
|
mapfree_set(output->mf, mref->ref_pos, -1);
|
2012-12-26 18:35:49 +00:00
|
|
|
|
2011-02-23 20:48:06 +00:00
|
|
|
MARS_IO("AIO rw=%d pos=%lld len=%d data=%p\n", mref->ref_rw, mref->ref_pos, mref->ref_len, mref->ref_data);
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2011-10-03 17:31:02 +00:00
|
|
|
mref_a = aio_mref_get_aspect(output->brick, mref);
|
2011-03-07 10:27:38 +00:00
|
|
|
if (unlikely(!mref_a)) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2011-03-10 11:40:06 +00:00
|
|
|
_enqueue(tinfo, mref_a, mref->ref_prio, true);
|
2010-11-26 13:45:10 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
done:
|
2013-07-10 07:53:59 +00:00
|
|
|
_complete_mref(output, mref, err);
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static int aio_submit(struct aio_output *output, struct aio_mref_aspect *mref_a, bool use_fdsync)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2010-12-15 12:13:18 +00:00
|
|
|
struct mref_object *mref = mref_a->object;
|
2010-11-26 13:45:10 +00:00
|
|
|
mm_segment_t oldfs;
|
|
|
|
int res;
|
|
|
|
struct iocb iocb = {
|
|
|
|
.aio_data = (__u64)mref_a,
|
2010-12-10 17:40:20 +00:00
|
|
|
.aio_lio_opcode = use_fdsync ? IOCB_CMD_FDSYNC : (mref->ref_rw != 0 ? IOCB_CMD_PWRITE : IOCB_CMD_PREAD),
|
2010-11-26 13:45:10 +00:00
|
|
|
.aio_fildes = output->fd,
|
|
|
|
.aio_buf = (unsigned long)mref->ref_data,
|
|
|
|
.aio_nbytes = mref->ref_len,
|
|
|
|
.aio_offset = mref->ref_pos,
|
2011-03-24 16:05:46 +00:00
|
|
|
// .aio_reqprio = something(mref->ref_prio) field exists, but not yet implemented in kernelspace :(
|
2010-11-26 13:45:10 +00:00
|
|
|
};
|
|
|
|
struct iocb *iocbp = &iocb;
|
2012-10-15 14:35:36 +00:00
|
|
|
unsigned long long latency;
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2011-03-27 15:18:38 +00:00
|
|
|
mars_trace(mref, "aio_submit");
|
|
|
|
|
2013-07-10 04:50:36 +00:00
|
|
|
if (unlikely(output->fd < 0)) {
|
|
|
|
MARS_ERR("bad fd = %d\n", output->fd);
|
|
|
|
res = -EBADF;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2010-11-26 13:45:10 +00:00
|
|
|
oldfs = get_fs();
|
|
|
|
set_fs(get_ds());
|
2012-10-15 14:35:36 +00:00
|
|
|
latency = TIME_STATS(&timings[mref->ref_rw & 1], res = sys_io_submit(output->ctxp, 1, &iocbp));
|
2010-11-26 13:45:10 +00:00
|
|
|
set_fs(oldfs);
|
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
threshold_check(&aio_submit_threshold, latency);
|
|
|
|
|
2012-12-20 10:32:47 +00:00
|
|
|
atomic_inc(&output->total_submit_count);
|
|
|
|
|
2012-12-18 07:00:27 +00:00
|
|
|
if (likely(res >= 0)) {
|
|
|
|
atomic_inc(&output->submit_count);
|
2012-12-20 11:02:54 +00:00
|
|
|
} else if (likely(res == -EAGAIN)) {
|
|
|
|
atomic_inc(&output->total_again_count);
|
|
|
|
} else {
|
2010-11-26 13:45:10 +00:00
|
|
|
MARS_ERR("error = %d\n", res);
|
2012-12-18 07:00:27 +00:00
|
|
|
}
|
2012-10-15 14:35:36 +00:00
|
|
|
|
2013-07-10 04:50:36 +00:00
|
|
|
done:
|
2010-11-26 13:45:10 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static int aio_submit_dummy(struct aio_output *output)
|
2011-02-23 20:48:06 +00:00
|
|
|
{
|
|
|
|
mm_segment_t oldfs;
|
|
|
|
int res;
|
2011-08-25 10:16:32 +00:00
|
|
|
int dummy;
|
2011-02-23 20:48:06 +00:00
|
|
|
struct iocb iocb = {
|
2011-08-25 10:16:32 +00:00
|
|
|
.aio_buf = (__u64)&dummy,
|
2011-02-23 20:48:06 +00:00
|
|
|
};
|
|
|
|
struct iocb *iocbp = &iocb;
|
|
|
|
|
|
|
|
oldfs = get_fs();
|
|
|
|
set_fs(get_ds());
|
|
|
|
res = sys_io_submit(output->ctxp, 1, &iocbp);
|
|
|
|
set_fs(oldfs);
|
|
|
|
|
2012-12-18 07:00:27 +00:00
|
|
|
if (likely(res >= 0)) {
|
|
|
|
atomic_inc(&output->submit_count);
|
|
|
|
}
|
2011-02-23 20:48:06 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-08-26 10:31:56 +00:00
|
|
|
static
|
2012-10-15 14:35:36 +00:00
|
|
|
int aio_start_thread(
|
|
|
|
struct aio_output *output,
|
|
|
|
struct aio_threadinfo *tinfo,
|
|
|
|
int(*fn)(void*),
|
|
|
|
char class)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2011-08-26 10:31:56 +00:00
|
|
|
int j;
|
|
|
|
|
|
|
|
for (j = 0; j < MARS_PRIO_NR; j++) {
|
|
|
|
INIT_LIST_HEAD(&tinfo->mref_list[j]);
|
|
|
|
}
|
|
|
|
tinfo->output = output;
|
|
|
|
spin_lock_init(&tinfo->lock);
|
|
|
|
init_waitqueue_head(&tinfo->event);
|
2012-10-15 14:35:36 +00:00
|
|
|
init_waitqueue_head(&tinfo->terminate_event);
|
2011-08-26 10:31:56 +00:00
|
|
|
tinfo->terminated = false;
|
2012-11-13 16:01:37 +00:00
|
|
|
tinfo->thread = brick_thread_create(fn, tinfo, "mars_aio_%c%d", class, output->index);
|
|
|
|
if (unlikely(!tinfo->thread)) {
|
2011-08-26 10:31:56 +00:00
|
|
|
MARS_ERR("cannot create thread\n");
|
2012-11-13 16:01:37 +00:00
|
|
|
return -ENOENT;
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-26 10:31:56 +00:00
|
|
|
static
|
|
|
|
void aio_stop_thread(struct aio_output *output, int i, bool do_submit_dummy)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2011-08-26 10:31:56 +00:00
|
|
|
struct aio_threadinfo *tinfo = &output->tinfo[i];
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2011-08-26 10:31:56 +00:00
|
|
|
if (tinfo->thread) {
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("stopping thread %d ...\n", i);
|
2012-11-13 16:01:37 +00:00
|
|
|
brick_thread_stop_nowait(tinfo->thread);
|
2011-03-02 09:30:56 +00:00
|
|
|
|
2011-08-26 10:31:56 +00:00
|
|
|
// workaround for waking up the receiver thread. TODO: check whether signal handlong could do better.
|
|
|
|
if (do_submit_dummy) {
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("submitting dummy for wakeup %d...\n", i);
|
2013-01-15 16:55:27 +00:00
|
|
|
use_fake_mm();
|
2011-08-26 10:31:56 +00:00
|
|
|
aio_submit_dummy(output);
|
2013-01-15 16:55:27 +00:00
|
|
|
if (likely(current->mm)) {
|
|
|
|
unuse_fake_mm();
|
|
|
|
}
|
2011-03-02 09:30:56 +00:00
|
|
|
}
|
2011-03-07 10:27:38 +00:00
|
|
|
|
2011-08-26 10:31:56 +00:00
|
|
|
// wait for termination
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("waiting for thread %d ...\n", i);
|
2011-08-26 10:31:56 +00:00
|
|
|
wait_event_interruptible_timeout(
|
2012-10-15 14:35:36 +00:00
|
|
|
tinfo->terminate_event,
|
2011-08-26 10:31:56 +00:00
|
|
|
tinfo->terminated,
|
|
|
|
(60 - i * 2) * HZ);
|
|
|
|
if (likely(tinfo->terminated)) {
|
2012-11-13 16:01:37 +00:00
|
|
|
brick_thread_stop(tinfo->thread);
|
2011-08-26 10:31:56 +00:00
|
|
|
} else {
|
|
|
|
MARS_ERR("thread %d did not terminate - leaving a zombie\n", i);
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-01 14:07:56 +00:00
|
|
|
static
|
|
|
|
int aio_sync(struct file *file)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2013-07-02 05:43:42 +00:00
|
|
|
switch (aio_sync_mode) {
|
|
|
|
case 1:
|
|
|
|
#if defined(S_BIAS) || (defined(RHEL_MAJOR) && (RHEL_MAJOR < 7))
|
|
|
|
err = vfs_fsync_range(file, file->f_path.dentry, 0, LLONG_MAX, 1);
|
|
|
|
#else
|
|
|
|
err = vfs_fsync_range(file, 0, LLONG_MAX, 1);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
#if defined(S_BIAS) || (defined(RHEL_MAJOR) && (RHEL_MAJOR < 7))
|
|
|
|
err = vfs_fsync_range(file, file->f_path.dentry, 0, LLONG_MAX, 0);
|
|
|
|
#else
|
|
|
|
err = vfs_fsync_range(file, 0, LLONG_MAX, 0);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
err = filemap_write_and_wait_range(file->f_mapping, 0, LLONG_MAX);
|
|
|
|
}
|
2011-07-01 14:07:56 +00:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void aio_sync_all(struct aio_output *output, struct list_head *tmp_list)
|
|
|
|
{
|
2012-10-15 14:35:36 +00:00
|
|
|
unsigned long long latency;
|
2011-07-01 14:07:56 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
output->fdsync_active = true;
|
|
|
|
atomic_inc(&output->total_fdsync_count);
|
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
latency = TIME_STATS(
|
|
|
|
&timings[2],
|
2012-12-26 18:35:49 +00:00
|
|
|
err = aio_sync(output->mf->mf_filp)
|
2012-10-15 14:35:36 +00:00
|
|
|
);
|
2011-07-01 14:07:56 +00:00
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
threshold_check(&aio_sync_threshold, latency);
|
|
|
|
|
2011-07-01 14:07:56 +00:00
|
|
|
output->fdsync_active = false;
|
|
|
|
wake_up_interruptible_all(&output->fdsync_event);
|
|
|
|
if (err < 0) {
|
|
|
|
MARS_ERR("FDSYNC error %d\n", err);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Signal completion for the whole list.
|
|
|
|
* No locking needed, it's on the stack.
|
|
|
|
*/
|
|
|
|
_complete_all(tmp_list, output, err);
|
|
|
|
}
|
|
|
|
|
2010-11-26 13:45:10 +00:00
|
|
|
/* Workaround for non-implemented aio_fsync()
|
|
|
|
*/
|
2011-07-01 14:07:56 +00:00
|
|
|
static
|
|
|
|
int aio_sync_thread(void *data)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
|
|
|
struct aio_threadinfo *tinfo = data;
|
2011-03-07 10:27:38 +00:00
|
|
|
struct aio_output *output = tinfo->output;
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("sync thread has started on '%s'.\n", output->brick->brick_path);
|
2010-11-26 13:45:10 +00:00
|
|
|
//set_user_nice(current, -20);
|
|
|
|
|
2012-12-19 15:19:33 +00:00
|
|
|
while (!brick_thread_should_stop() || atomic_read(&tinfo->queued_sum) > 0) {
|
2010-11-26 13:45:10 +00:00
|
|
|
LIST_HEAD(tmp_list);
|
|
|
|
unsigned long flags;
|
2011-03-10 11:40:06 +00:00
|
|
|
int i;
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2011-04-29 09:36:10 +00:00
|
|
|
output->fdsync_active = false;
|
2011-07-01 14:07:56 +00:00
|
|
|
wake_up_interruptible_all(&output->fdsync_event);
|
2011-04-29 09:36:10 +00:00
|
|
|
|
2010-11-26 13:45:10 +00:00
|
|
|
wait_event_interruptible_timeout(
|
|
|
|
tinfo->event,
|
2012-12-19 15:19:33 +00:00
|
|
|
atomic_read(&tinfo->queued_sum) > 0,
|
2012-10-15 14:35:36 +00:00
|
|
|
HZ / 4);
|
2010-11-26 13:45:10 +00:00
|
|
|
|
|
|
|
traced_lock(&tinfo->lock, flags);
|
2011-05-19 11:36:00 +00:00
|
|
|
for (i = 0; i < MARS_PRIO_NR; i++) {
|
|
|
|
struct list_head *start = &tinfo->mref_list[i];
|
|
|
|
if (!list_empty(start)) {
|
2011-03-10 11:40:06 +00:00
|
|
|
// move over the whole list
|
2011-05-19 11:36:00 +00:00
|
|
|
list_replace_init(start, &tmp_list);
|
2012-12-19 15:19:33 +00:00
|
|
|
atomic_sub(tinfo->queued[i], &tinfo->queued_sum);
|
2012-10-15 14:35:36 +00:00
|
|
|
tinfo->queued[i] = 0;
|
2011-03-10 11:40:06 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
traced_unlock(&tinfo->lock, flags);
|
|
|
|
|
2011-07-01 14:07:56 +00:00
|
|
|
if (!list_empty(&tmp_list)) {
|
|
|
|
aio_sync_all(output, &tmp_list);
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("sync thread has stopped.\n");
|
2011-02-23 20:48:06 +00:00
|
|
|
tinfo->terminated = true;
|
2012-10-15 14:35:36 +00:00
|
|
|
wake_up_interruptible_all(&tinfo->terminate_event);
|
2010-11-26 13:45:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-26 10:31:56 +00:00
|
|
|
static int aio_event_thread(void *data)
|
|
|
|
{
|
|
|
|
struct aio_threadinfo *tinfo = data;
|
|
|
|
struct aio_output *output = tinfo->output;
|
|
|
|
struct aio_threadinfo *other = &output->tinfo[2];
|
|
|
|
int err = -ENOMEM;
|
|
|
|
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("event thread has started.\n");
|
2011-08-26 10:31:56 +00:00
|
|
|
//set_user_nice(current, -20);
|
|
|
|
|
|
|
|
use_fake_mm();
|
|
|
|
if (!current->mm)
|
|
|
|
goto err;
|
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
err = aio_start_thread(output, &output->tinfo[2], aio_sync_thread, 'y');
|
2011-08-26 10:31:56 +00:00
|
|
|
if (unlikely(err < 0))
|
|
|
|
goto err;
|
|
|
|
|
2012-12-19 15:19:33 +00:00
|
|
|
while (!brick_thread_should_stop() || atomic_read(&tinfo->queued_sum) > 0) {
|
2011-08-26 10:31:56 +00:00
|
|
|
mm_segment_t oldfs;
|
|
|
|
int count;
|
|
|
|
int i;
|
|
|
|
struct timespec timeout = {
|
2012-10-15 14:35:36 +00:00
|
|
|
.tv_sec = 1,
|
2011-08-26 10:31:56 +00:00
|
|
|
};
|
|
|
|
struct io_event events[MARS_MAX_AIO_READ];
|
|
|
|
|
|
|
|
oldfs = get_fs();
|
|
|
|
set_fs(get_ds());
|
|
|
|
/* TODO: don't timeout upon termination.
|
|
|
|
* Probably we should submit a dummy request.
|
|
|
|
*/
|
|
|
|
count = sys_io_getevents(output->ctxp, 1, MARS_MAX_AIO_READ, events, &timeout);
|
|
|
|
set_fs(oldfs);
|
|
|
|
|
2012-12-18 07:00:27 +00:00
|
|
|
if (likely(count > 0)) {
|
|
|
|
atomic_sub(count, &output->submit_count);
|
|
|
|
}
|
|
|
|
|
2011-08-26 10:31:56 +00:00
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
struct aio_mref_aspect *mref_a = (void*)events[i].data;
|
|
|
|
struct mref_object *mref;
|
|
|
|
int err = events[i].res;
|
|
|
|
|
|
|
|
if (!mref_a) {
|
|
|
|
continue; // this was a dummy request
|
|
|
|
}
|
|
|
|
mref = mref_a->object;
|
|
|
|
|
|
|
|
MARS_IO("AIO done %p pos = %lld len = %d rw = %d\n", mref, mref->ref_pos, mref->ref_len, mref->ref_rw);
|
|
|
|
|
2013-04-16 07:42:34 +00:00
|
|
|
mapfree_set(output->mf, mref->ref_pos, mref->ref_pos + mref->ref_len);
|
|
|
|
|
2011-08-26 10:31:56 +00:00
|
|
|
if (output->brick->o_fdsync
|
|
|
|
&& err >= 0
|
|
|
|
&& mref->ref_rw != READ
|
|
|
|
&& !mref->ref_skip_sync
|
|
|
|
&& !mref_a->resubmit++) {
|
|
|
|
// workaround for non-implemented AIO FSYNC operation
|
2012-12-26 18:35:49 +00:00
|
|
|
if (output->mf &&
|
|
|
|
output->mf->mf_filp &&
|
|
|
|
output->mf->mf_filp->f_op &&
|
|
|
|
!output->mf->mf_filp->f_op->aio_fsync) {
|
2011-08-26 10:31:56 +00:00
|
|
|
mars_trace(mref, "aio_fsync");
|
|
|
|
_enqueue(other, mref_a, mref->ref_prio, true);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
err = aio_submit(output, mref_a, true);
|
|
|
|
if (likely(err >= 0))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-07-10 07:53:59 +00:00
|
|
|
_complete(output, mref_a, err);
|
2011-08-26 10:31:56 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err = 0;
|
|
|
|
|
|
|
|
err:
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("event thread has stopped, err = %d\n", err);
|
2011-08-26 10:31:56 +00:00
|
|
|
|
|
|
|
aio_stop_thread(output, 2, false);
|
|
|
|
|
|
|
|
unuse_fake_mm();
|
|
|
|
|
|
|
|
tinfo->terminated = true;
|
2012-10-15 14:35:36 +00:00
|
|
|
wake_up_interruptible_all(&tinfo->terminate_event);
|
2011-08-26 10:31:56 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-08-31 11:42:04 +00:00
|
|
|
#if 1
|
|
|
|
/* This should go to fs/open.c (as long as vfs_submit() is not implemented)
|
|
|
|
*/
|
|
|
|
#include <linux/fdtable.h>
|
|
|
|
void fd_uninstall(unsigned int fd)
|
|
|
|
{
|
|
|
|
struct files_struct *files = current->files;
|
|
|
|
struct fdtable *fdt;
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("fd = %d\n", fd);
|
2013-07-10 04:50:36 +00:00
|
|
|
if (unlikely(fd < 0)) {
|
|
|
|
MARS_ERR("bad fd = %d\n", fd);
|
|
|
|
return;
|
|
|
|
}
|
2011-08-31 11:42:04 +00:00
|
|
|
spin_lock(&files->file_lock);
|
|
|
|
fdt = files_fdtable(files);
|
|
|
|
rcu_assign_pointer(fdt->fd[fd], NULL);
|
|
|
|
spin_unlock(&files->file_lock);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(fd_uninstall);
|
|
|
|
#endif
|
|
|
|
|
2013-07-10 04:46:45 +00:00
|
|
|
static
|
|
|
|
atomic_t ioctx_count = ATOMIC_INIT(0);
|
|
|
|
|
2013-01-15 16:55:27 +00:00
|
|
|
static
|
|
|
|
void _destroy_ioctx(struct aio_output *output)
|
|
|
|
{
|
|
|
|
if (unlikely(!output))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
aio_stop_thread(output, 1, true);
|
|
|
|
|
|
|
|
use_fake_mm();
|
|
|
|
|
|
|
|
if (likely(output->ctxp)) {
|
|
|
|
mm_segment_t oldfs;
|
2013-07-10 04:46:45 +00:00
|
|
|
int err;
|
2013-01-15 16:55:27 +00:00
|
|
|
|
2013-07-10 04:46:45 +00:00
|
|
|
MARS_DBG("ioctx count = %d destroying %p\n", atomic_read(&ioctx_count), (void*)output->ctxp);
|
2013-01-15 16:55:27 +00:00
|
|
|
oldfs = get_fs();
|
|
|
|
set_fs(get_ds());
|
2013-07-10 04:46:45 +00:00
|
|
|
err = sys_io_destroy(output->ctxp);
|
2013-01-15 16:55:27 +00:00
|
|
|
set_fs(oldfs);
|
2013-07-10 04:46:45 +00:00
|
|
|
atomic_dec(&ioctx_count);
|
|
|
|
MARS_DBG("ioctx count = %d status = %d\n", atomic_read(&ioctx_count), err);
|
2013-01-15 16:55:27 +00:00
|
|
|
output->ctxp = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (likely(output->fd >= 0)) {
|
|
|
|
MARS_DBG("destroying fd %d\n", output->fd);
|
|
|
|
fd_uninstall(output->fd);
|
|
|
|
put_unused_fd(output->fd);
|
|
|
|
output->fd = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (likely(current->mm)) {
|
|
|
|
unuse_fake_mm();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int _create_ioctx(struct aio_output *output)
|
2011-08-26 10:31:56 +00:00
|
|
|
{
|
2012-12-26 18:35:49 +00:00
|
|
|
struct file *file;
|
2012-01-25 13:20:47 +00:00
|
|
|
mm_segment_t oldfs;
|
|
|
|
int err = -EINVAL;
|
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
CHECK_PTR_NULL(output, done);
|
|
|
|
CHECK_PTR_NULL(output->mf, done);
|
|
|
|
file = output->mf->mf_filp;
|
2012-01-25 13:20:47 +00:00
|
|
|
CHECK_PTR_NULL(file, done);
|
|
|
|
|
2011-08-31 11:42:04 +00:00
|
|
|
/* TODO: this is provisionary. We only need it for sys_io_submit()
|
|
|
|
* which uses userspace concepts like file handles.
|
|
|
|
* This should be accompanied by a future kernelsapce vfs_submit() or
|
2011-08-26 10:31:56 +00:00
|
|
|
* do_submit() which currently does not exist :(
|
|
|
|
*/
|
|
|
|
err = get_unused_fd();
|
2013-07-10 04:46:45 +00:00
|
|
|
MARS_DBG("file %p '%s' new fd = %d\n", file, output->mf->mf_name, err);
|
2013-01-12 11:47:25 +00:00
|
|
|
if (unlikely(err < 0)) {
|
|
|
|
MARS_ERR("cannot get fd, err=%d\n", err);
|
2011-08-26 10:31:56 +00:00
|
|
|
goto done;
|
2013-01-12 11:47:25 +00:00
|
|
|
}
|
2011-08-26 10:31:56 +00:00
|
|
|
output->fd = err;
|
2012-01-25 13:20:47 +00:00
|
|
|
fd_install(err, file);
|
2011-08-26 10:31:56 +00:00
|
|
|
|
|
|
|
use_fake_mm();
|
|
|
|
|
|
|
|
err = -ENOMEM;
|
2013-01-12 11:47:25 +00:00
|
|
|
if (unlikely(!current->mm)) {
|
|
|
|
MARS_ERR("cannot fake mm\n");
|
2013-01-15 16:55:27 +00:00
|
|
|
goto done;
|
2013-01-12 11:47:25 +00:00
|
|
|
}
|
2011-08-26 10:31:56 +00:00
|
|
|
|
2013-07-10 04:46:45 +00:00
|
|
|
MARS_DBG("ioctx count = %d old = %p\n", atomic_read(&ioctx_count), (void*)output->ctxp);
|
2013-07-10 04:50:36 +00:00
|
|
|
output->ctxp = 0;
|
2013-07-10 04:46:45 +00:00
|
|
|
|
2012-01-25 13:20:47 +00:00
|
|
|
oldfs = get_fs();
|
|
|
|
set_fs(get_ds());
|
|
|
|
err = sys_io_setup(MARS_MAX_AIO, &output->ctxp);
|
|
|
|
set_fs(oldfs);
|
2013-07-10 04:46:45 +00:00
|
|
|
if (likely(output->ctxp))
|
|
|
|
atomic_inc(&ioctx_count);
|
|
|
|
MARS_DBG("ioctx count = %d new = %p status = %d\n", atomic_read(&ioctx_count), (void*)output->ctxp, err);
|
2013-01-12 11:47:25 +00:00
|
|
|
if (unlikely(err < 0)) {
|
|
|
|
MARS_ERR("io_setup failed, err=%d\n", err);
|
2013-01-15 16:55:27 +00:00
|
|
|
goto done;
|
2013-01-12 11:47:25 +00:00
|
|
|
}
|
2012-01-25 13:20:47 +00:00
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
err = aio_start_thread(output, &output->tinfo[1], aio_event_thread, 'e');
|
2013-01-12 11:47:25 +00:00
|
|
|
if (unlikely(err < 0)) {
|
|
|
|
MARS_ERR("could not start event thread\n");
|
2013-01-15 16:55:27 +00:00
|
|
|
goto done;
|
2013-01-12 11:47:25 +00:00
|
|
|
}
|
2011-08-26 10:31:56 +00:00
|
|
|
|
2013-01-15 16:55:27 +00:00
|
|
|
done:
|
|
|
|
if (likely(current->mm)) {
|
|
|
|
unuse_fake_mm();
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int aio_submit_thread(void *data)
|
|
|
|
{
|
|
|
|
struct aio_threadinfo *tinfo = data;
|
|
|
|
struct aio_output *output = tinfo->output;
|
|
|
|
struct file *file;
|
|
|
|
int err = -EINVAL;
|
|
|
|
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("submit thread has started.\n");
|
|
|
|
|
2013-01-15 16:55:27 +00:00
|
|
|
file = output->mf->mf_filp;
|
|
|
|
|
|
|
|
use_fake_mm();
|
|
|
|
|
2012-12-19 15:19:33 +00:00
|
|
|
while (!brick_thread_should_stop() || atomic_read(&output->read_count) + atomic_read(&output->write_count) + atomic_read(&tinfo->queued_sum) > 0) {
|
2011-08-26 10:31:56 +00:00
|
|
|
struct aio_mref_aspect *mref_a;
|
|
|
|
struct mref_object *mref;
|
|
|
|
int sleeptime;
|
2012-12-18 07:00:27 +00:00
|
|
|
int status;
|
2011-08-26 10:31:56 +00:00
|
|
|
|
|
|
|
wait_event_interruptible_timeout(
|
|
|
|
tinfo->event,
|
2012-12-19 15:19:33 +00:00
|
|
|
atomic_read(&tinfo->queued_sum) > 0,
|
2012-10-15 14:35:36 +00:00
|
|
|
HZ / 4);
|
2011-08-26 10:31:56 +00:00
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
mref_a = _dequeue(tinfo);
|
2011-08-26 10:31:56 +00:00
|
|
|
if (!mref_a) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
mref = mref_a->object;
|
2012-12-18 07:00:27 +00:00
|
|
|
status = -EINVAL;
|
|
|
|
CHECK_PTR(mref, error);
|
2012-02-20 09:34:42 +00:00
|
|
|
|
2013-04-16 07:37:54 +00:00
|
|
|
mapfree_set(output->mf, mref->ref_pos, -1);
|
2012-02-20 09:34:42 +00:00
|
|
|
|
2013-07-03 10:43:58 +00:00
|
|
|
if (mref->ref_rw) {
|
|
|
|
insert_dirty(output, mref_a);
|
|
|
|
}
|
|
|
|
|
2012-02-20 09:34:42 +00:00
|
|
|
// check for reads exactly at EOF (special case)
|
2011-08-26 10:31:56 +00:00
|
|
|
if (mref->ref_pos == mref->ref_total_size &&
|
|
|
|
!mref->ref_rw &&
|
|
|
|
mref->ref_timeout > 0) {
|
|
|
|
loff_t total_size = i_size_read(file->f_mapping->host);
|
|
|
|
loff_t len = total_size - mref->ref_pos;
|
|
|
|
if (len > 0) {
|
|
|
|
mref->ref_total_size = total_size;
|
|
|
|
mref->ref_len = len;
|
|
|
|
} else {
|
|
|
|
if (!mref_a->start_jiffies) {
|
|
|
|
mref_a->start_jiffies = jiffies;
|
|
|
|
}
|
|
|
|
if ((long long)jiffies - mref_a->start_jiffies <= mref->ref_timeout) {
|
2012-12-19 15:19:33 +00:00
|
|
|
if (atomic_read(&tinfo->queued_sum) <= 0) {
|
2011-08-26 10:31:56 +00:00
|
|
|
atomic_inc(&output->total_msleep_count);
|
2012-09-17 10:11:25 +00:00
|
|
|
brick_msleep(1000 * 4 / HZ);
|
2011-08-26 10:31:56 +00:00
|
|
|
}
|
|
|
|
_enqueue(tinfo, mref_a, MARS_PRIO_LOW, true);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MARS_DBG("ENODATA %lld\n", len);
|
2013-07-10 07:53:59 +00:00
|
|
|
_complete(output, mref_a, -ENODATA);
|
2011-08-26 10:31:56 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-15 14:35:36 +00:00
|
|
|
sleeptime = 1;
|
2011-08-26 10:31:56 +00:00
|
|
|
for (;;) {
|
2012-12-18 07:00:27 +00:00
|
|
|
status = aio_submit(output, mref_a, false);
|
2011-08-26 10:31:56 +00:00
|
|
|
|
2012-12-18 07:00:27 +00:00
|
|
|
if (likely(status != -EAGAIN)) {
|
2011-08-26 10:31:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
atomic_inc(&output->total_delay_count);
|
2012-09-17 10:11:25 +00:00
|
|
|
brick_msleep(sleeptime);
|
2011-08-26 10:31:56 +00:00
|
|
|
if (sleeptime < 100) {
|
2012-10-15 14:35:36 +00:00
|
|
|
sleeptime++;
|
2011-08-26 10:31:56 +00:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 07:00:27 +00:00
|
|
|
error:
|
|
|
|
if (unlikely(status < 0)) {
|
|
|
|
MARS_IO("submit_count = %d status = %d\n", atomic_read(&output->submit_count), status);
|
2013-07-10 07:53:59 +00:00
|
|
|
_complete_mref(output, mref, status);
|
2011-08-26 10:31:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-15 16:55:27 +00:00
|
|
|
MARS_DBG("submit thread has stopped, status = %d.\n", err);
|
2011-08-26 10:31:56 +00:00
|
|
|
|
2013-01-15 16:55:27 +00:00
|
|
|
if (likely(current->mm)) {
|
|
|
|
unuse_fake_mm();
|
|
|
|
}
|
2011-08-26 10:31:56 +00:00
|
|
|
|
|
|
|
tinfo->terminated = true;
|
2012-10-15 14:35:36 +00:00
|
|
|
wake_up_interruptible_all(&tinfo->terminate_event);
|
2011-08-26 10:31:56 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static int aio_get_info(struct aio_output *output, struct mars_info *info)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2012-12-26 18:35:49 +00:00
|
|
|
struct file *file;
|
2013-07-03 10:43:58 +00:00
|
|
|
loff_t min;
|
|
|
|
loff_t max;
|
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
if (unlikely(!output ||
|
|
|
|
!output->mf ||
|
|
|
|
!(file = output->mf->mf_filp) ||
|
|
|
|
!file->f_mapping ||
|
|
|
|
!file->f_mapping->host))
|
2011-02-23 20:48:06 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2013-04-16 08:01:45 +00:00
|
|
|
info->tf_align = 1;
|
|
|
|
info->tf_min_size = 1;
|
2013-04-16 07:42:34 +00:00
|
|
|
|
|
|
|
/* Workaround for races in the page cache.
|
|
|
|
*
|
|
|
|
* It appears that concurrent reads and writes seem to
|
|
|
|
* result in inconsistent reads in some very rare cases, due to
|
|
|
|
* races. Sometimes, the inode claims that the file has been already
|
|
|
|
* appended by a write operation, but the data has not actually hit
|
|
|
|
* the page cache, such that a concurrent read gets NULL blocks.
|
|
|
|
*/
|
2013-07-03 10:43:58 +00:00
|
|
|
min = i_size_read(file->f_mapping->host);
|
|
|
|
max = 0;
|
|
|
|
|
|
|
|
if (!output->brick->is_static_device) {
|
|
|
|
get_dirty(output, &min, &max);
|
2013-04-16 07:42:34 +00:00
|
|
|
}
|
2013-06-03 12:49:21 +00:00
|
|
|
|
2013-07-03 10:43:58 +00:00
|
|
|
info->current_size = min;
|
2013-06-03 12:49:21 +00:00
|
|
|
MARS_DBG("determined file size = %lld\n", info->current_size);
|
|
|
|
|
2010-11-26 13:45:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-04-12 15:31:08 +00:00
|
|
|
//////////////// informational / statistics ///////////////
|
|
|
|
|
|
|
|
static noinline
|
|
|
|
char *aio_statistics(struct aio_brick *brick, int verbose)
|
|
|
|
{
|
|
|
|
struct aio_output *output = brick->outputs[0];
|
2012-10-12 12:17:34 +00:00
|
|
|
char *res = brick_string_alloc(4096);
|
2011-05-13 11:19:28 +00:00
|
|
|
char *sync = NULL;
|
2012-10-12 12:17:34 +00:00
|
|
|
int pos = 0;
|
2011-04-12 15:31:08 +00:00
|
|
|
if (!res)
|
|
|
|
return NULL;
|
|
|
|
|
2012-10-12 12:17:34 +00:00
|
|
|
pos += report_timing(&timings[0], res + pos, 4096 - pos);
|
|
|
|
pos += report_timing(&timings[1], res + pos, 4096 - pos);
|
2012-10-15 14:35:36 +00:00
|
|
|
pos += report_timing(&timings[2], res + pos, 4096 - pos);
|
2011-04-12 15:31:08 +00:00
|
|
|
|
2012-10-12 12:17:34 +00:00
|
|
|
snprintf(res + pos, 4096 - pos,
|
|
|
|
"total "
|
|
|
|
"reads = %d "
|
2012-02-12 11:19:57 +00:00
|
|
|
"writes = %d "
|
|
|
|
"allocs = %d "
|
2012-12-20 10:32:47 +00:00
|
|
|
"submits = %d "
|
2012-12-20 11:02:54 +00:00
|
|
|
"again = %d "
|
2012-02-12 11:19:57 +00:00
|
|
|
"delays = %d "
|
|
|
|
"msleeps = %d "
|
|
|
|
"fdsyncs = %d "
|
2012-02-20 09:34:42 +00:00
|
|
|
"fdsync_waits = %d "
|
|
|
|
"map_free = %d | "
|
2012-02-12 11:19:57 +00:00
|
|
|
"flying reads = %d "
|
|
|
|
"writes = %d "
|
|
|
|
"allocs = %d "
|
2012-12-18 07:00:27 +00:00
|
|
|
"submits = %d "
|
2012-10-15 14:35:36 +00:00
|
|
|
"q0 = %d "
|
|
|
|
"q1 = %d "
|
|
|
|
"q2 = %d "
|
|
|
|
"| total "
|
|
|
|
"q0 = %d "
|
|
|
|
"q1 = %d "
|
|
|
|
"q2 = %d "
|
|
|
|
"%s\n",
|
2012-02-12 11:19:57 +00:00
|
|
|
atomic_read(&output->total_read_count),
|
|
|
|
atomic_read(&output->total_write_count),
|
|
|
|
atomic_read(&output->total_alloc_count),
|
2012-12-20 10:32:47 +00:00
|
|
|
atomic_read(&output->total_submit_count),
|
2012-12-20 11:02:54 +00:00
|
|
|
atomic_read(&output->total_again_count),
|
2012-02-12 11:19:57 +00:00
|
|
|
atomic_read(&output->total_delay_count),
|
|
|
|
atomic_read(&output->total_msleep_count),
|
|
|
|
atomic_read(&output->total_fdsync_count),
|
|
|
|
atomic_read(&output->total_fdsync_wait_count),
|
2012-02-20 09:34:42 +00:00
|
|
|
atomic_read(&output->total_mapfree_count),
|
2012-02-12 11:19:57 +00:00
|
|
|
atomic_read(&output->read_count),
|
|
|
|
atomic_read(&output->write_count),
|
|
|
|
atomic_read(&output->alloc_count),
|
2012-12-18 07:00:27 +00:00
|
|
|
atomic_read(&output->submit_count),
|
2012-12-19 15:19:33 +00:00
|
|
|
atomic_read(&output->tinfo[0].queued_sum),
|
|
|
|
atomic_read(&output->tinfo[1].queued_sum),
|
|
|
|
atomic_read(&output->tinfo[2].queued_sum),
|
2012-10-15 14:35:36 +00:00
|
|
|
atomic_read(&output->tinfo[0].total_enqueue_count),
|
|
|
|
atomic_read(&output->tinfo[1].total_enqueue_count),
|
|
|
|
atomic_read(&output->tinfo[2].total_enqueue_count),
|
2012-02-12 11:19:57 +00:00
|
|
|
sync ? sync : "");
|
2011-05-13 11:19:28 +00:00
|
|
|
|
|
|
|
if (sync)
|
2011-08-12 11:09:48 +00:00
|
|
|
brick_string_free(sync);
|
2011-04-12 15:31:08 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static noinline
|
|
|
|
void aio_reset_statistics(struct aio_brick *brick)
|
|
|
|
{
|
|
|
|
struct aio_output *output = brick->outputs[0];
|
2011-05-06 10:25:52 +00:00
|
|
|
int i;
|
2011-04-12 15:31:08 +00:00
|
|
|
atomic_set(&output->total_read_count, 0);
|
|
|
|
atomic_set(&output->total_write_count, 0);
|
|
|
|
atomic_set(&output->total_alloc_count, 0);
|
2012-12-20 10:32:47 +00:00
|
|
|
atomic_set(&output->total_submit_count, 0);
|
2012-12-20 11:02:54 +00:00
|
|
|
atomic_set(&output->total_again_count, 0);
|
2011-04-29 09:36:10 +00:00
|
|
|
atomic_set(&output->total_delay_count, 0);
|
2011-05-06 10:25:52 +00:00
|
|
|
atomic_set(&output->total_msleep_count, 0);
|
|
|
|
atomic_set(&output->total_fdsync_count, 0);
|
2011-04-29 09:36:10 +00:00
|
|
|
atomic_set(&output->total_fdsync_wait_count, 0);
|
2012-02-20 09:34:42 +00:00
|
|
|
atomic_set(&output->total_mapfree_count, 0);
|
2011-05-06 10:25:52 +00:00
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
struct aio_threadinfo *tinfo = &output->tinfo[i];
|
|
|
|
atomic_set(&tinfo->total_enqueue_count, 0);
|
|
|
|
}
|
2011-04-12 15:31:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-26 13:45:10 +00:00
|
|
|
//////////////// object / aspect constructors / destructors ///////////////
|
|
|
|
|
2011-10-03 17:31:02 +00:00
|
|
|
static int aio_mref_aspect_init_fn(struct generic_aspect *_ini)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2011-03-07 10:27:38 +00:00
|
|
|
struct aio_mref_aspect *ini = (void*)_ini;
|
2010-11-26 13:45:10 +00:00
|
|
|
INIT_LIST_HEAD(&ini->io_head);
|
2013-07-03 10:43:58 +00:00
|
|
|
INIT_LIST_HEAD(&ini->dirty_head);
|
2010-11-26 13:45:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-03 17:31:02 +00:00
|
|
|
static void aio_mref_aspect_exit_fn(struct generic_aspect *_ini)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2011-03-07 10:27:38 +00:00
|
|
|
struct aio_mref_aspect *ini = (void*)_ini;
|
2013-07-03 10:43:58 +00:00
|
|
|
CHECK_HEAD_EMPTY(&ini->dirty_head);
|
|
|
|
CHECK_HEAD_EMPTY(&ini->io_head);
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
MARS_MAKE_STATICS(aio);
|
2010-11-26 13:45:10 +00:00
|
|
|
|
|
|
|
////////////////////// brick constructors / destructors ////////////////////
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static int aio_brick_construct(struct aio_brick *brick)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static int aio_switch(struct aio_brick *brick)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2012-10-15 14:35:36 +00:00
|
|
|
static int index;
|
2011-03-07 10:27:38 +00:00
|
|
|
struct aio_output *output = brick->outputs[0];
|
2011-10-07 09:13:46 +00:00
|
|
|
const char *path = output->brick->brick_path;
|
2012-12-26 18:35:49 +00:00
|
|
|
int flags = O_RDWR | O_LARGEFILE;
|
|
|
|
int status = 0;
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2011-02-23 20:48:06 +00:00
|
|
|
MARS_DBG("power.button = %d\n", brick->power.button);
|
|
|
|
if (!brick->power.button)
|
|
|
|
goto cleanup;
|
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
if (brick->power.led_on || output->mf)
|
2011-03-01 18:00:14 +00:00
|
|
|
goto done;
|
|
|
|
|
2011-02-23 20:48:06 +00:00
|
|
|
mars_power_led_off((void*)brick, false);
|
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
if (brick->o_creat) {
|
|
|
|
flags |= O_CREAT;
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("using O_CREAT on %s\n", path);
|
2012-12-26 18:35:49 +00:00
|
|
|
}
|
2011-03-11 13:57:54 +00:00
|
|
|
if (brick->o_direct) {
|
2010-11-26 13:45:10 +00:00
|
|
|
flags |= O_DIRECT;
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("using O_DIRECT on %s\n", path);
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
output->mf = mapfree_get(path, flags);
|
|
|
|
if (unlikely(!output->mf)) {
|
2013-07-10 04:46:45 +00:00
|
|
|
MARS_ERR("could not open file = '%s' flags = %d\n", path, flags);
|
2012-12-26 18:35:49 +00:00
|
|
|
status = -ENOENT;
|
|
|
|
goto err;
|
|
|
|
}
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2013-04-15 10:11:19 +00:00
|
|
|
output->index = ++index;
|
|
|
|
|
2013-01-15 16:55:27 +00:00
|
|
|
status = _create_ioctx(output);
|
|
|
|
if (unlikely(status < 0)) {
|
2013-07-10 04:46:45 +00:00
|
|
|
MARS_ERR("could not create ioctx, status = %d\n", status);
|
2013-01-15 16:55:27 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2012-12-26 18:35:49 +00:00
|
|
|
status = aio_start_thread(output, &output->tinfo[0], aio_submit_thread, 's');
|
|
|
|
if (unlikely(status < 0)) {
|
|
|
|
MARS_ERR("could not start theads, status = %d\n", status);
|
2011-08-26 10:31:56 +00:00
|
|
|
goto err;
|
2012-12-26 18:35:49 +00:00
|
|
|
}
|
2010-11-26 13:45:10 +00:00
|
|
|
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("opened file '%s'\n", path);
|
2011-02-23 20:48:06 +00:00
|
|
|
mars_power_led_on((void*)brick, true);
|
2013-05-10 06:50:48 +00:00
|
|
|
|
2011-03-01 18:00:14 +00:00
|
|
|
done:
|
2010-11-26 13:45:10 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
2012-12-26 18:35:49 +00:00
|
|
|
MARS_ERR("status = %d\n", status);
|
2010-11-26 13:45:10 +00:00
|
|
|
cleanup:
|
2011-03-01 18:00:14 +00:00
|
|
|
if (brick->power.led_off) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2011-02-23 20:48:06 +00:00
|
|
|
mars_power_led_on((void*)brick, false);
|
2011-08-26 10:31:56 +00:00
|
|
|
|
|
|
|
aio_stop_thread(output, 0, false);
|
2011-08-25 10:16:32 +00:00
|
|
|
|
2013-01-15 16:55:27 +00:00
|
|
|
_destroy_ioctx(output);
|
|
|
|
|
2011-02-23 20:48:06 +00:00
|
|
|
mars_power_led_off((void*)brick,
|
|
|
|
(output->tinfo[0].thread == NULL &&
|
|
|
|
output->tinfo[1].thread == NULL &&
|
|
|
|
output->tinfo[2].thread == NULL));
|
2011-08-25 10:16:32 +00:00
|
|
|
|
2013-07-10 04:46:45 +00:00
|
|
|
MARS_DBG("switch off led_off = %d status = %d\n", brick->power.led_off, status);
|
2011-02-23 20:48:06 +00:00
|
|
|
if (brick->power.led_off) {
|
2012-12-26 18:35:49 +00:00
|
|
|
if (output->mf) {
|
2013-07-10 04:46:45 +00:00
|
|
|
MARS_DBG("closing file = '%s'\n", output->mf->mf_name);
|
2012-12-26 18:35:49 +00:00
|
|
|
mapfree_put(output->mf);
|
|
|
|
output->mf = NULL;
|
2011-02-23 20:48:06 +00:00
|
|
|
}
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
2012-12-26 18:35:49 +00:00
|
|
|
return status;
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static int aio_output_construct(struct aio_output *output)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2013-07-03 10:43:58 +00:00
|
|
|
INIT_LIST_HEAD(&output->dirty_anchor);
|
|
|
|
spin_lock_init(&output->dirty_lock);
|
2011-04-29 09:36:10 +00:00
|
|
|
init_waitqueue_head(&output->fdsync_event);
|
2013-07-10 04:50:36 +00:00
|
|
|
output->fd = -1;
|
2010-11-26 13:45:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static int aio_output_destruct(struct aio_output *output)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2013-07-03 10:43:58 +00:00
|
|
|
CHECK_HEAD_EMPTY(&output->dirty_anchor);
|
2013-07-10 04:46:45 +00:00
|
|
|
if (unlikely(output->fd >= 0)) {
|
|
|
|
MARS_ERR("active fd = %d detected\n", output->fd);
|
|
|
|
}
|
2011-03-23 17:58:02 +00:00
|
|
|
return 0;
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////// static structs ////////////////////////
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static struct aio_brick_ops aio_brick_ops = {
|
|
|
|
.brick_switch = aio_switch,
|
2011-04-12 15:31:08 +00:00
|
|
|
.brick_statistics = aio_statistics,
|
|
|
|
.reset_statistics = aio_reset_statistics,
|
2010-11-26 13:45:10 +00:00
|
|
|
};
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static struct aio_output_ops aio_output_ops = {
|
|
|
|
.mref_get = aio_ref_get,
|
|
|
|
.mref_put = aio_ref_put,
|
|
|
|
.mref_io = aio_ref_io,
|
|
|
|
.mars_get_info = aio_get_info,
|
2010-11-26 13:45:10 +00:00
|
|
|
};
|
|
|
|
|
2011-03-23 17:58:02 +00:00
|
|
|
const struct aio_input_type aio_input_type = {
|
|
|
|
.type_name = "aio_input",
|
|
|
|
.input_size = sizeof(struct aio_input),
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct aio_input_type *aio_input_types[] = {
|
|
|
|
&aio_input_type,
|
|
|
|
};
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
const struct aio_output_type aio_output_type = {
|
|
|
|
.type_name = "aio_output",
|
|
|
|
.output_size = sizeof(struct aio_output),
|
|
|
|
.master_ops = &aio_output_ops,
|
|
|
|
.output_construct = &aio_output_construct,
|
|
|
|
.output_destruct = &aio_output_destruct,
|
2010-11-26 13:45:10 +00:00
|
|
|
};
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
static const struct aio_output_type *aio_output_types[] = {
|
|
|
|
&aio_output_type,
|
2010-11-26 13:45:10 +00:00
|
|
|
};
|
|
|
|
|
2011-03-07 10:27:38 +00:00
|
|
|
const struct aio_brick_type aio_brick_type = {
|
|
|
|
.type_name = "aio_brick",
|
|
|
|
.brick_size = sizeof(struct aio_brick),
|
2010-11-26 13:45:10 +00:00
|
|
|
.max_inputs = 0,
|
|
|
|
.max_outputs = 1,
|
2011-03-07 10:27:38 +00:00
|
|
|
.master_ops = &aio_brick_ops,
|
2011-10-03 17:31:02 +00:00
|
|
|
.aspect_types = aio_aspect_types,
|
2011-03-23 17:58:02 +00:00
|
|
|
.default_input_types = aio_input_types,
|
2011-03-07 10:27:38 +00:00
|
|
|
.default_output_types = aio_output_types,
|
|
|
|
.brick_construct = &aio_brick_construct,
|
2010-11-26 13:45:10 +00:00
|
|
|
};
|
2011-03-07 10:27:38 +00:00
|
|
|
EXPORT_SYMBOL_GPL(aio_brick_type);
|
2010-11-26 13:45:10 +00:00
|
|
|
|
|
|
|
////////////////// module init stuff /////////////////////////
|
|
|
|
|
2011-08-25 10:16:32 +00:00
|
|
|
int __init init_mars_aio(void)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("init_aio()\n");
|
2011-03-07 10:27:38 +00:00
|
|
|
_aio_brick_type = (void*)&aio_brick_type;
|
|
|
|
return aio_register_brick_type();
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2011-08-25 10:16:32 +00:00
|
|
|
void __exit exit_mars_aio(void)
|
2010-11-26 13:45:10 +00:00
|
|
|
{
|
2013-05-10 06:50:48 +00:00
|
|
|
MARS_DBG("exit_aio()\n");
|
2011-03-07 10:27:38 +00:00
|
|
|
aio_unregister_brick_type();
|
2010-11-26 13:45:10 +00:00
|
|
|
}
|
|
|
|
|
2011-08-25 10:16:32 +00:00
|
|
|
#ifndef CONFIG_MARS_HAVE_BIGMODULE
|
2011-03-07 10:27:38 +00:00
|
|
|
MODULE_DESCRIPTION("MARS aio brick");
|
2010-11-26 13:45:10 +00:00
|
|
|
MODULE_AUTHOR("Thomas Schoebel-Theuer <tst@1und1.de>");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
2011-08-25 10:16:32 +00:00
|
|
|
module_init(init_mars_aio);
|
|
|
|
module_exit(exit_mars_aio);
|
|
|
|
#endif
|