>From net-next commit 1560a074df6297e76278e459ca3eb9ff83a6f878.

Update Ethernet header only if there is one.

Signed-off-by: Jiri Benc <jb...@redhat.com>
Acked-by: Pravin B Shelar <pshe...@ovn.org>
Signed-off-by: David S. Miller <da...@davemloft.net>
Signed-off-by: Yi Yang <yi.y.y...@intel.com>
---
 datapath/actions.c | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/datapath/actions.c b/datapath/actions.c
index c5b5b0e..d169379 100644
--- a/datapath/actions.c
+++ b/datapath/actions.c
@@ -179,7 +179,8 @@ static int push_mpls(struct sk_buff *skb, struct 
sw_flow_key *key,
 
        skb_postpush_rcsum(skb, new_mpls_lse, MPLS_HLEN);
 
-       update_ethertype(skb, eth_hdr(skb), mpls->mpls_ethertype);
+       if (ovs_key_mac_proto(key) == MAC_PROTO_ETHERNET)
+               update_ethertype(skb, eth_hdr(skb), mpls->mpls_ethertype);
        if (!ovs_skb_get_inner_protocol(skb))
                ovs_skb_set_inner_protocol(skb, skb->protocol);
        skb->protocol = mpls->mpls_ethertype;
@@ -191,7 +192,6 @@ static int push_mpls(struct sk_buff *skb, struct 
sw_flow_key *key,
 static int pop_mpls(struct sk_buff *skb, struct sw_flow_key *key,
                    const __be16 ethertype)
 {
-       struct ethhdr *hdr;
        int err;
 
        err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
@@ -206,11 +206,15 @@ static int pop_mpls(struct sk_buff *skb, struct 
sw_flow_key *key,
        __skb_pull(skb, MPLS_HLEN);
        skb_reset_mac_header(skb);
 
-       /* skb_mpls_header() is used to locate the ethertype
-        * field correctly in the presence of VLAN tags.
-        */
-       hdr = (struct ethhdr *)(skb_mpls_header(skb) - ETH_HLEN);
-       update_ethertype(skb, hdr, ethertype);
+       if (ovs_key_mac_proto(key) == MAC_PROTO_ETHERNET) {
+               struct ethhdr *hdr;
+
+               /* skb_mpls_header() is used to locate the ethertype
+                * field correctly in the presence of VLAN tags.
+                */
+               hdr = (struct ethhdr *)(skb_mpls_header(skb) - ETH_HLEN);
+               update_ethertype(skb, hdr, ethertype);
+        }
        if (eth_p_mpls(skb->protocol))
                skb->protocol = ethertype;
 
-- 
2.1.0

_______________________________________________
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to