update madwifi to latest trunk, include a few more fixes/improvements

SVN-Revision: 10294
This commit is contained in:
Felix Fietkau
2008-01-28 18:34:06 +00:00
parent 5f713d6adb
commit d9ad14d717
16 changed files with 398 additions and 300 deletions

View File

@@ -1,14 +1,12 @@
Index: madwifi-dfs-r3252/net80211/ieee80211_input.c
Index: madwifi-trunk-r3280/net80211/ieee80211_input.c
===================================================================
--- madwifi-dfs-r3252.orig/net80211/ieee80211_input.c 2008-01-26 00:03:20.203760157 +0100
+++ madwifi-dfs-r3252/net80211/ieee80211_input.c 2008-01-26 00:08:08.773799701 +0100
@@ -1133,8 +1133,8 @@
--- madwifi-trunk-r3280.orig/net80211/ieee80211_input.c 2008-01-28 17:36:32.052771162 +0100
+++ madwifi-trunk-r3280/net80211/ieee80211_input.c 2008-01-28 17:36:55.186089457 +0100
@@ -1135,7 +1135,7 @@
if (ETHER_IS_MULTICAST(eh->ether_dhost)) {
/* Create a SKB for the BSS to send out. */
skb1 = skb_copy(skb, GFP_ATOMIC);
- /* We duplicate the reference after skb_copy */
- ieee80211_skb_copy_noderef(skb, skb1);
+ /* Use the BSS node for retransmitting this multicast frame */
+ SKB_CB(skb1)->ni = ieee80211_ref_node(vap->iv_bss);
}
else {