2013-03-23 17:11:31 -06:00
|
|
|
#ifndef _BCACHE_REQUEST_H_
|
|
|
|
#define _BCACHE_REQUEST_H_
|
|
|
|
|
2013-09-10 20:02:45 -06:00
|
|
|
struct data_insert_op {
|
2013-03-23 17:11:31 -06:00
|
|
|
struct closure cl;
|
2013-07-24 18:44:17 -06:00
|
|
|
struct cache_set *c;
|
2013-09-10 20:02:45 -06:00
|
|
|
struct bio *bio;
|
2014-01-09 17:03:04 -07:00
|
|
|
struct workqueue_struct *wq;
|
2013-03-23 17:11:31 -06:00
|
|
|
|
2013-07-24 18:44:17 -06:00
|
|
|
unsigned inode;
|
2013-07-24 19:11:11 -06:00
|
|
|
uint16_t write_point;
|
2013-09-10 20:02:45 -06:00
|
|
|
uint16_t write_prio;
|
|
|
|
short error;
|
2013-07-24 18:44:17 -06:00
|
|
|
|
2013-09-10 20:16:31 -06:00
|
|
|
union {
|
|
|
|
uint16_t flags;
|
2013-07-24 18:44:17 -06:00
|
|
|
|
2013-09-10 20:16:31 -06:00
|
|
|
struct {
|
|
|
|
unsigned bypass:1;
|
|
|
|
unsigned writeback:1;
|
|
|
|
unsigned flush_journal:1;
|
|
|
|
unsigned csum:1;
|
2013-03-23 17:11:31 -06:00
|
|
|
|
2013-09-10 20:16:31 -06:00
|
|
|
unsigned replace:1;
|
|
|
|
unsigned replace_collision:1;
|
|
|
|
|
|
|
|
unsigned insert_data_done:1;
|
|
|
|
};
|
|
|
|
};
|
2013-07-24 18:26:51 -06:00
|
|
|
|
|
|
|
struct keylist insert_keys;
|
2013-09-10 19:52:54 -06:00
|
|
|
BKEY_PADDED(replace_key);
|
2013-03-23 17:11:31 -06:00
|
|
|
};
|
|
|
|
|
2013-04-26 16:39:55 -06:00
|
|
|
unsigned bch_get_congested(struct cache_set *);
|
2013-10-24 18:07:04 -06:00
|
|
|
void bch_data_insert(struct closure *cl);
|
2013-03-23 17:11:31 -06:00
|
|
|
|
|
|
|
void bch_cached_dev_request_init(struct cached_dev *dc);
|
|
|
|
void bch_flash_dev_request_init(struct bcache_device *d);
|
|
|
|
|
|
|
|
extern struct kmem_cache *bch_search_cache, *bch_passthrough_cache;
|
|
|
|
|
|
|
|
#endif /* _BCACHE_REQUEST_H_ */
|