aboutsummaryrefslogtreecommitdiff
path: root/datapath
diff options
context:
space:
mode:
authorJesse Gross <jesse@nicira.com>2011-11-22 11:39:50 -0800
committerJesse Gross <jesse@nicira.com>2011-11-22 11:39:50 -0800
commit0145d7ed02095b091286681a522ace82eeede9e9 (patch)
tree3cce36c456dc1b5fea886664a24460ed1cca59d5 /datapath
parent850b6b3b9f8c38b42e315c2c07d232a33b82da3e (diff)
datapath: Fix build after global symbol rename.
ovs_netdev_get_vport() did not get renamed in one of the blocks for older kernels. Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'datapath')
-rw-r--r--datapath/vport-netdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/datapath/vport-netdev.c b/datapath/vport-netdev.c
index 5e7eaa4f..2db55929 100644
--- a/datapath/vport-netdev.c
+++ b/datapath/vport-netdev.c
@@ -72,7 +72,7 @@ static struct sk_buff *netdev_frame_hook(struct sk_buff *skb)
if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
return skb;
- vport = netdev_get_vport(skb->dev);
+ vport = ovs_netdev_get_vport(skb->dev);
netdev_port_receive(vport, skb);