diff options
author | Guoqing Jiang <gqjiang@suse.com> | 2016-09-22 09:10:01 +0200 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-09-22 15:48:03 +0200 |
commit | 491221f88d00651e449c9caf7415b6453c8a77b7 (patch) | |
tree | 8021285e1ee5eaff42fa4a5a00929ad36dad7633 /drivers/md/bcache/btree.c | |
parent | lightnvm: propagate device_add() error code (diff) | |
download | linux-491221f88d00651e449c9caf7415b6453c8a77b7.tar.xz linux-491221f88d00651e449c9caf7415b6453c8a77b7.zip |
block: export bio_free_pages to other modules
bio_free_pages is introduced in commit 1dfa0f68c040
("block: add a helper to free bio bounce buffer pages"),
we can reuse the func in other modules after it was
imported.
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Jens Axboe <axboe@fb.com>
Cc: Mike Snitzer <snitzer@redhat.com>
Cc: Shaohua Li <shli@fb.com>
Signed-off-by: Guoqing Jiang <gqjiang@suse.com>
Acked-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/md/bcache/btree.c')
-rw-r--r-- | drivers/md/bcache/btree.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/md/bcache/btree.c b/drivers/md/bcache/btree.c index 76f7534d1dd1..81d3db40cd7b 100644 --- a/drivers/md/bcache/btree.c +++ b/drivers/md/bcache/btree.c @@ -361,12 +361,8 @@ static void __btree_node_write_done(struct closure *cl) static void btree_node_write_done(struct closure *cl) { struct btree *b = container_of(cl, struct btree, io); - struct bio_vec *bv; - int n; - - bio_for_each_segment_all(bv, b->bio, n) - __free_page(bv->bv_page); + bio_free_pages(b->bio); __btree_node_write_done(cl); } |