From: Ben Pfaff Date: Wed, 2 Nov 2011 17:46:53 +0000 (-0700) Subject: datapath: Fix indentation in pop_vlan(). X-Git-Tag: v1.4.0~216 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=fb516ed8c26a1b8c6d2be45eb4de183de242ed87;p=sliver-openvswitch.git datapath: Fix indentation in pop_vlan(). Signed-off-by: Ben Pfaff Acked-by: Jesse Gross --- diff --git a/datapath/actions.c b/datapath/actions.c index 4db2563ce..b5b92ba8f 100644 --- a/datapath/actions.c +++ b/datapath/actions.c @@ -77,7 +77,7 @@ static int pop_vlan(struct sk_buff *skb) vlan_set_tci(skb, 0); } else { if (unlikely(skb->protocol != htons(ETH_P_8021Q) || - skb->len < VLAN_ETH_HLEN)) + skb->len < VLAN_ETH_HLEN)) return 0; err = __pop_vlan_tci(skb, &tci); @@ -86,7 +86,7 @@ static int pop_vlan(struct sk_buff *skb) } /* move next vlan tag to hw accel tag */ if (likely(skb->protocol != htons(ETH_P_8021Q) || - skb->len < VLAN_ETH_HLEN)) + skb->len < VLAN_ETH_HLEN)) return 0; err = __pop_vlan_tci(skb, &tci);