aboutsummaryrefslogtreecommitdiff
path: root/net/mac80211/ieee80211_i.h
diff options
context:
space:
mode:
authorGravatar Felix Fietkau <nbd@nbd.name> 2023-09-13 07:01:34 +0200
committerGravatar Johannes Berg <johannes.berg@intel.com> 2023-09-13 10:14:44 +0200
commit6e48ebffc2db5419b3a51cfc509bde442252b356 (patch)
tree7e75a3fe7877203cd668cb278ef95fe3aa367f51 /net/mac80211/ieee80211_i.h
parentwifi: cfg80211: add missing kernel-doc for cqm_rssi_work (diff)
downloadlinux-6e48ebffc2db5419b3a51cfc509bde442252b356.tar.gz
linux-6e48ebffc2db5419b3a51cfc509bde442252b356.tar.bz2
linux-6e48ebffc2db5419b3a51cfc509bde442252b356.zip
wifi: mac80211: fix mesh id corruption on 32 bit systems
Since the changed field size was increased to u64, mesh_bss_info_changed pulls invalid bits from the first 3 bytes of the mesh id, clears them, and passes them on to ieee80211_link_info_change_notify, because ifmsh->mbss_changed was not updated to match its size. Fix this by turning into ifmsh->mbss_changed into an unsigned long array with 64 bit size. Fixes: 15ddba5f4311 ("wifi: mac80211: consistently use u64 for BSS changes") Reported-by: Thomas Hühn <thomas.huehn@hs-nordhausen.de> Signed-off-by: Felix Fietkau <nbd@nbd.name> Link: https://lore.kernel.org/r/20230913050134.53536-1-nbd@nbd.name Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r--net/mac80211/ieee80211_i.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
index 06bd406846d2..b3d00259e1d6 100644
--- a/net/mac80211/ieee80211_i.h
+++ b/net/mac80211/ieee80211_i.h
@@ -676,7 +676,7 @@ struct ieee80211_if_mesh {
struct timer_list mesh_path_root_timer;
unsigned long wrkq_flags;
- unsigned long mbss_changed;
+ unsigned long mbss_changed[64 / BITS_PER_LONG];
bool userspace_handles_dfs;