Changeset 3665
- Timestamp:
- 05/22/08 14:48:52 (8 months ago)
- Files:
-
- madwifi/trunk/ath/if_ath.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
madwifi/trunk/ath/if_ath.c
r3659 r3665 6630 6630 * before passing to other VAPs. Ignore MIC failures here, as 6631 6631 * we need to recheck them. */ 6632 if (rs->rs_status & ~(HAL_RXERR_MIC | HAL_RXERR_DECRYPT)) 6632 if (rs->rs_status & ~(HAL_RXERR_MIC | HAL_RXERR_DECRYPT)) { 6633 ieee80211_dev_kfree_skb(&skb); 6633 6634 goto rx_next; 6635 } 6634 6636 6635 6637 /* Remove the CRC. */ … … 6654 6656 drop_micfail: 6655 6657 mic_fail = 0; 6658 6659 ieee80211_dev_kfree_skb(&skb); 6656 6660 goto rx_next; 6657 6661 } … … 6664 6668 sc->sc_stats.ast_rx_tooshort++; 6665 6669 errors++; 6670 ieee80211_dev_kfree_skb(&skb); 6666 6671 goto rx_next; 6667 6672 }
