Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

wifi: mac80211: remove AID bit stripping for print

Since the top bits have already been masked off according
to whether or not it's S1G, there's no need to mask again
for printing. Remove the superfluous code.

Link: https://patch.msgid.link/20260303150921.d04ad4dfdc48.I78da2953982e85aab386867dc9db83471bf35475@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>

+1 -1
+1 -1
net/mac80211/mlme.c
··· 6721 6721 sdata_info(sdata, 6722 6722 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n", 6723 6723 reassoc ? "Rea" : "A", assoc_data->ap_addr, 6724 - capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14)))); 6724 + capab_info, status_code, aid); 6725 6725 6726 6726 ifmgd->broken_ap = false; 6727 6727