mars/mars_buf.h

78 lines
1.6 KiB
C
Raw Normal View History

2010-07-07 14:09:16 +00:00
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef MARS_BUF_H
#define MARS_BUF_H
#include <linux/list.h>
2010-07-23 11:55:18 +00:00
#include <asm/atomic.h>
2010-07-07 14:09:16 +00:00
#define MARS_BUF_HASH_MAX 512
2010-08-05 15:54:48 +00:00
struct buf_mars_ref_aspect {
GENERIC_ASPECT(mars_ref);
2010-07-23 11:55:18 +00:00
struct buf_head *bfa_bf;
struct list_head bfc_pending_head;
2010-08-04 17:32:04 +00:00
struct list_head tmp_head;
2010-07-07 14:09:16 +00:00
};
struct buf_brick {
MARS_BRICK(buf);
2010-07-23 11:55:18 +00:00
/* brick parameters */
2010-07-07 14:09:16 +00:00
int backing_order;
int backing_size;
int max_count;
2010-07-23 11:55:18 +00:00
/* internals */
2010-07-07 14:09:16 +00:00
int current_count;
int alloc_count;
2010-08-05 15:54:48 +00:00
atomic_t nr_io_pending;
struct generic_object_layout mref_object_layout;
2010-07-07 14:09:16 +00:00
spinlock_t buf_lock;
// lists for caching
struct list_head free_anchor; // members are not hashed
struct list_head lru_anchor; // members are hashed
struct list_head cache_anchors[MARS_BUF_HASH_MAX]; // hash table
// for creation of bios
struct mars_info base_info;
int got_info;
int bvec_max;
2010-08-05 15:54:48 +00:00
// statistics
unsigned long last_jiffies;
atomic_t hit_count;
atomic_t miss_count;
atomic_t io_count;
2010-07-07 14:09:16 +00:00
};
struct buf_input {
MARS_INPUT(buf);
};
struct buf_output {
MARS_OUTPUT(buf);
};
MARS_TYPES(buf);
struct buf_head {
struct buf_brick *bf_brick;
2010-07-23 11:55:18 +00:00
void *bf_data;
loff_t bf_pos;
2010-08-06 16:14:32 +00:00
unsigned int bf_base_index;
2010-07-23 11:55:18 +00:00
int bf_flags;
atomic_t bf_count;
int bf_bio_status;
atomic_t bf_bio_count;
2010-07-07 14:09:16 +00:00
// lists for caching
2010-08-05 15:54:48 +00:00
//struct list_head bf_mref_anchor; // all current mref members
2010-07-07 14:09:16 +00:00
struct list_head bf_lru_head;
struct list_head bf_hash_head;
// lists for IO
2010-07-23 11:55:18 +00:00
struct list_head bf_io_pending_anchor;
2010-07-07 14:09:16 +00:00
struct list_head bf_again_write_pending_anchor;
};
#endif