aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexander Duyck <alexander.h.duyck@redhat.com>2015-05-04 14:34:10 -0700
committerDavid S. Miller <davem@davemloft.net>2015-05-05 19:24:43 -0400
commit9545b22da647cf6fbbac9c5a48c50fd72d892b11 (patch)
treede68fd72233395bcf80b7adfa23db77f9ffeaa77 /include
parentopenvswitch: Use eth_proto_is_802_3 (diff)
downloadlinux-dev-9545b22da647cf6fbbac9c5a48c50fd72d892b11.tar.xz
linux-dev-9545b22da647cf6fbbac9c5a48c50fd72d892b11.zip
vlan: Use eth_proto_is_802_3
Replace "ntohs(proto) >= ETH_P_802_3_MIN" w/ eth_proto_is_802_3(proto). Signed-off-by: Alexander Duyck <alexander.h.duyck@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/if_vlan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/if_vlan.h b/include/linux/if_vlan.h
index 920e4457ce6e..b9ab677c0c0a 100644
--- a/include/linux/if_vlan.h
+++ b/include/linux/if_vlan.h
@@ -539,7 +539,7 @@ static inline void vlan_set_encap_proto(struct sk_buff *skb,
*/
proto = vhdr->h_vlan_encapsulated_proto;
- if (ntohs(proto) >= ETH_P_802_3_MIN) {
+ if (eth_proto_is_802_3(proto)) {
skb->protocol = proto;
return;
}