2013-03-23 23:11:31 +00:00
|
|
|
#ifndef _BCACHE_REQUEST_H_
|
|
|
|
#define _BCACHE_REQUEST_H_
|
|
|
|
|
2013-09-11 02:02:45 +00:00
|
|
|
struct data_insert_op {
|
2013-03-23 23:11:31 +00:00
|
|
|
struct closure cl;
|
2013-07-25 00:44:17 +00:00
|
|
|
struct cache_set *c;
|
2013-09-11 02:02:45 +00:00
|
|
|
struct bio *bio;
|
2014-01-10 00:03:04 +00:00
|
|
|
struct workqueue_struct *wq;
|
2013-03-23 23:11:31 +00:00
|
|
|
|
2013-07-25 00:44:17 +00:00
|
|
|
unsigned inode;
|
2013-07-25 01:11:11 +00:00
|
|
|
uint16_t write_point;
|
2013-09-11 02:02:45 +00:00
|
|
|
uint16_t write_prio;
|
|
|
|
short error;
|
2013-07-25 00:44:17 +00:00
|
|
|
|
2013-09-11 02:16:31 +00:00
|
|
|
union {
|
|
|
|
uint16_t flags;
|
2013-07-25 00:44:17 +00:00
|
|
|
|
2013-09-11 02:16:31 +00:00
|
|
|
struct {
|
|
|
|
unsigned bypass:1;
|
|
|
|
unsigned writeback:1;
|
|
|
|
unsigned flush_journal:1;
|
|
|
|
unsigned csum:1;
|
2013-03-23 23:11:31 +00:00
|
|
|
|
2013-09-11 02:16:31 +00:00
|
|
|
unsigned replace:1;
|
|
|
|
unsigned replace_collision:1;
|
|
|
|
|
|
|
|
unsigned insert_data_done:1;
|
|
|
|
};
|
|
|
|
};
|
2013-07-25 00:26:51 +00:00
|
|
|
|
|
|
|
struct keylist insert_keys;
|
2013-09-11 01:52:54 +00:00
|
|
|
BKEY_PADDED(replace_key);
|
2013-03-23 23:11:31 +00:00
|
|
|
};
|
|
|
|
|
2013-04-26 22:39:55 +00:00
|
|
|
unsigned bch_get_congested(struct cache_set *);
|
2013-10-25 00:07:04 +00:00
|
|
|
void bch_data_insert(struct closure *cl);
|
2013-03-23 23:11:31 +00: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_ */
|