Skip to content

Commit

Permalink
openvswitch: Remove ovs_vport_output_sk
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Eric W. Biederman committed Sep 30, 2015
1 parent 75aec9d commit 184e16d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions net/openvswitch/actions.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 184e16d

Please sign in to comment.