Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

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

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

Type:void

Parameter:

TypeParameterName
struct bio *dst
struct bio *src
1113  src_iter = bi_iter
1114  dst_iter = bi_iter
1116  When 1 cycle
1117  If Not residual I/O count Then
1119  If Not src Then Break
1122  src_iter = bi_iter
1125  If Not residual I/O count Then
1127  If Not dst Then Break
1130  dst_iter = bi_iter
1133  bio_copy_data_iter(dst, & dst_iter, src, & src_iter)