diff options
author | Jiri Pirko <jiri@resnulli.us> | 2014-11-19 08:04:58 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-21 14:20:17 -0500 |
commit | 62749e2cb3c4a7da3eaa5c01a7e787aebeff8536 (patch) | |
tree | a464a51f430889a16db620946abf9d20874b3406 /net/openvswitch/actions.c | |
parent | b4bef1b57544b18899eb15569e3bafd8d2eeeff6 (diff) |
vlan: rename __vlan_put_tag to vlan_insert_tag_set_proto
Name fits better. Plus there's going to be introduced
__vlan_insert_tag later on.
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Acked-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/actions.c')
-rw-r--r-- | net/openvswitch/actions.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c index 749a30163071..426b9131ede0 100644 --- a/net/openvswitch/actions.c +++ b/net/openvswitch/actions.c | |||
@@ -287,7 +287,9 @@ static int push_vlan(struct sk_buff *skb, struct sw_flow_key *key, | |||
287 | /* push down current VLAN tag */ | 287 | /* push down current VLAN tag */ |
288 | current_tag = vlan_tx_tag_get(skb); | 288 | current_tag = vlan_tx_tag_get(skb); |
289 | 289 | ||
290 | if (!__vlan_put_tag(skb, skb->vlan_proto, current_tag)) | 290 | skb = vlan_insert_tag_set_proto(skb, skb->vlan_proto, |
291 | current_tag); | ||
292 | if (!skb) | ||
291 | return -ENOMEM; | 293 | return -ENOMEM; |
292 | /* Update mac_len for subsequent MPLS actions */ | 294 | /* Update mac_len for subsequent MPLS actions */ |
293 | skb->mac_len += VLAN_HLEN; | 295 | skb->mac_len += VLAN_HLEN; |