1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10294 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2008-01-28 18:34:06 +00:00
parent be6fa77dfb
commit d3393fc512
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 {