madwifi: handle frame classification properly if eth->h_proto contains the protocol number directly (without offset)
SVN-Revision: 16237
This commit is contained in:
parent
b6e5025f15
commit
43b2318584
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue