-
Notifications
You must be signed in to change notification settings - Fork 406
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
Kernel 6.7-6.12 build support and other fixes #275
Open
gglluukk
wants to merge
11
commits into
aircrack-ng:v5.3.9
Choose a base branch
from
gglluukk:v5.3.9
base: v5.3.9
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gglluukk
changed the title
Shift-out-of-bounds fix and rtl8xxxu note in README
Kernel 6.7 build support, shift-out-of-bounds fix and rtl8xxxu note in README
Jan 23, 2024
13 tasks
gglluukk
changed the title
Kernel 6.7 build support, shift-out-of-bounds fix and rtl8xxxu note in README
Kernel 6.7/6.8 build support, shift-out-of-bounds fix and rtl8xxxu note in README
Mar 16, 2024
gglluukk
changed the title
Kernel 6.7/6.8 build support, shift-out-of-bounds fix and rtl8xxxu note in README
Kernel 6.7/6.8/6.9 build support, shift-out-of-bounds fix and rtl8xxxu note in README
May 14, 2024
gglluukk
changed the title
Kernel 6.7/6.8/6.9 build support, shift-out-of-bounds fix and rtl8xxxu note in README
Kernel 6.7-6.10 build support, shift-out-of-bounds fix and rtl8xxxu note in README
Aug 7, 2024
gglluukk
changed the title
Kernel 6.7-6.10 build support, shift-out-of-bounds fix and rtl8xxxu note in README
Kernel 6.7-6.10 build support and other fixes
Aug 31, 2024
@kimocoder could you please merge this? |
nix-julia
reviewed
Sep 7, 2024
@@ -417,7 +417,9 @@ u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset, u8 | |||
if (ret != _SUCCESS) | |||
goto exit; | |||
|
|||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 3, 0)) | |||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 9, 0)) |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep, it's stated in topic:
Kernel 6.7-6.10 build support and other fixes
gglluukk
changed the title
Kernel 6.7-6.10 build support and other fixes
Kernel 6.7-6.11 build support and other fixes
Sep 17, 2024
gglluukk
changed the title
Kernel 6.7-6.11 build support and other fixes
Kernel 6.7-6.12 build support and other fixes
Nov 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
According to issue #273:
where at hal/phydm/phydm_phystatus.c:1750-1751 following code is found:
trying to fix it
sta->rssi_stat.packet_map
is to be split as follows:sta
isstruct cmn_sta_info
defined in include/cmn_info/rtw_sta_info.h:188rssi_stat
isstruct rssi_info
defined in include/cmn_info/rtw_sta_info.h:148packet_map
isu8
(short unsigned int
) with size of 8 bits that's why shift can't be more than 8. the logic of code is a shift up to last bit of packet_map and next bitwise ANDBIT(0)
that's why shift is to be equal to 7.