diff options
Diffstat (limited to 'include/linux/bvec.h')
-rw-r--r-- | include/linux/bvec.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/include/linux/bvec.h b/include/linux/bvec.h index f6275c4da13a..3bc91879e1e2 100644 --- a/include/linux/bvec.h +++ b/include/linux/bvec.h | |||
@@ -145,18 +145,18 @@ static inline bool bvec_iter_advance(const struct bio_vec *bv, | |||
145 | 145 | ||
146 | static inline struct bio_vec *bvec_init_iter_all(struct bvec_iter_all *iter_all) | 146 | static inline struct bio_vec *bvec_init_iter_all(struct bvec_iter_all *iter_all) |
147 | { | 147 | { |
148 | iter_all->bv.bv_page = NULL; | ||
149 | iter_all->done = 0; | 148 | iter_all->done = 0; |
149 | iter_all->idx = 0; | ||
150 | 150 | ||
151 | return &iter_all->bv; | 151 | return &iter_all->bv; |
152 | } | 152 | } |
153 | 153 | ||
154 | static inline void mp_bvec_next_segment(const struct bio_vec *bvec, | 154 | static inline void bvec_advance(const struct bio_vec *bvec, |
155 | struct bvec_iter_all *iter_all) | 155 | struct bvec_iter_all *iter_all) |
156 | { | 156 | { |
157 | struct bio_vec *bv = &iter_all->bv; | 157 | struct bio_vec *bv = &iter_all->bv; |
158 | 158 | ||
159 | if (bv->bv_page) { | 159 | if (iter_all->done) { |
160 | bv->bv_page = nth_page(bv->bv_page, 1); | 160 | bv->bv_page = nth_page(bv->bv_page, 1); |
161 | bv->bv_offset = 0; | 161 | bv->bv_offset = 0; |
162 | } else { | 162 | } else { |
@@ -165,6 +165,12 @@ static inline void mp_bvec_next_segment(const struct bio_vec *bvec, | |||
165 | } | 165 | } |
166 | bv->bv_len = min_t(unsigned int, PAGE_SIZE - bv->bv_offset, | 166 | bv->bv_len = min_t(unsigned int, PAGE_SIZE - bv->bv_offset, |
167 | bvec->bv_len - iter_all->done); | 167 | bvec->bv_len - iter_all->done); |
168 | iter_all->done += bv->bv_len; | ||
169 | |||
170 | if (iter_all->done == bvec->bv_len) { | ||
171 | iter_all->idx++; | ||
172 | iter_all->done = 0; | ||
173 | } | ||
168 | } | 174 | } |
169 | 175 | ||
170 | /* | 176 | /* |