Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=69dad6e563140ce8578749a8c8651b7f1db8cdbc
Commit:     69dad6e563140ce8578749a8c8651b7f1db8cdbc
Parent:     c43bff43e0617dd56515b4ea42a8037c699c86f1
Author:     Ulrich Kunitz <[EMAIL PROTECTED]>
AuthorDate: Sat Jul 21 22:42:02 2007 +0100
Committer:  John W. Linville <[EMAIL PROTECTED]>
CommitDate: Mon Aug 6 15:06:03 2007 -0400

    [PATCH] zd1211rw: fix filter for PSPOLL frames
    
    While filling the control set the driver tests for a PSPOLL frame.
    But it tested only the subtype of the packet. The full type needs
    to be tested to identify those packets reliably.
    
    [EMAIL PROTECTED]: backport to mainline]
    Signed-off-by: Ulrich Kunitz <[EMAIL PROTECTED]>
    Signed-off-by: Daniel Drake <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/zd1211rw/zd_mac.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/zd1211rw/zd_mac.c 
b/drivers/net/wireless/zd1211rw/zd_mac.c
index f6c487a..26869d1 100644
--- a/drivers/net/wireless/zd1211rw/zd_mac.c
+++ b/drivers/net/wireless/zd1211rw/zd_mac.c
@@ -822,7 +822,7 @@ static void cs_set_control(struct zd_mac *mac, struct 
zd_ctrlset *cs,
                cs->control |= ZD_CS_MULTICAST;
 
        /* PS-POLL */
-       if (stype == IEEE80211_STYPE_PSPOLL)
+       if (ftype == IEEE80211_FTYPE_CTL && stype == IEEE80211_STYPE_PSPOLL)
                cs->control |= ZD_CS_PS_POLL_FRAME;
 
        /* Unicast data frames over the threshold should have RTS */
-
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