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