diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2016-10-31 13:59:24 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-11-02 12:50:18 -0400 |
commit | 2cefe4dbaadf83b236caab46705b4b5a4958e3b6 (patch) | |
tree | bee7e525f1145ad55b6abd02f97d10222ae90cc9 | |
parent | 13edd5e7315a26b448c5f7f33fc7721b1e0c17ef (diff) |
block: add bio_iov_iter_get_pages()
This is a helper that pins down a range from an iov_iter and adds it to
a bio without requiring a separate memory allocation for the page array.
It will be used for upcoming direct I/O implementations for block devices
and iomap based file systems.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
[hch: ported to the iov_iter interface, renamed and added comments.
All blame should be directed to me and all fame should go to Kent
after this!]
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r-- | block/bio.c | 49 | ||||
-rw-r--r-- | include/linux/bio.h | 1 |
2 files changed, 50 insertions, 0 deletions
diff --git a/block/bio.c b/block/bio.c index db85c5753a76..2cf6ebabc68c 100644 --- a/block/bio.c +++ b/block/bio.c | |||
@@ -847,6 +847,55 @@ done: | |||
847 | } | 847 | } |
848 | EXPORT_SYMBOL(bio_add_page); | 848 | EXPORT_SYMBOL(bio_add_page); |
849 | 849 | ||
850 | /** | ||
851 | * bio_iov_iter_get_pages - pin user or kernel pages and add them to a bio | ||
852 | * @bio: bio to add pages to | ||
853 | * @iter: iov iterator describing the region to be mapped | ||
854 | * | ||
855 | * Pins as many pages from *iter and appends them to @bio's bvec array. The | ||
856 | * pages will have to be released using put_page() when done. | ||
857 | */ | ||
858 | int bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter) | ||
859 | { | ||
860 | unsigned short nr_pages = bio->bi_max_vecs - bio->bi_vcnt; | ||
861 | struct bio_vec *bv = bio->bi_io_vec + bio->bi_vcnt; | ||
862 | struct page **pages = (struct page **)bv; | ||
863 | size_t offset, diff; | ||
864 | ssize_t size; | ||
865 | |||
866 | size = iov_iter_get_pages(iter, pages, LONG_MAX, nr_pages, &offset); | ||
867 | if (unlikely(size <= 0)) | ||
868 | return size ? size : -EFAULT; | ||
869 | nr_pages = (size + offset + PAGE_SIZE - 1) / PAGE_SIZE; | ||
870 | |||
871 | /* | ||
872 | * Deep magic below: We need to walk the pinned pages backwards | ||
873 | * because we are abusing the space allocated for the bio_vecs | ||
874 | * for the page array. Because the bio_vecs are larger than the | ||
875 | * page pointers by definition this will always work. But it also | ||
876 | * means we can't use bio_add_page, so any changes to it's semantics | ||
877 | * need to be reflected here as well. | ||
878 | */ | ||
879 | bio->bi_iter.bi_size += size; | ||
880 | bio->bi_vcnt += nr_pages; | ||
881 | |||
882 | diff = (nr_pages * PAGE_SIZE - offset) - size; | ||
883 | while (nr_pages--) { | ||
884 | bv[nr_pages].bv_page = pages[nr_pages]; | ||
885 | bv[nr_pages].bv_len = PAGE_SIZE; | ||
886 | bv[nr_pages].bv_offset = 0; | ||
887 | } | ||
888 | |||
889 | bv[0].bv_offset += offset; | ||
890 | bv[0].bv_len -= offset; | ||
891 | if (diff) | ||
892 | bv[bio->bi_vcnt - 1].bv_len -= diff; | ||
893 | |||
894 | iov_iter_advance(iter, size); | ||
895 | return 0; | ||
896 | } | ||
897 | EXPORT_SYMBOL_GPL(bio_iov_iter_get_pages); | ||
898 | |||
850 | struct submit_bio_ret { | 899 | struct submit_bio_ret { |
851 | struct completion event; | 900 | struct completion event; |
852 | int error; | 901 | int error; |
diff --git a/include/linux/bio.h b/include/linux/bio.h index 5c604b4914bf..d367cd37a7f7 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h | |||
@@ -427,6 +427,7 @@ void bio_chain(struct bio *, struct bio *); | |||
427 | extern int bio_add_page(struct bio *, struct page *, unsigned int,unsigned int); | 427 | extern int bio_add_page(struct bio *, struct page *, unsigned int,unsigned int); |
428 | extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *, | 428 | extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *, |
429 | unsigned int, unsigned int); | 429 | unsigned int, unsigned int); |
430 | int bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter); | ||
430 | struct rq_map_data; | 431 | struct rq_map_data; |
431 | extern struct bio *bio_map_user_iov(struct request_queue *, | 432 | extern struct bio *bio_map_user_iov(struct request_queue *, |
432 | const struct iov_iter *, gfp_t); | 433 | const struct iov_iter *, gfp_t); |