diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-06-13 02:55:31 (GMT) |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2015-09-30 06:45:03 (GMT) |
commit | 694869b3c5440e0d821583ec8811b6cb5d03742d (patch) | |
tree | 38111cd293fd5dc15338f7d62c171e82bce2fa41 /net/openvswitch | |
parent | c559cd3ad32ba729bb810283c5fc6838d2473c2e (diff) | |
download | linux-694869b3c5440e0d821583ec8811b6cb5d03742d.tar.xz |
ipv4: Pass struct net through ip_fragment
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/actions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c index ba38662..b281b2b 100644 --- a/net/openvswitch/actions.c +++ b/net/openvswitch/actions.c @@ -705,7 +705,7 @@ static void ovs_fragment(struct net *net, struct vport *vport, skb_dst_set_noref(skb, &ovs_dst); IPCB(skb)->frag_max_size = mru; - ip_do_fragment(skb->sk, skb, ovs_vport_output_sk); + ip_do_fragment(net, skb->sk, skb, ovs_vport_output); refdst_drop(orig_dst); } else if (ethertype == htons(ETH_P_IPV6)) { const struct nf_ipv6_ops *v6ops = nf_get_ipv6_ops(); |