projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b656722
)
net: Reorder the contents of skb_frag_t
author
Matthew Wilcox (Oracle)
<willy@infradead.org>
Tue, 23 Jul 2019 03:08:28 +0000
(20:08 -0700)
committer
David S. Miller
<davem@davemloft.net>
Tue, 23 Jul 2019 03:47:56 +0000
(20:47 -0700)
Match the layout of bio_vec.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h
patch
|
blob
|
history
diff --git
a/include/linux/skbuff.h
b/include/linux/skbuff.h
index 7910935410e60196ab6a1d2000eb9d508fce84fa..b9dc8b4f24b14f1b4f23b9826d3aa299c24ef488 100644
(file)
--- 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;
};
/**