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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Mon, 27 Jan 2014 00:34:03 -0800 (PST) From: David Miller <davem@...emloft.net> To: fw@...len.de Cc: netdev@...r.kernel.org Subject: Re: [PATCH 2/2] net: ip, ipv6: handle gso skbs in forwarding path From: Florian Westphal <fw@...len.de> Date: Mon, 27 Jan 2014 09:22:51 +0100 > Changes since V2: > - make this thing apply to current -net tree > - kill unused variables in ip_forward/ip6_output Still need changes. > + return skb_gso_network_seglen(skb) > dst_mtu(skb_dst(skb)); You can't use dst_mtu() directly, in order to be consistent with the rest of the forwarding code in this file you must use something like: > mtu = ip_dst_mtu_maybe_forward(&rt->dst, true); -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists