2010-08-08 20:51:20 +00:00
|
|
|
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
|
|
|
|
#ifndef MARS_TRANS_LOGGER_H
|
|
|
|
#define MARS_TRANS_LOGGER_H
|
|
|
|
|
2011-06-30 13:15:52 +00:00
|
|
|
#define REGION_SIZE_BITS (PAGE_SHIFT + 4)
|
|
|
|
#define REGION_SIZE (1 << REGION_SIZE_BITS)
|
2012-01-31 15:50:06 +00:00
|
|
|
#define TRANS_HASH_MAX 8192
|
|
|
|
//#define TRANS_HASH_MAX 16384
|
2010-08-08 20:51:20 +00:00
|
|
|
|
2010-08-11 16:02:08 +00:00
|
|
|
#include <linux/time.h>
|
2011-04-18 09:23:04 +00:00
|
|
|
|
|
|
|
#include "lib_log.h"
|
|
|
|
#include "lib_pairing_heap.h"
|
2011-04-18 14:14:16 +00:00
|
|
|
#include "lib_queue.h"
|
2010-08-08 20:51:20 +00:00
|
|
|
|
2010-08-11 16:02:08 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-04-18 14:14:16 +00:00
|
|
|
_PAIRING_HEAP_TYPEDEF(logger,)
|
2010-11-12 11:18:40 +00:00
|
|
|
|
2010-08-11 16:02:08 +00:00
|
|
|
struct logger_queue {
|
2011-04-18 14:14:16 +00:00
|
|
|
QUEUE_ANCHOR(logger,loff_t,logger);
|
2011-04-29 09:36:10 +00:00
|
|
|
struct trans_logger_brick *q_brick;
|
2011-03-27 15:18:38 +00:00
|
|
|
const char *q_insert_info;
|
|
|
|
const char *q_pushback_info;
|
|
|
|
const char *q_fetch_info;
|
2011-04-18 14:14:16 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
struct logger_head {
|
|
|
|
struct list_head lh_head;
|
|
|
|
loff_t *lh_pos;
|
|
|
|
struct pairing_heap_logger ph;
|
2010-08-08 20:51:20 +00:00
|
|
|
};
|
|
|
|
|
2010-08-11 16:02:08 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-11-03 11:17:59 +00:00
|
|
|
#ifdef CONFIG_MARS_LOGROT
|
2011-05-13 11:19:28 +00:00
|
|
|
|
2011-04-29 09:36:10 +00:00
|
|
|
#define TL_INPUT_READ 0
|
2011-11-03 11:17:59 +00:00
|
|
|
#define TL_INPUT_WRITEBACK 0
|
|
|
|
#define TL_INPUT_LOG1 1
|
|
|
|
#define TL_INPUT_LOG2 2
|
|
|
|
#define TL_INPUT_NR 3
|
2011-04-29 09:36:10 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define TL_INPUT_READ 0
|
|
|
|
#define TL_INPUT_WRITEBACK 0
|
2011-11-03 11:17:59 +00:00
|
|
|
#define TL_INPUT_LOG1 1
|
|
|
|
#define TL_INPUT_LOG2 1
|
2011-05-13 11:19:28 +00:00
|
|
|
#define TL_INPUT_NR 2
|
2011-04-29 09:36:10 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-08-08 20:51:20 +00:00
|
|
|
struct hash_anchor {
|
2011-06-30 13:15:52 +00:00
|
|
|
struct rw_semaphore hash_mutex;
|
2010-08-08 20:51:20 +00:00
|
|
|
struct list_head hash_anchor;
|
|
|
|
};
|
|
|
|
|
2011-04-08 09:52:46 +00:00
|
|
|
struct writeback_info {
|
2011-10-03 17:31:02 +00:00
|
|
|
struct trans_logger_brick *w_brick;
|
2011-04-18 14:14:16 +00:00
|
|
|
struct logger_head w_lh;
|
2011-04-08 09:52:46 +00:00
|
|
|
loff_t w_pos;
|
|
|
|
int w_len;
|
2011-04-18 14:14:16 +00:00
|
|
|
int w_error;
|
2011-04-08 09:52:46 +00:00
|
|
|
struct list_head w_collect_list; // list of collected orig requests
|
|
|
|
struct list_head w_sub_read_list; // for saving the old data before overwrite
|
|
|
|
struct list_head w_sub_write_list; // for overwriting
|
2011-04-10 16:59:06 +00:00
|
|
|
atomic_t w_sub_read_count;
|
|
|
|
atomic_t w_sub_write_count;
|
2011-04-19 14:46:38 +00:00
|
|
|
atomic_t w_sub_log_count;
|
2011-04-10 16:59:06 +00:00
|
|
|
void (*read_endio)(struct generic_callback *cb);
|
|
|
|
void (*write_endio)(struct generic_callback *cb);
|
2011-04-08 09:52:46 +00:00
|
|
|
};
|
|
|
|
|
2010-12-15 12:13:18 +00:00
|
|
|
struct trans_logger_mref_aspect {
|
|
|
|
GENERIC_ASPECT(mref);
|
2011-10-03 17:31:02 +00:00
|
|
|
struct trans_logger_brick *my_brick;
|
2011-04-29 09:36:10 +00:00
|
|
|
struct trans_logger_input *my_input;
|
2011-05-13 11:19:28 +00:00
|
|
|
struct trans_logger_input *log_input;
|
2011-04-18 14:14:16 +00:00
|
|
|
struct logger_head lh;
|
2010-08-11 16:02:08 +00:00
|
|
|
struct list_head hash_head;
|
2011-04-18 14:14:16 +00:00
|
|
|
//struct list_head q_head;
|
2011-03-20 17:38:08 +00:00
|
|
|
struct list_head pos_head;
|
2011-04-08 09:52:46 +00:00
|
|
|
struct list_head replay_head;
|
|
|
|
struct list_head collect_head;
|
2011-04-18 14:14:16 +00:00
|
|
|
struct pairing_heap_logger ph;
|
2010-12-15 12:13:18 +00:00
|
|
|
struct trans_logger_mref_aspect *shadow_ref;
|
2011-05-13 11:19:28 +00:00
|
|
|
struct trans_logger_mref_aspect *orig_mref_a;
|
2011-04-08 09:52:46 +00:00
|
|
|
void *shadow_data;
|
2012-02-08 08:52:00 +00:00
|
|
|
int orig_rw;
|
2012-02-08 15:44:53 +00:00
|
|
|
int wb_error;
|
2011-04-01 11:18:32 +00:00
|
|
|
bool do_dealloc;
|
2011-04-08 09:52:46 +00:00
|
|
|
bool do_buffered;
|
2011-03-08 16:45:52 +00:00
|
|
|
bool is_hashed;
|
2011-04-08 09:52:46 +00:00
|
|
|
bool is_dirty;
|
2011-04-10 16:59:06 +00:00
|
|
|
bool is_collected;
|
2011-05-26 14:32:32 +00:00
|
|
|
bool is_completed;
|
2010-08-11 16:02:08 +00:00
|
|
|
struct timespec stamp;
|
2011-03-20 17:38:08 +00:00
|
|
|
loff_t log_pos;
|
2010-08-11 16:02:08 +00:00
|
|
|
struct generic_callback cb;
|
2011-04-10 16:59:06 +00:00
|
|
|
struct writeback_info *wb;
|
2011-04-08 09:52:46 +00:00
|
|
|
struct list_head sub_list;
|
|
|
|
struct list_head sub_head;
|
|
|
|
int total_sub_count;
|
2011-06-30 13:15:52 +00:00
|
|
|
int alloc_len;
|
2011-04-08 09:52:46 +00:00
|
|
|
atomic_t current_sub_count;
|
2010-08-11 16:02:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct trans_logger_brick {
|
|
|
|
MARS_BRICK(trans_logger);
|
2010-08-23 05:06:06 +00:00
|
|
|
// parameters
|
2011-06-30 13:15:52 +00:00
|
|
|
int shadow_mem_limit; // max # master shadows
|
2011-02-23 20:48:06 +00:00
|
|
|
int limit_congest;// limit phase1 congestion.
|
2011-11-03 11:22:50 +00:00
|
|
|
int max_mref_size;// shorten mrefs to this maxlen
|
2011-03-11 13:57:54 +00:00
|
|
|
int align_size; // alignment between requests
|
|
|
|
int chunk_size; // must be at least 8K (better 64k)
|
|
|
|
int flush_delay; // delayed firing of incomplete chunks
|
2011-05-26 14:32:32 +00:00
|
|
|
int completion_semantics; // 0 = early completion of all writes, 1 = early completion of non-sync, 2 = late completion
|
2011-11-03 11:17:59 +00:00
|
|
|
int max_flying; // limit # of log write requests in parallel
|
2011-02-23 20:48:06 +00:00
|
|
|
bool do_replay; // mode of operation
|
2011-04-08 09:52:46 +00:00
|
|
|
bool do_continuous_replay; // mode of operation
|
2011-02-23 20:48:06 +00:00
|
|
|
bool log_reads; // additionally log pre-images
|
2011-05-19 11:36:00 +00:00
|
|
|
bool minimize_latency; // ... at the cost of throughput. ==0 means immediate flushing
|
2011-03-18 13:15:40 +00:00
|
|
|
bool debug_shortcut; // only for testing! never use in production!
|
2011-04-08 09:52:46 +00:00
|
|
|
loff_t replay_start_pos; // where to start replay
|
|
|
|
loff_t replay_end_pos; // end of replay
|
2011-11-03 11:17:59 +00:00
|
|
|
int new_input_nr; // whereto we should switchover ASAP
|
2011-02-23 20:48:06 +00:00
|
|
|
// readonly from outside
|
2011-11-03 11:17:59 +00:00
|
|
|
int log_input_nr; // where we are currently logging to
|
|
|
|
int old_input_nr; // where old IO requests may be on the fly
|
2011-04-08 09:52:46 +00:00
|
|
|
int replay_code; // replay errors (if any)
|
2011-03-20 17:38:08 +00:00
|
|
|
// private
|
2011-04-08 09:52:46 +00:00
|
|
|
loff_t old_margin;
|
|
|
|
spinlock_t replay_lock;
|
|
|
|
struct list_head replay_list;
|
2011-04-29 09:36:10 +00:00
|
|
|
struct task_struct *thread;
|
2011-06-30 13:15:52 +00:00
|
|
|
wait_queue_head_t worker_event;
|
|
|
|
wait_queue_head_t caller_event;
|
2011-04-29 09:36:10 +00:00
|
|
|
// statistics
|
2011-06-30 13:15:52 +00:00
|
|
|
atomic64_t shadow_mem_used;
|
2011-03-27 15:18:38 +00:00
|
|
|
atomic_t replay_count;
|
2010-08-26 17:12:30 +00:00
|
|
|
atomic_t fly_count;
|
2011-03-10 11:40:06 +00:00
|
|
|
atomic_t hash_count;
|
2011-05-13 11:19:28 +00:00
|
|
|
atomic_t pos_count;
|
2011-03-08 16:45:52 +00:00
|
|
|
atomic_t mshadow_count;
|
|
|
|
atomic_t sshadow_count;
|
2011-03-10 11:40:06 +00:00
|
|
|
atomic_t outer_balance_count;
|
|
|
|
atomic_t inner_balance_count;
|
|
|
|
atomic_t sub_balance_count;
|
2011-04-10 16:59:06 +00:00
|
|
|
atomic_t wb_balance_count;
|
2012-02-12 15:36:34 +00:00
|
|
|
atomic_t total_hash_insert_count;
|
|
|
|
atomic_t total_hash_find_count;
|
|
|
|
atomic_t total_hash_extend_count;
|
2011-06-10 13:57:52 +00:00
|
|
|
atomic_t total_replay_count;
|
2011-04-29 09:36:10 +00:00
|
|
|
atomic_t total_cb_count;
|
2011-03-18 13:15:40 +00:00
|
|
|
atomic_t total_read_count;
|
|
|
|
atomic_t total_write_count;
|
2011-05-13 11:19:28 +00:00
|
|
|
atomic_t total_flush_count;
|
2011-03-18 13:15:40 +00:00
|
|
|
atomic_t total_writeback_count;
|
2011-05-13 11:19:28 +00:00
|
|
|
atomic_t total_writeback_cluster_count;
|
2011-03-18 13:15:40 +00:00
|
|
|
atomic_t total_shortcut_count;
|
2011-04-01 11:18:32 +00:00
|
|
|
atomic_t total_mshadow_count;
|
|
|
|
atomic_t total_sshadow_count;
|
2012-02-12 15:36:34 +00:00
|
|
|
atomic_t total_mshadow_buffered_count;
|
|
|
|
atomic_t total_sshadow_buffered_count;
|
2011-05-13 11:19:28 +00:00
|
|
|
atomic_t total_round_count;
|
|
|
|
atomic_t total_restart_count;
|
2011-12-09 12:54:30 +00:00
|
|
|
atomic_t total_delay_count;
|
2010-08-11 16:02:08 +00:00
|
|
|
// queues
|
|
|
|
struct logger_queue q_phase1;
|
|
|
|
struct logger_queue q_phase2;
|
|
|
|
struct logger_queue q_phase3;
|
2010-08-20 10:58:24 +00:00
|
|
|
struct logger_queue q_phase4;
|
2011-03-18 13:15:40 +00:00
|
|
|
bool did_pushback;
|
2011-04-29 09:36:10 +00:00
|
|
|
bool did_work;
|
2011-06-30 13:15:52 +00:00
|
|
|
bool delay_callers;
|
2011-03-10 11:40:06 +00:00
|
|
|
struct hash_anchor hash_table[TRANS_HASH_MAX];
|
2010-08-11 16:02:08 +00:00
|
|
|
};
|
|
|
|
|
2011-04-29 09:36:10 +00:00
|
|
|
struct trans_logger_output {
|
|
|
|
MARS_OUTPUT(trans_logger);
|
|
|
|
};
|
|
|
|
|
2010-08-11 16:02:08 +00:00
|
|
|
struct trans_logger_input {
|
|
|
|
MARS_INPUT(trans_logger);
|
2011-05-13 11:19:28 +00:00
|
|
|
// parameters
|
2011-11-15 17:32:20 +00:00
|
|
|
loff_t log_start_pos; // where to start logging
|
2011-10-05 14:59:29 +00:00
|
|
|
// informational
|
2011-11-15 17:32:20 +00:00
|
|
|
long long last_jiffies;
|
2011-10-05 14:59:29 +00:00
|
|
|
char *inf_host;
|
|
|
|
int inf_sequence; // logfile sequence number
|
2011-11-15 17:32:20 +00:00
|
|
|
bool is_prepared;
|
2011-05-13 11:19:28 +00:00
|
|
|
// readonly from outside
|
|
|
|
loff_t replay_min_pos; // current replay position (both in replay mode and in logging mode)
|
|
|
|
loff_t replay_max_pos; // dito, indicating the "dirty" area which could be potentially "inconsistent"
|
2011-11-03 11:17:59 +00:00
|
|
|
bool is_operating;
|
2011-05-13 11:19:28 +00:00
|
|
|
|
|
|
|
// private
|
2011-04-29 09:36:10 +00:00
|
|
|
struct log_status logst;
|
2011-11-16 11:02:11 +00:00
|
|
|
spinlock_t pos_lock;
|
2011-11-03 11:17:59 +00:00
|
|
|
struct list_head pos_list;
|
2010-08-08 20:51:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
MARS_TYPES(trans_logger);
|
|
|
|
|
|
|
|
#endif
|