Searched refs:bio_ptr (Results 1 - 5 of 5) sorted by relevance

/linux-master/block/
H A Dblk-crypto-internal.h158 bool __blk_crypto_bio_prep(struct bio **bio_ptr);
159 static inline bool blk_crypto_bio_prep(struct bio **bio_ptr) argument
161 if (bio_has_crypt_ctx(*bio_ptr))
162 return __blk_crypto_bio_prep(bio_ptr);
212 bool blk_crypto_fallback_bio_prep(struct bio **bio_ptr);
225 static inline bool blk_crypto_fallback_bio_prep(struct bio **bio_ptr) argument
228 (*bio_ptr)->bi_status = BLK_STS_NOTSUPP;
H A Dblk-crypto.c254 * @bio_ptr: pointer to original bio pointer
264 * of the aforementioned "first one", and *bio_ptr will be updated to this
273 bool __blk_crypto_bio_prep(struct bio **bio_ptr) argument
275 struct bio *bio = *bio_ptr;
296 if (blk_crypto_fallback_bio_prep(bio_ptr))
299 bio_endio(*bio_ptr);
H A Dblk-crypto-fallback.c211 static bool blk_crypto_fallback_split_bio_if_needed(struct bio **bio_ptr) argument
213 struct bio *bio = *bio_ptr;
235 *bio_ptr = split_bio;
258 * and replace *bio_ptr with the bounce bio. May split input bio if it's too
262 static bool blk_crypto_fallback_encrypt_bio(struct bio **bio_ptr) argument
278 if (!blk_crypto_fallback_split_bio_if_needed(bio_ptr))
281 src_bio = *bio_ptr;
352 *bio_ptr = enc_bio;
474 * @bio_ptr: pointer to the bio to prepare
478 * bounce bio for the first part, encrypts it, and updates bio_ptr t
491 blk_crypto_fallback_bio_prep(struct bio **bio_ptr) argument
[all...]
/linux-master/drivers/md/dm-vdo/
H A Dvio.c50 static int create_multi_block_bio(block_count_t size, struct bio **bio_ptr) argument
60 *bio_ptr = bio;
64 int vdo_create_bio(struct bio **bio_ptr) argument
66 return create_multi_block_bio(1, bio_ptr);
H A Dvio.h76 int vdo_create_bio(struct bio **bio_ptr);

Completed in 99 milliseconds