* [PATCH linux-next] mm/huge_memory: mark racy access on huge_anon_orders_always
@ 2024-05-11 6:44 xu.xin16
2024-05-13 16:00 ` David Hildenbrand
2024-05-13 19:05 ` Yang Shi
0 siblings, 2 replies; 3+ messages in thread
From: xu.xin16 @ 2024-05-11 6:44 UTC (permalink / raw)
To: akpm; +Cc: david, willy, shy828301, linux-kernel, linux-mm, ziy
From: Ran Xiaokai <ran.xiaokai@zte.com.cn>
huge_anon_orders_always and huge_anon_orders_always are accessed
lockless, it is better to use the READ_ONCE() wrapper.
This is not fixing any visible bug, hopefully this can cease some
KCSAN complains in the future.
Also do that for huge_anon_orders_madvise.
Signed-off-by: Ran Xiaokai <ran.xiaokai@zte.com.cn>
---
include/linux/huge_mm.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
index de0c89105076..6573430ea600 100644
--- a/include/linux/huge_mm.h
+++ b/include/linux/huge_mm.h
@@ -122,8 +122,8 @@ static inline bool hugepage_flags_enabled(void)
* So we don't need to look at huge_anon_orders_inherit.
*/
return hugepage_global_enabled() ||
- huge_anon_orders_always ||
- huge_anon_orders_madvise;
+ READ_ONCE(huge_anon_orders_always) ||
+ READ_ONCE(huge_anon_orders_madvise);
}
static inline int highest_order(unsigned long orders)
--
2.15.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH linux-next] mm/huge_memory: mark racy access on huge_anon_orders_always
2024-05-11 6:44 [PATCH linux-next] mm/huge_memory: mark racy access on huge_anon_orders_always xu.xin16
@ 2024-05-13 16:00 ` David Hildenbrand
2024-05-13 19:05 ` Yang Shi
1 sibling, 0 replies; 3+ messages in thread
From: David Hildenbrand @ 2024-05-13 16:00 UTC (permalink / raw)
To: xu.xin16, akpm; +Cc: willy, shy828301, linux-kernel, linux-mm, ziy
On 11.05.24 08:44, xu.xin16@zte.com.cn wrote:
> From: Ran Xiaokai <ran.xiaokai@zte.com.cn>
>
> huge_anon_orders_always and huge_anon_orders_always are accessed
"huge_anon_orders_always" mentioned twice.
> lockless, it is better to use the READ_ONCE() wrapper.
> This is not fixing any visible bug, hopefully this can cease some
> KCSAN complains in the future.
> Also do that for huge_anon_orders_madvise.
>
> Signed-off-by: Ran Xiaokai <ran.xiaokai@zte.com.cn>
> ---
> include/linux/huge_mm.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
> index de0c89105076..6573430ea600 100644
> --- a/include/linux/huge_mm.h
> +++ b/include/linux/huge_mm.h
> @@ -122,8 +122,8 @@ static inline bool hugepage_flags_enabled(void)
> * So we don't need to look at huge_anon_orders_inherit.
> */
> return hugepage_global_enabled() ||
> - huge_anon_orders_always ||
> - huge_anon_orders_madvise;
> + READ_ONCE(huge_anon_orders_always) ||
> + READ_ONCE(huge_anon_orders_madvise);
Don't mess up the alignment please.
> }
>
> static inline int highest_order(unsigned long orders)
Acked-by: David Hildenbrand <david@redhat.com>
--
Cheers,
David / dhildenb
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH linux-next] mm/huge_memory: mark racy access on huge_anon_orders_always
2024-05-11 6:44 [PATCH linux-next] mm/huge_memory: mark racy access on huge_anon_orders_always xu.xin16
2024-05-13 16:00 ` David Hildenbrand
@ 2024-05-13 19:05 ` Yang Shi
1 sibling, 0 replies; 3+ messages in thread
From: Yang Shi @ 2024-05-13 19:05 UTC (permalink / raw)
To: xu.xin16; +Cc: akpm, david, willy, linux-kernel, linux-mm, ziy
On Sat, May 11, 2024 at 12:44 AM <xu.xin16@zte.com.cn> wrote:
>
> From: Ran Xiaokai <ran.xiaokai@zte.com.cn>
>
> huge_anon_orders_always and huge_anon_orders_always are accessed
> lockless, it is better to use the READ_ONCE() wrapper.
> This is not fixing any visible bug, hopefully this can cease some
> KCSAN complains in the future.
A little bit confused here. Did you see complaints from KCSAN?
> Also do that for huge_anon_orders_madvise.
>
> Signed-off-by: Ran Xiaokai <ran.xiaokai@zte.com.cn>
> ---
> include/linux/huge_mm.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
> index de0c89105076..6573430ea600 100644
> --- a/include/linux/huge_mm.h
> +++ b/include/linux/huge_mm.h
> @@ -122,8 +122,8 @@ static inline bool hugepage_flags_enabled(void)
> * So we don't need to look at huge_anon_orders_inherit.
> */
> return hugepage_global_enabled() ||
> - huge_anon_orders_always ||
> - huge_anon_orders_madvise;
> + READ_ONCE(huge_anon_orders_always) ||
> + READ_ONCE(huge_anon_orders_madvise);
> }
>
> static inline int highest_order(unsigned long orders)
> --
> 2.15.2
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-05-13 19:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-11 6:44 [PATCH linux-next] mm/huge_memory: mark racy access on huge_anon_orders_always xu.xin16
2024-05-13 16:00 ` David Hildenbrand
2024-05-13 19:05 ` Yang Shi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox