Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1674674 > unrolled thread
| Started by | Ming Lei <ming.lei@redhat.com> |
|---|---|
| First post | 2017-06-26 14:20 +0200 |
| Last post | 2017-06-26 14:20 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2 35/51] bcache: convert to bio_for_each_segment_all_sp() Ming Lei <ming.lei@redhat.com> - 2017-06-26 14:20 +0200
| From | Ming Lei <ming.lei@redhat.com> |
|---|---|
| Date | 2017-06-26 14:20 +0200 |
| Subject | [PATCH v2 35/51] bcache: convert to bio_for_each_segment_all_sp() |
| Message-ID | <tWB9N-2fr-43@gated-at.bofh.it> |
Cc: linux-bcache@vger.kernel.org Signed-off-by: Ming Lei <ming.lei@redhat.com> --- drivers/md/bcache/btree.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/md/bcache/btree.c b/drivers/md/bcache/btree.c index 3da595ae565b..74cbb7387dc5 100644 --- a/drivers/md/bcache/btree.c +++ b/drivers/md/bcache/btree.c @@ -422,8 +422,9 @@ static void do_btree_node_write(struct btree *b) int j; struct bio_vec *bv; void *base = (void *) ((unsigned long) i & ~(PAGE_SIZE - 1)); + struct bvec_iter_all bia; - bio_for_each_segment_all(bv, b->bio, j) + bio_for_each_segment_all_sp(bv, b->bio, j, bia) memcpy(page_address(bv->bv_page), base + j * PAGE_SIZE, PAGE_SIZE); -- 2.9.4
Back to top | Article view | linux.kernel
csiph-web