mars/kernel/mars_trans_logger.h

247 lines
6.8 KiB
C
Raw Normal View History

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)
#define LOGGER_QUEUES 4
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 "mars.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"
#include "lib_timing.h"
2010-08-08 20:51:20 +00:00
///////////////////////// global tuning ////////////////////////
/* 0 = early completion of all writes
* 1 = early completion of non-sync
* 2 = late completion
*/
extern int trans_logger_completion_semantics;
extern int trans_logger_do_crc;
extern int trans_logger_mem_usage; // in KB
extern int trans_logger_max_interleave;
extern int trans_logger_resume;
extern atomic_t global_mshadow_count;
extern atomic64_t global_mshadow_used;
struct writeback_group {
rwlock_t lock;
struct trans_logger_brick *leader;
loff_t biggest;
struct list_head group_anchor;
// tuning
struct mars_limiter limiter;
int until_percent;
};
extern struct writeback_group global_writeback;
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;
struct banning q_banning;
int no_progress_count;
int pushback_count;
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
////////////////////////////////////////////////////////////////////
#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
#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
#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
2011-04-08 09:52:46 +00:00
struct writeback_info {
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);
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;
int orig_rw;
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;
bool is_stable;
2011-04-08 09:52:46 +00:00
bool is_dirty;
2011-04-10 16:59:06 +00:00
bool is_collected;
2012-02-08 15:26:37 +00:00
bool is_fired;
2011-05-26 14:32:32 +00:00
bool is_completed;
bool is_persistent;
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_hash_anchor;
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
struct mars_limiter *replay_limiter;
2011-06-30 13:15:52 +00:00
int shadow_mem_limit; // max # master shadows
2012-08-03 08:42:51 +00:00
bool replay_mode; // mode of operation
bool continuous_replay_mode; // mode of operation
2011-02-23 20:48:06 +00:00
bool log_reads; // additionally log pre-images
bool cease_logging; // direct IO without logging (only in case of EMERGENCY)
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
int new_input_nr; // whereto we should switchover ASAP
2011-02-23 20:48:06 +00:00
// readonly from outside
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)
bool stopped_logging; // direct IO without logging (only in case of EMERGENCY)
2011-03-20 17:38:08 +00:00
// private
struct trans_logger_hash_anchor **hash_table;
struct list_head group_head;
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;
atomic_t any_fly_count;
atomic_t log_fly_count;
2011-03-10 11:40:06 +00:00
atomic_t hash_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;
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;
atomic_t total_replay_conflict_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;
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;
atomic_t total_delay_count;
2010-08-11 16:02:08 +00:00
// queues
struct logger_queue q_phase[LOGGER_QUEUES];
2011-06-30 13:15:52 +00:00
bool delay_callers;
2010-08-11 16:02:08 +00:00
};
2011-04-29 09:36:10 +00:00
struct trans_logger_output {
MARS_OUTPUT(trans_logger);
};
#define MAX_HOST_LEN 32
struct trans_logger_info {
// to be maintained / initialized from outside
void (*inf_callback)(struct trans_logger_info *inf);
void *inf_private;
char inf_host[MAX_HOST_LEN];
int inf_sequence; // logfile sequence number
// maintained by trans_logger
loff_t inf_min_pos; // current replay position (both in replay mode and in logging mode)
loff_t inf_max_pos; // dito, indicating the "dirty" area which could be potentially "inconsistent"
loff_t inf_log_pos; // position of transaction logging (may be ahead of replay position)
struct timespec inf_min_pos_stamp; // when the data has been _successfully_ overwritten
struct timespec inf_max_pos_stamp; // when the data has _started_ overwrite (maybe "trashed" in case of errors / aborts)
struct timespec inf_log_pos_stamp; // stamp from transaction log
bool inf_is_applying;
bool inf_is_logging;
};
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-10-05 14:59:29 +00:00
// informational
struct trans_logger_info inf;
2011-05-13 11:19:28 +00:00
// readonly from outside
atomic_t log_ref_count;
atomic_t pos_count;
bool is_operating;
long long last_jiffies;
2011-05-13 11:19:28 +00:00
// private
2011-04-29 09:36:10 +00:00
struct log_status logst;
struct list_head pos_list;
long long inf_last_jiffies;
struct semaphore inf_mutex;
2010-08-08 20:51:20 +00:00
};
MARS_TYPES(trans_logger);
#endif