diff options
| author | Eric W. Biederman <ebiederm@xmission.com> | 2015-06-12 22:55:31 -0400 |
|---|---|---|
| committer | Eric W. Biederman <ebiederm@xmission.com> | 2015-09-30 02:45:03 -0400 |
| commit | 694869b3c5440e0d821583ec8811b6cb5d03742d (patch) | |
| tree | 38111cd293fd5dc15338f7d62c171e82bce2fa41 /net/openvswitch | |
| parent | c559cd3ad32ba729bb810283c5fc6838d2473c2e (diff) | |
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 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, | |||
| 705 | skb_dst_set_noref(skb, &ovs_dst); | 705 | skb_dst_set_noref(skb, &ovs_dst); |
| 706 | IPCB(skb)->frag_max_size = mru; | 706 | IPCB(skb)->frag_max_size = mru; |
| 707 | 707 | ||
| 708 | ip_do_fragment(skb->sk, skb, ovs_vport_output_sk); | 708 | ip_do_fragment(net, skb->sk, skb, ovs_vport_output); |
| 709 | refdst_drop(orig_dst); | 709 | refdst_drop(orig_dst); |
| 710 | } else if (ethertype == htons(ETH_P_IPV6)) { | 710 | } else if (ethertype == htons(ETH_P_IPV6)) { |
| 711 | const struct nf_ipv6_ops *v6ops = nf_get_ipv6_ops(); | 711 | const struct nf_ipv6_ops *v6ops = nf_get_ipv6_ops(); |
