mars/mars_bio.h

52 lines
852 B
C
Raw Normal View History

2011-03-18 13:15:40 +00:00
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef MARS_BIO_H
#define MARS_BIO_H
#include <linux/blkdev.h>
2011-03-29 14:40:40 +00:00
#include <linux/rwsem.h>
//#define WAIT_CLASH 1024
2011-03-18 13:15:40 +00:00
struct bio_mref_aspect {
GENERIC_ASPECT(mref);
struct list_head io_head;
struct bio *bio;
struct bio_output *output;
int status_code;
2011-03-29 14:40:40 +00:00
int hash_pos;
2011-03-18 13:15:40 +00:00
struct page *page;
//bool do_dealloc;
};
struct bio_brick {
MARS_BRICK(bio);
// tunables
int ra_pages;
// readonly
loff_t total_size;
atomic_t fly_count;
// private
spinlock_t lock;
struct list_head completed_list;
wait_queue_head_t event;
struct file *filp;
struct block_device *bdev;
struct task_struct *thread;
2011-03-29 14:40:40 +00:00
#ifdef WAIT_CLASH
struct rw_semaphore hashtable[WAIT_CLASH];
#endif
2011-03-18 13:15:40 +00:00
int bvec_max;
};
struct bio_input {
MARS_INPUT(bio);
};
struct bio_output {
MARS_OUTPUT(bio);
};
MARS_TYPES(bio);
#endif