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: <6b25cdc64a066e1a214020d0452fff10a33495ac.1697989543.git.ozlinuxc@gmail.com> Date: Sun, 22 Oct 2023 12:20:17 -0400 From: Oliver Crumrine <ozlinuxc@...il.com> To: netdev@...r.kernel.org, linux-kernel@...r.kernel.org Cc: davem@...emloft.n Subject: [PATCH net-next 03/17] Change cork in ipv6_pinfo to a pointer. The actual change to make inet6_cork a pointer in the ipv6_pinfo struct itself. Signed-off-by: Oliver Crumrine <ozlinuxc@...il.com> --- include/linux/ipv6.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index af8a771a053c..0c707ce9e776 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h @@ -290,7 +290,7 @@ struct ipv6_pinfo { struct ipv6_txoptions __rcu *opt; struct sk_buff *pktoptions; struct sk_buff *rxpmtu; - struct inet6_cork cork; + struct inet6_cork *cork; }; /* WARNING: don't change the layout of the members in {raw,udp,tcp}6_sock! */ -- 2.42.0
Powered by blists - more mailing lists