lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20190501144457.7942-3-willy@infradead.org> Date: Wed, 1 May 2019 07:44:52 -0700 From: Matthew Wilcox <willy@...radead.org> To: davem@...emloft.net Cc: "Matthew Wilcox (Oracle)" <willy@...radead.org>, hch@....de, netdev@...r.kernel.org Subject: [PATCH v2 2/7] net: Reorder the contents of skb_frag_t From: "Matthew Wilcox (Oracle)" <willy@...radead.org> Match the layout of bio_vec. Signed-off-by: Matthew Wilcox (Oracle) <willy@...radead.org> --- include/linux/skbuff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 23f05c64aa31..9c6193a57241 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -318,8 +318,8 @@ struct skb_frag_struct { struct { struct page *p; } page; - __u32 page_offset; __u32 size; + __u32 page_offset; }; /** -- 2.20.1
Powered by blists - more mailing lists