summaryrefslogtreecommitdiffstats
path: root/net/mac80211/ieee80211_i.h
diff options
context:
space:
mode:
authorJohn W. Linville2008-04-08 20:15:46 +0200
committerJohn W. Linville2008-04-08 20:15:46 +0200
commit247367016305637fb981db020679520e354c80c4 (patch)
treed1ffcbb1e88cf38eb2dc40efa80f2f6d45aa9c24 /net/mac80211/ieee80211_i.h
parentMerge branch 'net-2.6.26-isatap-20080403' of git://git.linux-ipv6.org/gitroot... (diff)
downloadkernel-qcow2-linux-247367016305637fb981db020679520e354c80c4.tar.gz
kernel-qcow2-linux-247367016305637fb981db020679520e354c80c4.tar.xz
kernel-qcow2-linux-247367016305637fb981db020679520e354c80c4.zip
Revert "mac80211: use a struct for bss->mesh_config"
This reverts commit 6c4711b4697d93424e4b1f76a9929ba844d714a5. That patch breaks mesh config comparison between beacons/probe reponses, so every beacon from a mesh network would be added as a new bss. Since the comparison has to be performed for every received beacon I believe it is best to save the mesh config in a format easy to compare, rather than do a bunch of unaligned accesses to compare field by field. Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r--net/mac80211/ieee80211_i.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
index 6c62dd42f915..0997a0f96203 100644
--- a/net/mac80211/ieee80211_i.h
+++ b/net/mac80211/ieee80211_i.h
@@ -69,14 +69,6 @@ struct ieee80211_fragment_entry {
u8 last_pn[6]; /* PN of the last fragment if CCMP was used */
};
-struct bss_mesh_config {
- u32 path_proto_id;
- u32 path_metric_id;
- u32 cong_control_id;
- u32 channel_precedence;
- u8 mesh_version;
-};
-
struct ieee80211_sta_bss {
struct list_head list;
@@ -102,7 +94,7 @@ struct ieee80211_sta_bss {
#ifdef CONFIG_MAC80211_MESH
u8 *mesh_id;
size_t mesh_id_len;
- struct bss_mesh_config *mesh_cfg;
+ u8 *mesh_cfg;
#endif
#define IEEE80211_MAX_SUPP_RATES 32
u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
@@ -121,8 +113,7 @@ struct ieee80211_sta_bss {
u8 erp_value;
};
-static inline
-struct bss_mesh_config *bss_mesh_cfg(struct ieee80211_sta_bss *bss)
+static inline u8 *bss_mesh_cfg(struct ieee80211_sta_bss *bss)
{
#ifdef CONFIG_MAC80211_MESH
return bss->mesh_cfg;