Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8b6bbe75384417d3f5edafcb45d2f67415e9cc00
Commit:     8b6bbe75384417d3f5edafcb45d2f67415e9cc00
Parent:     e78c9d285709f535caae405f1da5b2936f51f0b5
Author:     Ron Rindjunsky <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 23 18:17:13 2008 +0200
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Thu Jan 31 19:26:38 2008 -0800

    mac80211: fixing null qos data frames check for reordering buffer
    
    This patch fixes a wrong condition for null qos data frames, causing us to
    drop data frames needed for reordering as well.
    
    Signed-off-by: Ron Rindjunsky <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/mac80211/rx.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index 1ccd329..d44c872 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -1972,7 +1972,7 @@ static u8 ieee80211_rx_reorder_ampdu(struct 
ieee80211_local *local,
                goto end_reorder;
 
        /* null data frames are excluded */
-       if (unlikely(fc & IEEE80211_STYPE_QOS_NULLFUNC))
+       if (unlikely(fc & IEEE80211_STYPE_NULLFUNC))
                goto end_reorder;
 
        /* new un-ordered ampdu frame - process it */
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to