linux: Remove bvec page_offset, use bv_offset

Now that page_offset is referenced through accessors, remove
the union, and use bv_offset.

Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jonathan Lemon
2019-07-30 07:40:34 -07:00
committed by David S. Miller
parent b54c9d5bd6
commit 65c84f148e
2 changed files with 6 additions and 9 deletions

View File

@@ -18,10 +18,7 @@
struct bio_vec {
struct page *bv_page;
unsigned int bv_len;
union {
__u32 page_offset;
unsigned int bv_offset;
};
unsigned int bv_offset;
};
struct bvec_iter {