aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2019-07-22 20:08:28 -0700
committerDavid S. Miller <davem@davemloft.net>2019-07-22 20:47:56 -0700
commitf58ecf1b7d58911921014ffd12c77a4ad33ade71 (patch)
treeafdc37b1198605723debe638557dfa1c422af74c /include/linux/skbuff.h
parentnet: Increase the size of skb_frag_t (diff)
downloadlinux-dev-f58ecf1b7d58911921014ffd12c77a4ad33ade71.tar.xz
linux-dev-f58ecf1b7d58911921014ffd12c77a4ad33ade71.zip
net: Reorder the contents of skb_frag_t
Match the layout of bio_vec. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h2
1 files changed, 1 insertions, 1 deletions
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;
};
/**