lwfinger
lwfinger
The problem is that the code used max(a,b), whereas it should have been max_t(u32,a,b). It now compiles cleanly on openSUSE Tumbleweed and Debian 12.
Do you see any WARNINGS in your logs like this "WARNING: CPU: 3 PID: 36 at net/mac80211/rx.c"? Your CPU and PID will be different. That may be the source of...
@dubhater: Yes I am seeing warnings out of net/mac80211/rx..c:5350 ieee80211_rx_list+0x5c2/0xd50 because the band is incorrect. I just pushed a patch that silences the warning and drops the offending warning. That...
@morrownr: What does 'iw list' show for channel 60?
@dubhater: That parameter in the vendor driver has the following snippet: registry_par->dfs_region_domain = (u8)rtw_dfs_region_domain; if (registry_par->dfs_region_domain != RTW_DFS_REGD_NONE) { RTW_WARN("%s force disable radar detection capability for now\n", __func__); registry_par->dfs_region_domain =...
Look at the code a few lines down. If you set anything but RTW_DFS_REGD_NONE, it changes it back to RTW_DFS_REGD_NONE.
Since you have packet capture, could you please attach it to this issue.
It is clearly not a firmware issue. The standard firmware extracted from your listed header file is identical with the one currently in rtw88. I do not have a copy...
Do a 'git pull' and 'sudo cp rtw_8821c_fw.bin /lib/firmware/rtw88/.'. Does that change the actions of the 8811 modules?
The chip 8821ce is not a very good one. I even had to domate an RTL8192CU dongle to my neighbor whose 8821ce would not work even in Windows. I will...