@@ -196,7 +196,7 @@ struct bio {
* Everything starting with bi_max_vecs will be preserved by bio_reset()
*/
- unsigned short bi_max_vecs; /* max bvl_vecs we can hold */
+ unsigned short bi_max_vecs; /* max bio_vecs we can hold */
atomic_t __bi_cnt; /* pin count */
@@ -38,7 +38,7 @@ struct bvec_iter {
sectors */
unsigned int bi_size; /* residual I/O count */
- unsigned int bi_idx; /* current index into bvl_vec */
+ unsigned int bi_idx; /* current index into bio_vec */
unsigned int bi_done; /* number of bytes completed */
I think bvl_vec means bio_vec_list that was replaced with bio_vec long time ago. If I am correct, I think some comments for blk_vec need to be replaced with bio_vec. Signed-off-by: Gioh Kim <gi-oh.kim@profitbricks.com> --- include/linux/blk_types.h | 2 +- include/linux/bvec.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)