Lines Matching defs:bip
5253 bdata2bio(struct buf *bp, struct bio *bip)
5258 bip->bio_ma = bp->b_pages;
5259 bip->bio_ma_n = bp->b_npages;
5260 bip->bio_data = unmapped_buf;
5261 bip->bio_ma_offset = (vm_offset_t)bp->b_offset & PAGE_MASK;
5262 bip->bio_flags |= BIO_UNMAPPED;
5263 KASSERT(round_page(bip->bio_ma_offset + bip->bio_length) /
5265 ("Buffer %p too short: %d %lld %d", bp, bip->bio_ma_offset,
5266 (long long)bip->bio_length, bip->bio_ma_n));
5268 bip->bio_data = bp->b_data;
5269 bip->bio_ma = NULL;