net: Convert skb_frag_t to bio_vec
There are a lot of users of frag->page_offset, so use a union to avoid converting those users today. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
b8b576a16f
commit
8842d285ba
@@ -18,7 +18,10 @@
|
||||
struct bio_vec {
|
||||
struct page *bv_page;
|
||||
unsigned int bv_len;
|
||||
unsigned int bv_offset;
|
||||
union {
|
||||
__u32 page_offset;
|
||||
unsigned int bv_offset;
|
||||
};
|
||||
};
|
||||
|
||||
struct bvec_iter {
|
||||
|
Reference in New Issue
Block a user