Lines Matching defs:crypt_config
120 struct crypt_config { struct
121 struct dm_dev *dev;
122 sector_t start;
128 mempool_t *req_pool;
129 mempool_t *page_pool;
130 struct bio_set *bs;
131 struct mutex bio_alloc_lock;
133 struct workqueue_struct *io_queue;
134 struct workqueue_struct *crypt_queue;
136 struct task_struct *write_thread;
137 wait_queue_head_t write_thread_wait;
138 struct rb_root write_tree;
140 char *cipher;
141 char *cipher_string;
143 struct crypt_iv_operations *iv_gen_ops;
144 union {
149 } iv_gen_private;
150 sector_t iv_offset;
151 unsigned int iv_size;
154 void *iv_private;
155 struct crypto_ablkcipher **tfms;
156 unsigned tfms_count;
186 static u8 *iv_of_dmreq(struct crypt_config *cc, struct dm_crypt_request *dmreq); argument