madwifi: handle frame classification properly if eth->h_proto contains the protocol number directly (without offset)

SVN-Revision: 16237
This commit is contained in:
Felix Fietkau 2009-05-31 17:15:09 +00:00
parent b6e5025f15
commit 43b2318584

View File

@ -5,7 +5,7 @@
skb->pkt_type = PACKET_OTHERHOST;
- return eth->h_proto;
+ if (ntohs(eth->h_proto) >= 1536)
+ if ((ntohs(eth->h_proto) >= 1536) || (ntohs(eth->h_proto) < 38))
+ return eth->h_proto;
+ return htons(ETH_P_802_2);
}