mars/mars_buf.h

71 lines
1.4 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
struct buf_mars_buf_aspect {
GENERIC_ASPECT(mars_buf);
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-30 11:50:20 +00:00
int nr_io_pending;
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-04 17:32:04 +00:00
struct generic_object_layout mbuf_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;
};
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;
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-07-23 11:55:18 +00:00
//struct list_head bf_mbuf_anchor; // all current mbuf 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