diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-06-12 21:55:31 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2015-09-30 01:45:03 -0500 |
commit | 694869b3c5440e0d821583ec8811b6cb5d03742d (patch) | |
tree | 38111cd293fd5dc15338f7d62c171e82bce2fa41 /net/openvswitch/actions.c | |
parent | c559cd3ad32ba729bb810283c5fc6838d2473c2e (diff) | |
download | linux-stable-694869b3c5440e0d821583ec8811b6cb5d03742d.tar.gz linux-stable-694869b3c5440e0d821583ec8811b6cb5d03742d.tar.bz2 linux-stable-694869b3c5440e0d821583ec8811b6cb5d03742d.zip |
ipv4: Pass struct net through ip_fragment
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'net/openvswitch/actions.c')
-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 ba38662f9f5e..b281b2b76c3f 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(); |