projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
madwifi: fix beacon slot handling and add support for more than 4 vaps (useful for...
[openwrt.git]
/
package
/
madwifi
/
patches
/
441-fix_ibss_node_handling.patch
diff --git
a/package/madwifi/patches/441-fix_ibss_node_handling.patch
b/package/madwifi/patches/441-fix_ibss_node_handling.patch
index
a98fe42
..
b12cf67
100644
(file)
--- a/
package/madwifi/patches/441-fix_ibss_node_handling.patch
+++ b/
package/madwifi/patches/441-fix_ibss_node_handling.patch
@@
-44,7
+44,7
@@
if (dir != IEEE80211_FC1_DIR_NODS) {
IEEE80211_DISCARD(vap, IEEE80211_MSG_ANY,
wh, "data", "invalid dir 0x%x", dir);
if (dir != IEEE80211_FC1_DIR_NODS) {
IEEE80211_DISCARD(vap, IEEE80211_MSG_ANY,
wh, "data", "invalid dir 0x%x", dir);
-@@ -355
2,6 +3557
,11 @@ ieee80211_recv_mgmt(struct ieee80211vap
+@@ -355
6,6 +3561
,11 @@ ieee80211_recv_mgmt(struct ieee80211vap
} else if (vap->iv_opmode == IEEE80211_M_WDS) {
found = 1;
ni = ni_or_null = vap->iv_wdsnode;
} else if (vap->iv_opmode == IEEE80211_M_WDS) {
found = 1;
ni = ni_or_null = vap->iv_wdsnode;
@@
-56,7
+56,7
@@
}
IEEE80211_UNLOCK_IRQ(vap->iv_ic);
}
IEEE80211_UNLOCK_IRQ(vap->iv_ic);
-@@ -36
76,19 +3686
,8 @@ ieee80211_recv_mgmt(struct ieee80211vap
+@@ -36
84,19 +3694
,8 @@ ieee80211_recv_mgmt(struct ieee80211vap
vap->iv_stats.is_rx_ssidmismatch++; /*XXX*/
return;
}
vap->iv_stats.is_rx_ssidmismatch++; /*XXX*/
return;
}
@@
-80,11
+80,12
@@
allocbs = 1;
--- a/net80211/ieee80211_node.c
+++ b/net80211/ieee80211_node.c
allocbs = 1;
--- a/net80211/ieee80211_node.c
+++ b/net80211/ieee80211_node.c
-@@ -601,6 +601,
7
@@ ieee80211_ibss_merge(struct ieee80211_no
+@@ -601,6 +601,
8
@@ ieee80211_ibss_merge(struct ieee80211_no
ic->ic_flags & IEEE80211_F_SHPREAMBLE ? "short" : "long",
ic->ic_flags & IEEE80211_F_SHSLOT ? "short" : "long",
ic->ic_flags & IEEE80211_F_USEPROT ? ", protection" : "");
ic->ic_flags & IEEE80211_F_SHPREAMBLE ? "short" : "long",
ic->ic_flags & IEEE80211_F_SHSLOT ? "short" : "long",
ic->ic_flags & IEEE80211_F_USEPROT ? ", protection" : "");
-+ ieee80211_node_table_reset(&vap->iv_ic->ic_sta, vap);
++ if (!IEEE80211_ADDR_EQ(ni->ni_bssid, vap->iv_bssid))
++ ieee80211_node_table_reset(&vap->iv_ic->ic_sta, vap);
return ieee80211_sta_join1(ieee80211_ref_node(ni));
}
EXPORT_SYMBOL(ieee80211_ibss_merge);
return ieee80211_sta_join1(ieee80211_ref_node(ni));
}
EXPORT_SYMBOL(ieee80211_ibss_merge);
This page took
0.026554 seconds
and
4
git commands to generate.