mirror of https://github.com/schoebel/mars
122 lines
3.2 KiB
C
122 lines
3.2 KiB
C
/*
|
|
* MARS Long Distance Replication Software
|
|
*
|
|
* This file is part of MARS project: http://schoebel.github.io/mars/
|
|
*
|
|
* Copyright (C) 2010-2014 Thomas Schoebel-Theuer
|
|
* Copyright (C) 2011-2014 1&1 Internet AG
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#ifndef MARS_BUF_H
|
|
#define MARS_BUF_H
|
|
|
|
#include <linux/list.h>
|
|
#include <asm/atomic.h>
|
|
|
|
//#define MARS_BUF_HASH_MAX 512
|
|
#define MARS_BUF_HASH_MAX 2048
|
|
|
|
#define LIST_FREE 0
|
|
#define LIST_FORGET 1
|
|
#define LIST_LRU 2
|
|
#define LIST_MAX 3
|
|
|
|
struct buf_mref_aspect {
|
|
GENERIC_ASPECT(mref);
|
|
struct buf_head *rfa_bf;
|
|
//struct list_head rfa_bf_head;
|
|
struct list_head rfa_pending_head;
|
|
//struct list_head tmp_head;
|
|
};
|
|
|
|
struct cache_anchor {
|
|
spinlock_t hash_lock;
|
|
struct list_head hash_anchor;
|
|
};
|
|
|
|
struct buf_brick {
|
|
MARS_BRICK(buf);
|
|
/* brick parameters */
|
|
int backing_order;
|
|
int backing_size;
|
|
int max_count;
|
|
bool optimize_chains;
|
|
|
|
/* internals */
|
|
spinlock_t brick_lock;
|
|
atomic_t alloc_count;
|
|
atomic_t list_count[LIST_MAX];
|
|
atomic_t hashed_count;
|
|
atomic_t nr_io_pending;
|
|
atomic_t nr_collisions;
|
|
struct mars_info base_info;
|
|
bool got_info;
|
|
|
|
// lists for caching
|
|
struct list_head list_anchor[LIST_MAX]; // members are hashed and not in use
|
|
struct list_head forget_anchor; // like lru_anchor, but likely
|
|
struct cache_anchor cache_anchors[MARS_BUF_HASH_MAX]; // hash table
|
|
|
|
// statistics
|
|
unsigned long last_jiffies;
|
|
atomic_t hit_count;
|
|
atomic_t miss_count;
|
|
atomic_t opt_count;
|
|
atomic_t chain_count;
|
|
atomic_t post_count;
|
|
atomic_t write_count;
|
|
atomic_t io_count;
|
|
};
|
|
|
|
struct buf_input {
|
|
MARS_INPUT(buf);
|
|
};
|
|
|
|
struct buf_output {
|
|
MARS_OUTPUT(buf);
|
|
};
|
|
|
|
MARS_TYPES(buf);
|
|
|
|
struct buf_head {
|
|
void *bf_data; // this MUST come first
|
|
spinlock_t bf_lock;
|
|
struct buf_brick *bf_brick;
|
|
loff_t bf_pos;
|
|
loff_t bf_base_index;
|
|
int bf_flags;
|
|
int bf_error;
|
|
atomic_t bf_hash_count; // # references pinning the hash
|
|
atomic_t bf_mref_count; // # mrefs (only used for checking, no real semantics)
|
|
atomic_t bf_io_count; // # IOs in flight
|
|
// statistics / data for strategic decisions
|
|
atomic_t bf_mfu_stat;
|
|
atomic_t bf_chain_len;
|
|
bool bf_chain_detected;
|
|
// lists for caching
|
|
//struct list_head bf_mref_anchor; // all current mref members
|
|
struct list_head bf_list_head;
|
|
struct list_head bf_hash_head;
|
|
unsigned long bf_jiffies;
|
|
int bf_member;
|
|
// lists for IO
|
|
struct list_head bf_io_pending_anchor;
|
|
struct list_head bf_postpone_anchor;
|
|
};
|
|
|
|
#endif
|