From: Matthew Wilcox (Oracle) Date: Tue, 23 Jul 2019 03:08:28 +0000 (-0700) Subject: net: Reorder the contents of skb_frag_t X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~2041^2~389^2~3 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f58ecf1b7d58911921014ffd12c77a4ad33ade71;p=mirror_ubuntu-focal-kernel.git net: Reorder the contents of skb_frag_t Match the layout of bio_vec. Signed-off-by: Matthew Wilcox (Oracle) Signed-off-by: David S. Miller --- diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 7910935410e6..b9dc8b4f24b1 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -314,8 +314,8 @@ struct skb_frag_struct { struct { struct page *p; } page; - __u32 page_offset; __u32 size; + __u32 page_offset; }; /**