diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-03-14 09:12:28 -1000 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-03-14 09:12:28 -1000 |
commit | 70e23dda3817f8e74f71385e4c24dc891780deca (patch) | |
tree | 918f578b278e754e0f347a2dbf207993e70ceef0 | |
parent | 695caca9345a160ecd9645abab8e70cfe849e9ff (diff) | |
parent | 366fef794bd2b7c2e9df933f6828dd9739bfba84 (diff) |
Merge tag 'core-urgent-2025-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull core fix from Ingo Molnar:
"Fix a Sparse false positive warning triggered by no_free_ptr()"
* tag 'core-urgent-2025-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
<linux/cleanup.h>: Allow the passing of both iomem and non-iomem pointers to no_free_ptr()
-rw-r--r-- | include/linux/cleanup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cleanup.h b/include/linux/cleanup.h index ec00e3f7af2b..ee2614adb785 100644 --- a/include/linux/cleanup.h +++ b/include/linux/cleanup.h @@ -212,7 +212,7 @@ const volatile void * __must_check_fn(const volatile void *val) { return val; } #define no_free_ptr(p) \ - ((typeof(p)) __must_check_fn(__get_and_null(p, NULL))) + ((typeof(p)) __must_check_fn((__force const volatile void *)__get_and_null(p, NULL))) #define return_ptr(p) return no_free_ptr(p) |