Update net/ to use sg helpers
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
@@ -552,7 +552,7 @@ int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *desc,
|
||||
if (copy > len)
|
||||
copy = len;
|
||||
|
||||
sg.page = virt_to_page(skb->data + offset);
|
||||
sg_set_page(&sg, virt_to_page(skb->data + offset));
|
||||
sg.offset = (unsigned long)(skb->data + offset) % PAGE_SIZE;
|
||||
sg.length = copy;
|
||||
|
||||
@@ -577,7 +577,7 @@ int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *desc,
|
||||
if (copy > len)
|
||||
copy = len;
|
||||
|
||||
sg.page = frag->page;
|
||||
sg_set_page(&sg, frag->page);
|
||||
sg.offset = frag->page_offset + offset-start;
|
||||
sg.length = copy;
|
||||
|
||||
|
Reference in New Issue
Block a user