Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:block\bio.c Create Date:2022-07-28 16:55:36
Last Modify:2020-03-17 23:13:58 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:_copy_data - copy contents of data buffers from one bio to another*@src: source bio*@dst: destination bio* Stops when it reaches the end of either @src or @dst - that is, copies* min(src->bi_size, dst->bi_size) bytes (or the equivalent for lists of bios).

Proto:void bio_copy_data(struct bio *dst, struct bio *src)

Type:void

Parameter:

TypeParameterName
struct bio *dst
struct bio *src
1094  src_iter = bi_iter
1095  dst_iter = bi_iter
1097  bio_copy_data_iter(dst, & dst_iter, src, & src_iter)