diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-09-14 20:14:45 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2015-09-30 01:45:05 -0500 |
commit | 184e16d79d38634cbb7b7c1cd3832caf89595c9a (patch) | |
tree | dab87263782437a5265757075b6d95d278efd864 /net/openvswitch/actions.c | |
parent | 75aec9df3a7895747a0d022b7c83a1dfb2adf942 (diff) | |
download | blackbird-op-linux-184e16d79d38634cbb7b7c1cd3832caf89595c9a.tar.gz blackbird-op-linux-184e16d79d38634cbb7b7c1cd3832caf89595c9a.zip |
openvswitch: Remove ovs_vport_output_sk
This was a compatibility function needed while the ipv4 and ipv6
fragmentation code was being modified to pass a struct net through
them. Now that is complete this function has no more users so remove
it.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'net/openvswitch/actions.c')
-rw-r--r-- | net/openvswitch/actions.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c index f33c627f97b3..1d21ab9d2b5c 100644 --- a/net/openvswitch/actions.c +++ b/net/openvswitch/actions.c @@ -645,11 +645,6 @@ static int ovs_vport_output(struct net *net, struct sock *sk, struct sk_buff *sk ovs_vport_send(vport, skb); return 0; } -static int ovs_vport_output_sk(struct sock *sk, struct sk_buff *skb) -{ - struct net *net = dev_net(skb_dst(skb)->dev); - return ovs_vport_output(net, sk, skb); -} static unsigned int ovs_dst_get_mtu(const struct dst_entry *dst) |