/Linux-v4.19/include/linux/ |
D | bio.h | 635 for (bio = (bl)->head; bio; bio = bio->bi_next) 650 bio->bi_next = NULL; in bio_list_add() 653 bl->tail->bi_next = bio; in bio_list_add() 662 bio->bi_next = bl->head; in bio_list_add_head() 676 bl->tail->bi_next = bl2->head; in bio_list_merge() 690 bl2->tail->bi_next = bl->head; in bio_list_merge_head() 707 bl->head = bl->head->bi_next; in bio_list_pop() 711 bio->bi_next = NULL; in bio_list_pop()
|
D | blk_types.h | 145 struct bio *bi_next; /* request queue link */ member
|
D | blkdev.h | 931 for (; _bio; _bio = _bio->bi_next) 934 for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next) 941 (_iter.bio->bi_next == NULL && \
|
/Linux-v4.19/drivers/block/ |
D | umem.c | 352 card->bio = card->bio->bi_next; in add_bio() 355 card->currentbio->bi_next = NULL; in add_bio() 378 if ((p->biotail) != &bio->bi_next) { in add_bio() 380 p->biotail = &(bio->bi_next); in add_bio() 381 bio->bi_next = NULL; in add_bio() 446 page->bio = bio->bi_next; in process_page() 474 bio->bi_next = return_bio; in process_page() 504 return_bio = bio->bi_next; in process_page() 505 bio->bi_next = NULL; in process_page() 536 bio->bi_next = NULL; in mm_make_request() [all …]
|
/Linux-v4.19/block/ |
D | blk-map.c | 35 rq->biotail->bi_next = *bio; in blk_rq_append_bio() 194 bio = bio->bi_next; in blk_rq_unmap_user()
|
D | blk-integrity.c | 214 struct bio *next = bio->bi_next; in blk_integrity_merge_bio() 225 bio->bi_next = NULL; in blk_integrity_merge_bio() 227 bio->bi_next = next; in blk_integrity_merge_bio()
|
D | blk-merge.c | 323 struct bio *nxt = bio->bi_next; in blk_recount_segments() 325 bio->bi_next = NULL; in blk_recount_segments() 327 bio->bi_next = nxt; in blk_recount_segments() 647 for (bio = rq->bio; bio; bio = bio->bi_next) { in blk_rq_set_mixed_merge() 744 req->biotail->bi_next = next->bio; in attempt_merge()
|
D | blk-core.c | 1811 req->biotail->bi_next = bio; in bio_attempt_back_merge() 1833 bio->bi_next = req->bio; in bio_attempt_front_merge() 1855 req->biotail->bi_next = bio; in bio_attempt_discard_merge() 2433 BUG_ON(bio->bi_next); in generic_make_request() 2702 for (bio = rq->bio; bio; bio = bio->bi_next) { in blk_rq_err_bytes() 3037 list->tail->bi_next = rq->bio; in blk_steal_bios() 3098 req->bio = bio->bi_next; in blk_update_request() 3477 rq->bio = bio->bi_next; in blk_rq_unprep_clone() 3540 rq->biotail->bi_next = bio; in blk_rq_prep_clone()
|
D | bio.c | 1021 src = src->bi_next; in bio_list_copy_data() 1029 dst = dst->bi_next; in bio_list_copy_data()
|
/Linux-v4.19/include/linux/ceph/ |
D | messenger.h | 116 if (!(it)->iter.bi_size && (it)->bio->bi_next) { \ 118 (it)->bio = (it)->bio->bi_next; \
|
/Linux-v4.19/drivers/md/ |
D | dm-delay.c | 73 n = bio->bi_next; in flush_bios() 74 bio->bi_next = NULL; in flush_bios()
|
D | raid10.c | 924 struct bio *next = bio->bi_next; in flush_pending_writes() 926 bio->bi_next = NULL; in flush_pending_writes() 1109 struct bio *next = bio->bi_next; in raid10_unplug() 1111 bio->bi_next = NULL; in raid10_unplug() 3193 bio->bi_next = biolist; in raid10_sync_request() 3218 bio->bi_next = biolist; in raid10_sync_request() 3244 bio->bi_next = biolist; in raid10_sync_request() 3398 bio->bi_next = biolist; in raid10_sync_request() 3420 bio->bi_next = biolist; in raid10_sync_request() 3460 for (bio= biolist ; bio ; bio=bio->bi_next) { in raid10_sync_request() [all …]
|
D | dm-snap.c | 1391 n = bio->bi_next; in flush_bios() 1392 bio->bi_next = NULL; in flush_bios() 1409 n = bio->bi_next; in retry_origin_bios() 1410 bio->bi_next = NULL; in retry_origin_bios() 1426 n = bio->bi_next; in error_bios() 1427 bio->bi_next = NULL; in error_bios()
|
D | raid5.h | 499 return bio->bi_next; in r5_next_bio()
|
D | dm-raid1.c | 165 return (struct mirror *) bio->bi_next; in bio_get_m() 170 bio->bi_next = (struct bio *) m; in bio_set_m()
|
D | dm-region-hash.c | 530 for (bio = bios->head; bio; bio = bio->bi_next) { in dm_rh_inc_pending()
|
D | raid5.c | 3223 bip = & (*bip)->bi_next; in add_stripe_bio() 3261 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next); in add_stripe_bio() 3263 bi->bi_next = *bip; in add_stripe_bio() 5127 bi->bi_next = conf->retry_read_aligned_list; in add_bio_to_retry() 5147 conf->retry_read_aligned_list = bi->bi_next; in remove_bio_from_retry() 5148 bi->bi_next = NULL; in remove_bio_from_retry() 5171 rdev = (void*)raid_bi->bi_next; in raid5_align_endio() 5172 raid_bi->bi_next = NULL; in raid5_align_endio() 5246 raid_bio->bi_next = (void*)rdev; in raid5_read_one_chunk() 5491 bi->bi_next = NULL; in make_discard_request() [all …]
|
D | dm-rq.c | 122 bool is_last = !clone->bi_next; in end_clone_bio()
|
/Linux-v4.19/drivers/block/drbd/ |
D | drbd_req.h | 278 bio->bi_next = NULL; in drbd_req_make_private_bio()
|
D | drbd_receiver.c | 1598 bio->bi_next = bios; in drbd_submit_peer_request() 1619 bios = bios->bi_next; in drbd_submit_peer_request() 1620 bio->bi_next = NULL; in drbd_submit_peer_request() 1629 bios = bios->bi_next; in drbd_submit_peer_request()
|
/Linux-v4.19/drivers/nvme/host/ |
D | multipath.c | 214 next = bio->bi_next; in nvme_requeue_work() 215 bio->bi_next = NULL; in nvme_requeue_work()
|
/Linux-v4.19/drivers/block/aoe/ |
D | aoedev.c | 173 d->ip.nxbio = bio->bi_next; in aoe_failip()
|
/Linux-v4.19/fs/btrfs/ |
D | raid56.c | 846 next = cur->bi_next; in rbio_endio_bio_list() 847 cur->bi_next = NULL; in rbio_endio_bio_list()
|
D | volumes.c | 428 tail->bi_next = old_head; in requeue_list() 532 pending = pending->bi_next; in run_scheduled_bios() 533 cur->bi_next = NULL; in run_scheduled_bios() 6087 WARN_ON(bio->bi_next); in btrfs_schedule_bio() 6088 bio->bi_next = NULL; in btrfs_schedule_bio() 6097 pending_bios->tail->bi_next = bio; in btrfs_schedule_bio()
|
/Linux-v4.19/fs/exofs/ |
D | ore.c | 887 bio->bi_next = NULL; in _write_mirror()
|