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

SVN-Revision: 16237
master
Felix Fietkau 16 years ago
parent b6e5025f15
commit 43b2318584
  1. 2
      package/madwifi/patches/390-frame_type.patch

@ -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…
Cancel
Save