mars/mars_copy.h

78 lines
1.5 KiB
C
Raw Normal View History

2011-02-23 20:48:06 +00:00
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef MARS_COPY_H
#define MARS_COPY_H
#include <linux/wait.h>
#include <linux/semaphore.h>
#define INPUT_A_IO 0
#define INPUT_A_COPY 1
#define INPUT_B_IO 2
#define INPUT_B_COPY 3
2011-03-22 14:36:26 +00:00
//#define COPY_CHUNK (64 * 1024)
2011-06-10 13:57:52 +00:00
#define COPY_CHUNK (PAGE_SIZE)
#define MAX_COPY_PARA (4 * 1024 * 1024 / COPY_CHUNK)
2011-02-23 20:48:06 +00:00
enum {
2011-06-17 11:32:38 +00:00
COPY_STATE_START = 0,
COPY_STATE_READ1 = 1,
COPY_STATE_READ2 = 2,
COPY_STATE_WRITE = 3,
COPY_STATE_WRITTEN = 4,
COPY_STATE_CLEANUP = 5,
COPY_STATE_FINISHED = 6,
2011-06-10 13:57:52 +00:00
};
struct copy_state {
struct mref_object *table[2];
2011-06-17 11:32:38 +00:00
bool active[2];
2011-06-10 13:57:52 +00:00
char state;
short prev;
short len;
short error;
2011-02-23 20:48:06 +00:00
};
struct copy_mref_aspect {
GENERIC_ASPECT(mref);
struct copy_brick *brick;
int queue;
};
struct copy_brick {
MARS_BRICK(copy);
// parameters
volatile loff_t copy_start;
volatile loff_t copy_end; // stop working if == 0
2011-05-26 14:32:32 +00:00
int io_prio;
int append_mode; // 1 = passively, 2 = actively
2011-02-23 20:48:06 +00:00
bool verify_mode;
2011-05-26 14:32:32 +00:00
bool utilize_mode; // utilize already copied data
// readonly from outside
2011-06-17 11:32:38 +00:00
loff_t copy_last; // current working position
2011-02-23 20:48:06 +00:00
bool low_dirty;
// internal
volatile bool trigger;
volatile unsigned long clash;
atomic_t io_flight;
atomic_t copy_flight;
2011-03-07 05:55:10 +00:00
long long last_jiffies;
2011-02-23 20:48:06 +00:00
wait_queue_head_t event;
struct semaphore mutex;
struct task_struct *thread;
struct generic_object_layout mref_object_layout;
2011-06-10 13:57:52 +00:00
struct copy_state st[MAX_COPY_PARA];
2011-02-23 20:48:06 +00:00
};
struct copy_input {
MARS_INPUT(copy);
};
struct copy_output {
MARS_OUTPUT(copy);
};
MARS_TYPES(copy);
#endif