Lines Matching refs:bbp
56 struct buf *bbp = bp->bio_buf; in biofinish() local
58 bbp->b_flags |= B_ERROR; in biofinish()
59 bbp->b_error = error; in biofinish()
285 struct buf *bbp = bp->bio_buf; in ad_strategy() local
312 request->data = bbp->b_data; in ad_strategy()
313 request->bytecount = bbp->b_bcount; in ad_strategy()
317 request->transfersize = min(bbp->b_bcount, atadev->max_iosize); in ad_strategy()
319 switch (bbp->b_cmd) { in ad_strategy()
370 struct buf *bbp = bp->bio_buf; in ad_done() local
373 if ((bbp->b_error = request->result)) in ad_done()
374 bbp->b_flags |= B_ERROR; in ad_done()
375 bbp->b_resid = bbp->b_bcount - request->donecount; in ad_done()
376 devstat_end_transaction_buf(&adp->stats, bbp); in ad_done()