Commit 5f547391 authored by Joe Stringer's avatar Joe Stringer Committed by Pablo Neira Ayuso

netfilter: nf_defrag_ipv4: Drop redundant ip_send_check()

Since commit 0848f642 ("inet: frags: fix defragmented packet's IP
header for af_packet"), ip_send_check() would be called twice for
defragmentation that occurs from netfilter ipv4 defrag hooks. Remove the
extra call.
Signed-off-by: default avatarJoe Stringer <joe@ovn.org>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent a7ed31cf
......@@ -31,10 +31,8 @@ static int nf_ct_ipv4_gather_frags(struct net *net, struct sk_buff *skb,
err = ip_defrag(net, skb, user);
local_bh_enable();
if (!err) {
ip_send_check(ip_hdr(skb));
if (!err)
skb->ignore_df = 1;
}
return err;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment