mirror of https://github.com/schoebel/mars
56 lines
939 B
C
56 lines
939 B
C
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
|
|
#ifndef MARS_BIO_H
|
|
#define MARS_BIO_H
|
|
|
|
#include <linux/blkdev.h>
|
|
#include <linux/rwsem.h>
|
|
|
|
//#define WAIT_CLASH 1024
|
|
|
|
struct bio_mref_aspect {
|
|
GENERIC_ASPECT(mref);
|
|
struct list_head io_head;
|
|
struct bio *bio;
|
|
struct bio_output *output;
|
|
int status_code;
|
|
int hash_pos;
|
|
bool do_dealloc;
|
|
};
|
|
|
|
struct bio_brick {
|
|
MARS_BRICK(bio);
|
|
// tunables
|
|
int ra_pages;
|
|
bool do_noidle;
|
|
bool do_sync;
|
|
bool do_unplug;
|
|
// readonly
|
|
loff_t total_size;
|
|
atomic_t fly_count;
|
|
atomic_t completed_count;
|
|
atomic_t total_completed_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;
|
|
#ifdef WAIT_CLASH
|
|
struct rw_semaphore hashtable[WAIT_CLASH];
|
|
#endif
|
|
int bvec_max;
|
|
};
|
|
|
|
struct bio_input {
|
|
MARS_INPUT(bio);
|
|
};
|
|
|
|
struct bio_output {
|
|
MARS_OUTPUT(bio);
|
|
};
|
|
|
|
MARS_TYPES(bio);
|
|
|
|
#endif
|