-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compilation error: wiphy->regulatory_flags |= REGULATORY_IGNORE_STALE_KICKOFF #165
Comments
Hi @Jesus-M Interesting. I have an idea what might have happened. Can I get you to test the following:
Change line 408 to use your kernel version and compile. What I am testing is whether the backport from kernel 6.5 was accidentally taken all the way back into kernel 6.1.? (which is a LTS kernel). |
That worked! So, did someone mess it up with the last 6.1.x kernel? |
Ok, so that worked. This is not my happy face. We know that the kernel 6.5 backport goes back to 6.1.39. This was a really bad idea by whoever approved this. This backport can't go into kernel 6.2 because it is depreciated. But Ubuntu 23.04 and all the little Buntu's use kernel 6.2. Ubuntu could pull the backport in but do they know to do so? There are other distros that can create the same havoc. It is okay to take a backport back to the latest LTS if it is something like a new VID/PID but with something like this, it just should not be done. @5kft and I are looking at this. I suspect we won't have a good solution and next week the each repo will fill with bugs reports.
Yes. |
FYI: we are going to go with the fix you used. I fear it is not a clean fix but it is as clean as we can do. We'll see what happens. |
ok, I made a couple of tests on my own (and I broke my PC and needed few hours to recover it XD )
So I would say it is not worth it to fix your driver, just it is better to stay away from 6.1.39. Anyway, the important thing is that either avoiding the bad kernel or using your update, it works. Thanks a lot! |
Is there a chance that the changes introduced in 6.1.39 will be reverted in a later release? |
It is possible. |
For the time being, kernel 6.1.40 is out and they problems persists (including the 100% use of one of the cores), so I am sticking with 6.1.38 for now. |
Just an heads up, I updated the package (Linux Manjaro 22.1 on the kernel 6.4.6-1, my machine is an HP250 laptop) and apparently it built correctly except at the end I had a bunch of "==> ERROR: Missing boot kernel headers for module rtl88x2bu/5.13.1.r189.12cfcd8." warnings. |
I would like to add to this thread. I am on a Debian 12 Laptop with KDE X11. However I would like to report a few observations:
I'm a newbie when it comes to Linux distributions; been going back-and-forth with Linux Mint and Windows since 2021, before deciding to finally settle with Debian 12 this year. As such my technical know-how is very limited when it comes to these matters. But nonetheless, please let me know if I can contribute in any manner! |
Hi @vizrbo Realtek out-of-kernel drivers are a total pain in the ass. They seem to be designed for professional programers working on embedded projects. For us desktop users, I have created a Main Menu here at this site: https://github.com/morrownr/USB-WiFi Scroll down to view the menu. Menu items 1 and 2 should be a good starting point. Menu item one gives some information about USB WiFi on Linux and then menu item 2 gives a list of adapters that are plug and play. There are certainly more adapters that are plug and play than what is in the list but the list only shows adapters where we have good information or I have tested. I think your pick of Debian 12 should work well and if you have questions about WiFi adapters, just post in Issues for the repo I ave you to the link to above. Cheers |
@vizrbo If you're just looking to address the compilation issue with the newer kernel, in your local git clone of https://github.com/ivanovborislav/rtl8188eu/blob/main/os_dep/linux/wifi_regd.c, you can change line 408 from
to
Then try the dkms install again on the newer kernel? |
Did I leave this out in this driver? |
Did I leave this out in this driver? No, I read this as they're using a different driver (for the 8188eu). |
Thanks a lot @morrownr and @5kft ! @morrownr I've got to admit. A great deal of work and care has gone behind the exhaustive guide you have prepared for the community. I looked up the adapters and the chipsets they were based on. Although the Mediatek chipset caught my attention its sad that there are no local brands that make adapters based on Mediatek chipsets where I reside. A lot of the Mediatek brands you mentioned are either unavailable in my region or priced ridiculously (~ $130) obviously because of the shipping charges. TP-Link is widely available in my region though and going through your doc, I've found the TP-Link Archer T3U Nano pretty interesting which uses a recommended chipset RTL8812bu. As a small gesture I have starred your repository and would be re-visiting to put up issues concerning new/existing info. @5kft It's just as you said. In my case editing the "/usr/src/rtl8188eu-5.13.3/os_dep/linux/wifi_regd.c" with your correction and upgrading to the available Kernel 6.1.52-1 started the dkms autobuild service. The dkms installation was successful!
|
This commit modifies the kernel version check in the source code to ensure compatibility with kernel versions below 6.1.39. The change was necessary due to the removal of the REGULATORY_IGNORE_STALE_KICKOFF flag in recent kernel versions, which caused compilation issues. The modified check now correctly excludes kernel versions 6.1.39 and above, preventing these issues. Reference: morrownr/88x2bu-20210702#165 (comment) Signed-off-by: thienandangthanh <thienandangthanh@gmail.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
SOLVEDThe file regulatory.h contains all the definitions for these flags.
I looked in my current directory's definitions for regulatory.h and found this:
I'm going to edit my linux-headers-6.2.0-39 regulatory.h definition file. I'm going to add the line If you never hear from me again, this was a success. |
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
netif_napi_add() => netif_napi_add_weight() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b48b89f Add missing new argument to cfg80211_ch_switch_notify() https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b8c9024 roam_info.bssid => roam_info.links[0].bssid https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=efbabc1 cfg80211_rtw_*_key(): add int link_id https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7a7b84 struct wireless_dev: current_bss => connected lwfinger/rtl8723du@39c864c REGULATORY_IGNORE_STALE_KICKOFF undeclared: morrownr/88x2bu-20210702#165 Signed-off-by: MichaIng <micha@dietpi.com>
Since yesterday I am getting this error when compiling the module:
Today there was an update on the
os_dep/linux/wifi_regd.c
file:Still same error today.
I can compile the module just deleting the lines 408-410, but not sure of side effects from removing these lines
My environment:
Until now, it worked flawlessly with any and every version I tried.
The text was updated successfully, but these errors were encountered: