]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Workaround kernel BUG_ON panic caused by unexpected duplicate packets.
authorZhu Yi <chuyee@debian.sh.intel.com>
Fri, 5 Aug 2005 09:17:35 +0000 (17:17 +0800)
committerJames Ketrenos <jketreno@linux.intel.com>
Mon, 7 Nov 2005 23:50:34 +0000 (17:50 -0600)
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
drivers/net/wireless/ipw2200.c

index 6e79ae24ee1cf2ea9175da421fbc9bcb2c6a1dfd..483993a4ca4beac80cd7324ac0c574fbd86f3c7d 100644 (file)
@@ -7696,7 +7696,6 @@ static inline int is_network_packet(struct ipw_priv *priv,
 static inline int is_duplicate_packet(struct ipw_priv *priv,
                                      struct ieee80211_hdr_4addr *header)
 {
-       u16 fc = le16_to_cpu(header->frame_ctl);
        u16 sc = le16_to_cpu(header->seq_ctl);
        u16 seq = WLAN_GET_SEQ_SEQ(sc);
        u16 frag = WLAN_GET_SEQ_FRAG(sc);
@@ -7760,7 +7759,10 @@ static inline int is_duplicate_packet(struct ipw_priv *priv,
        return 0;
 
       drop:
-       BUG_ON(!(fc & IEEE80211_FCTL_RETRY));
+       /* Comment this line now since we observed the card receives
+        * duplicate packets but the FCTL_RETRY bit is not set in the
+        * IBSS mode with fragmentation enabled.
+        BUG_ON(!(le16_to_cpu(header->frame_ctl) & IEEE80211_FCTL_RETRY)); */
        return 1;
 }