-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Linux: remove code gated behind kernel version checks #16545
Conversation
Following 2b06976 (openzfs#16479), anything gated on a kernel version before 4.18 can be always included/excluded. Sponsored-by: https://despairlabs.com/sponsor/ Signed-off-by: Rob Norris <[email protected]>
All kernels we support have compound pages that work the way we would like. However, this code is new and this knowledge was hard won, so I'd like to leave the description and option there for a little while, even if it can only be disabled with a recompile. Signed-off-by: Rob Norris <[email protected]> Sponsored-by: https://despairlabs.com/sponsor/
@mcmilk would appreciate your expert eye on |
On aarch64 |
@Harry-Chen - I remember, I wanted to create a workaround via spl for this. It's on my TODO list again. |
I would suggest implementing our own, rather than wrapping the GPL-only functions, since historical precedent shows they'll just stop exposing the symbols if we do that. |
I will try to implement this 👌 |
All kernels we support have compound pages that work the way we would like. However, this code is new and this knowledge was hard won, so I'd like to leave the description and option there for a little while, even if it can only be disabled with a recompile. Sponsored-by: https://despairlabs.com/sponsor/ Reviewed by: Brian Behlendorf <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Reviewed-by: Tino Reichardt <[email protected]> Signed-off-by: Rob Norris <[email protected]> Closes #16545
Following 2b06976 (openzfs#16479), anything gated on a kernel version before 4.18 can be always included/excluded. Sponsored-by: https://despairlabs.com/sponsor/ Reviewed by: Brian Behlendorf <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Reviewed-by: Tino Reichardt <[email protected]> Signed-off-by: Rob Norris <[email protected]> Closes openzfs#16545
All kernels we support have compound pages that work the way we would like. However, this code is new and this knowledge was hard won, so I'd like to leave the description and option there for a little while, even if it can only be disabled with a recompile. Sponsored-by: https://despairlabs.com/sponsor/ Reviewed by: Brian Behlendorf <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Reviewed-by: Tino Reichardt <[email protected]> Signed-off-by: Rob Norris <[email protected]> Closes openzfs#16545
Motivation and Context
A bit more support for older kernels that we'll never use. Should have been in #16479, just an oversight that it wasn't.
Description
There's a few places where we tested
LINUX_VERSION_CODE
for versions in the past. Remove those, and the support code for the "older" kernels versions that we'll never see again.Didn't remove the compound page code for the moment, just the version check, for reasons described within.
How Has This Been Tested?
Compile checked against 6.1.x only.
Types of changes
Checklist:
Signed-off-by
.