/linux-4.4.14/include/linux/ |
D | bio.h | 614 for (bio = (bl)->head; bio; bio = bio->bi_next) 629 bio->bi_next = NULL; in bio_list_add() 632 bl->tail->bi_next = bio; in bio_list_add() 641 bio->bi_next = bl->head; in bio_list_add_head() 655 bl->tail->bi_next = bl2->head; in bio_list_merge() 669 bl2->tail->bi_next = bl->head; in bio_list_merge_head() 686 bl->head = bl->head->bi_next; in bio_list_pop() 690 bio->bi_next = NULL; in bio_list_pop()
|
D | blk_types.h | 47 struct bio *bi_next; /* request queue link */ member
|
D | blkdev.h | 740 for (; _bio; _bio = _bio->bi_next) 743 for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next) 750 (_iter.bio->bi_next == NULL && \
|
/linux-4.4.14/drivers/block/ |
D | umem.c | 353 card->bio = card->bio->bi_next; in add_bio() 356 card->currentbio->bi_next = NULL; in add_bio() 380 if ((p->biotail) != &bio->bi_next) { in add_bio() 382 p->biotail = &(bio->bi_next); in add_bio() 383 bio->bi_next = NULL; in add_bio() 448 page->bio = bio->bi_next; in process_page() 476 bio->bi_next = return_bio; in process_page() 506 return_bio = bio->bi_next; in process_page() 507 bio->bi_next = NULL; in process_page() 538 bio->bi_next = NULL; in mm_make_request() [all …]
|
D | osdblk.c | 258 chain = chain->bi_next; in bio_chain_put() 275 tmp->bi_next = NULL; in bio_chain_clone() 280 tail->bi_next = tmp; in bio_chain_clone() 284 old_chain = old_chain->bi_next; in bio_chain_clone()
|
D | rbd.c | 1242 chain = chain->bi_next; in bio_chain_put() 1271 chain = chain->bi_next; in zero_bio_chain() 1372 end = &bio->bi_next; in bio_chain_clone_range() 1376 bi = bi->bi_next; in bio_chain_clone_range()
|
/linux-4.4.14/block/ |
D | blk-merge.c | 289 struct bio *nxt = bio->bi_next; in blk_recount_segments() 291 bio->bi_next = NULL; in blk_recount_segments() 293 bio->bi_next = nxt; in blk_recount_segments() 619 for (bio = rq->bio; bio; bio = bio->bi_next) { in blk_rq_set_mixed_merge() 702 req->biotail->bi_next = next->bio; in attempt_merge()
|
D | blk-map.c | 38 rq->biotail->bi_next = bio; in blk_rq_append_bio() 182 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-core.c | 1556 req->biotail->bi_next = bio; in bio_attempt_back_merge() 1578 bio->bi_next = req->bio; in bio_attempt_front_merge() 2057 BUG_ON(bio->bi_next); in generic_make_request() 2252 for (bio = rq->bio; bio; bio = bio->bi_next) { in blk_rq_err_bytes() 2629 req->bio = bio->bi_next; in blk_update_request() 3041 rq->bio = bio->bi_next; in blk_rq_unprep_clone() 3102 rq->biotail->bi_next = bio; in blk_rq_prep_clone()
|
D | bio.c | 955 src = src->bi_next; in bio_copy_data() 963 dst = dst->bi_next; in bio_copy_data()
|
/linux-4.4.14/drivers/staging/lustre/lustre/llite/ |
D | lloop.c | 216 for (bio = head; bio != NULL; bio = bio->bi_next) { in do_bio_lustrebacked() 276 lo->lo_biotail->bi_next = bio; in loop_add_bio() 320 bio = &(*bio)->bi_next; in loop_get_bio() 379 struct bio *tmp = bio->bi_next; in loop_handle_bio() 381 bio->bi_next = NULL; in loop_handle_bio()
|
/linux-4.4.14/drivers/md/ |
D | dm-delay.c | 69 n = bio->bi_next; in flush_bios() 70 bio->bi_next = NULL; in flush_bios()
|
D | raid10.c | 866 struct bio *next = bio->bi_next; in flush_pending_writes() 867 bio->bi_next = NULL; in flush_pending_writes() 1042 struct bio *next = bio->bi_next; in raid10_unplug() 1043 bio->bi_next = NULL; in raid10_unplug() 3037 bio->bi_next = biolist; in sync_request() 3063 bio->bi_next = biolist; in sync_request() 3092 bio->bi_next = biolist; in sync_request() 3212 bio->bi_next = biolist; in sync_request() 3234 bio->bi_next = biolist; in sync_request() 3273 for (bio= biolist ; bio ; bio=bio->bi_next) { in sync_request() [all …]
|
D | dm-snap.c | 1390 n = bio->bi_next; in flush_bios() 1391 bio->bi_next = NULL; in flush_bios() 1408 n = bio->bi_next; in retry_origin_bios() 1409 bio->bi_next = NULL; in retry_origin_bios() 1425 n = bio->bi_next; in error_bios() 1426 bio->bi_next = NULL; in error_bios()
|
D | raid5.c | 142 return bio->bi_next; in r5_next_bio() 2983 bip = & (*bip)->bi_next; in add_stripe_bio() 2991 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next); in add_stripe_bio() 2993 bi->bi_next = *bip; in add_stripe_bio() 4715 bi->bi_next = conf->retry_read_aligned_list; in add_bio_to_retry() 4733 conf->retry_read_aligned_list = bi->bi_next; in remove_bio_from_retry() 4734 bi->bi_next = NULL; in remove_bio_from_retry() 4761 rdev = (void*)raid_bi->bi_next; in raid5_align_endio() 4762 raid_bi->bi_next = NULL; in raid5_align_endio() 4831 raid_bio->bi_next = (void*)rdev; in raid5_read_one_chunk() [all …]
|
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 | 528 for (bio = bios->head; bio; bio = bio->bi_next) { in dm_rh_inc_pending()
|
D | raid1.c | 760 struct bio *next = bio->bi_next; in flush_pending_writes() 761 bio->bi_next = NULL; in flush_pending_writes() 1034 struct bio *next = bio->bi_next; in raid1_unplug() 1035 bio->bi_next = NULL; in raid1_unplug()
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_req.h | 269 bio->bi_next = NULL; in drbd_req_make_private_bio()
|
D | drbd_receiver.c | 1425 bio->bi_next = bios; in drbd_submit_peer_request() 1464 bios = bios->bi_next; in drbd_submit_peer_request() 1465 bio->bi_next = NULL; in drbd_submit_peer_request() 1474 bios = bios->bi_next; in drbd_submit_peer_request()
|
/linux-4.4.14/drivers/target/ |
D | target_core_pscsi.c | 939 tbio = tbio->bi_next = bio; in pscsi_map_sg() 975 *hbio = (*hbio)->bi_next; in pscsi_map_sg() 1063 hbio = hbio->bi_next; in pscsi_execute_cmd()
|
/linux-4.4.14/drivers/block/aoe/ |
D | aoedev.c | 174 d->ip.nxbio = bio->bi_next; in aoe_failip()
|
D | aoecmd.c | 935 bio = bio->bi_next; in nextbuf()
|
/linux-4.4.14/fs/btrfs/ |
D | raid56.c | 877 next = cur->bi_next; in rbio_orig_end_io() 878 cur->bi_next = NULL; in rbio_orig_end_io()
|
D | volumes.c | 313 tail->bi_next = old_head; in requeue_list() 421 pending = pending->bi_next; in run_scheduled_bios() 422 cur->bi_next = NULL; in run_scheduled_bios() 5957 WARN_ON(bio->bi_next); in btrfs_schedule_bio() 5958 bio->bi_next = NULL; in btrfs_schedule_bio() 5968 pending_bios->tail->bi_next = bio; in btrfs_schedule_bio()
|
/linux-4.4.14/fs/exofs/ |
D | ore.c | 873 bio->bi_next = NULL; in _write_mirror()
|
/linux-4.4.14/drivers/scsi/osd/ |
D | osd_initiator.c | 977 bio->bi_next = or->out.bio; in _osd_req_finalize_cdb_cont()
|
/linux-4.4.14/net/ceph/ |
D | messenger.c | 896 bio = bio->bi_next; in ceph_msg_data_bio_advance()
|
/linux-4.4.14/Documentation/block/ |
D | biodoc.txt | 432 struct bio *bi_next; /* request queue link */
|