diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-06-12 22:12:04 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2015-09-30 01:45:03 -0500 |
commit | 7d8c6e391575ee86c870b88635a163743fca9eac (patch) | |
tree | 43b344333f951f78e63d89cd62017c5a49023ff4 /net/openvswitch/actions.c | |
parent | 694869b3c5440e0d821583ec8811b6cb5d03742d (diff) | |
download | op-kernel-dev-7d8c6e391575ee86c870b88635a163743fca9eac.zip op-kernel-dev-7d8c6e391575ee86c870b88635a163743fca9eac.tar.gz |
ipv6: Pass struct net through ip6_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 b281b2b..f33c627 100644 --- a/net/openvswitch/actions.c +++ b/net/openvswitch/actions.c @@ -727,7 +727,7 @@ static void ovs_fragment(struct net *net, struct vport *vport, skb_dst_set_noref(skb, &ovs_rt.dst); IP6CB(skb)->frag_max_size = mru; - v6ops->fragment(skb->sk, skb, ovs_vport_output_sk); + v6ops->fragment(net, skb->sk, skb, ovs_vport_output); refdst_drop(orig_dst); } else { WARN_ONCE(1, "Failed fragment ->%s: eth=%04x, MRU=%d, MTU=%d.", |