Searched refs:bio_chain (Results 1 – 10 of 10) sorted by relevance
/linux-4.1.27/kernel/power/ |
D | block_io.c | 29 struct page *page, struct bio **bio_chain) in submit() argument 49 if (bio_chain == NULL) { in submit() 58 bio->bi_private = *bio_chain; in submit() 59 *bio_chain = bio; in submit() 65 int hib_bio_read_page(pgoff_t page_off, void *addr, struct bio **bio_chain) in hib_bio_read_page() argument 68 virt_to_page(addr), bio_chain); in hib_bio_read_page() 71 int hib_bio_write_page(pgoff_t page_off, void *addr, struct bio **bio_chain) in hib_bio_write_page() argument 74 virt_to_page(addr), bio_chain); in hib_bio_write_page() 77 int hib_wait_on_bio_chain(struct bio **bio_chain) in hib_wait_on_bio_chain() argument 83 if (bio_chain == NULL) in hib_wait_on_bio_chain() [all …]
|
D | power.h | 170 struct bio **bio_chain); 172 struct bio **bio_chain); 173 extern int hib_wait_on_bio_chain(struct bio **bio_chain);
|
D | swap.c | 277 static int write_page(void *buf, sector_t offset, struct bio **bio_chain) in write_page() argument 285 if (bio_chain) { in write_page() 291 ret = hib_wait_on_bio_chain(bio_chain); /* Free pages */ in write_page() 301 bio_chain = NULL; /* Go synchronous */ in write_page() 308 return hib_bio_write_page(offset, src, bio_chain); in write_page() 351 struct bio **bio_chain) in swap_write_page() argument 359 error = write_page(buf, offset, bio_chain); in swap_write_page() 368 error = write_page(handle->cur, handle->cur_swap, bio_chain); in swap_write_page() 375 if (bio_chain && low_free_pages() <= handle->reqd_free_pages) { in swap_write_page() 376 error = hib_wait_on_bio_chain(bio_chain); in swap_write_page() [all …]
|
/linux-4.1.27/drivers/md/ |
D | linear.c | 289 bio_chain(split, bio); in linear_make_request()
|
D | raid0.c | 535 bio_chain(split, bio); in raid0_make_request()
|
D | raid10.c | 1566 bio_chain(split, bio); in make_request()
|
/linux-4.1.27/Documentation/block/ |
D | biovecs.txt | 79 bio_chain() when splitting bios helps with this.
|
/linux-4.1.27/include/linux/ |
D | bio.h | 425 void bio_chain(struct bio *, struct bio *);
|
/linux-4.1.27/block/ |
D | bio.c | 317 void bio_chain(struct bio *bio, struct bio *parent) in bio_chain() function 325 EXPORT_SYMBOL(bio_chain);
|
/linux-4.1.27/drivers/block/ |
D | pktcdvd.c | 2491 bio_chain(split, bio); in pkt_make_request()
|