Lines Matching defs:crypt_config
121 struct crypt_config { struct
122 struct dm_dev *dev;
123 sector_t start;
129 mempool_t *req_pool;
130 mempool_t *page_pool;
131 struct bio_set *bs;
132 struct mutex bio_alloc_lock;
134 struct workqueue_struct *io_queue;
135 struct workqueue_struct *crypt_queue;
137 struct task_struct *write_thread;
138 wait_queue_head_t write_thread_wait;
139 struct rb_root write_tree;
141 char *cipher;
142 char *cipher_string;
144 struct crypt_iv_operations *iv_gen_ops;
145 union {
150 } iv_gen_private;
151 sector_t iv_offset;
152 unsigned int iv_size;
155 void *iv_private;
156 struct crypto_ablkcipher **tfms;
157 unsigned tfms_count;
187 static u8 *iv_of_dmreq(struct crypt_config *cc, struct dm_crypt_request *dmreq); argument