1BIO_CHAIN(9) The Linux VFS BIO_CHAIN(9)
2
3
4
6 bio_chain - chain bio completions
7
9 void bio_chain(struct bio * bio, struct bio * parent);
10
12 bio
13 -- undescribed --
14
15 parent
16 -- undescribed --
17
19 The caller won't have a bi_end_io called when bio completes - instead,
20 parent's bi_end_io won't be called until both parent and bio have
21 completed; the chained bio will also be freed when it completes.
22
23 The caller must not set bi_private or bi_end_io in bio.
24
26Kernel Hackers Manual 3.10 June 2019 BIO_CHAIN(9)