* [PATCH -tip] x86/idle: Change arguments of mwait_idle_with_hints() to u32
@ 2025-04-03 7:30 Uros Bizjak
2025-04-03 14:07 ` [tip: x86/mm] " tip-bot2 for Uros Bizjak
2025-04-03 14:37 ` tip-bot2 for Uros Bizjak
0 siblings, 2 replies; 3+ messages in thread
From: Uros Bizjak @ 2025-04-03 7:30 UTC (permalink / raw)
To: x86, linux-kernel
Cc: Uros Bizjak, Andrew Cooper, Thomas Gleixner, Ingo Molnar,
Borislav Petkov, Dave Hansen, H. Peter Anvin
All functions in mwait_idle_with_hints() cast eax and ecx arguments
to u32. Propagate argument type to the enclosing function.
Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com>
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
---
arch/x86/include/asm/mwait.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/include/asm/mwait.h b/arch/x86/include/asm/mwait.h
index d956d1be4873..1e7b2337ff17 100644
--- a/arch/x86/include/asm/mwait.h
+++ b/arch/x86/include/asm/mwait.h
@@ -115,7 +115,7 @@ static __always_inline void __sti_mwait(u32 eax, u32 ecx)
* New with Core Duo processors, MWAIT can take some hints based on CPU
* capability.
*/
-static __always_inline void mwait_idle_with_hints(unsigned long eax, unsigned long ecx)
+static __always_inline void mwait_idle_with_hints(u32 eax, u32 ecx)
{
if (static_cpu_has_bug(X86_BUG_MONITOR) || !current_set_polling_and_test()) {
const void *addr = ¤t_thread_info()->flags;
--
2.49.0
^ permalink raw reply [flat|nested] 3+ messages in thread* [tip: x86/mm] x86/idle: Change arguments of mwait_idle_with_hints() to u32
2025-04-03 7:30 [PATCH -tip] x86/idle: Change arguments of mwait_idle_with_hints() to u32 Uros Bizjak
@ 2025-04-03 14:07 ` tip-bot2 for Uros Bizjak
2025-04-03 14:37 ` tip-bot2 for Uros Bizjak
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Uros Bizjak @ 2025-04-03 14:07 UTC (permalink / raw)
To: linux-tip-commits
Cc: Andrew Cooper, Uros Bizjak, Ingo Molnar, x86, linux-kernel
The following commit has been merged into the x86/mm branch of tip:
Commit-ID: 532aa71ed23b79e74171de7b6b6369a08b55c813
Gitweb: https://git.kernel.org/tip/532aa71ed23b79e74171de7b6b6369a08b55c813
Author: Uros Bizjak <ubizjak@gmail.com>
AuthorDate: Thu, 03 Apr 2025 09:30:49 +02:00
Committer: Ingo Molnar <mingo@kernel.org>
CommitterDate: Thu, 03 Apr 2025 15:40:43 +02:00
x86/idle: Change arguments of mwait_idle_with_hints() to u32
All functions in mwait_idle_with_hints() cast eax and ecx arguments
to u32. Propagate argument type to the enclosing function.
Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com>
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20250403073105.245987-1-ubizjak@gmail.com
---
arch/x86/include/asm/mwait.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/include/asm/mwait.h b/arch/x86/include/asm/mwait.h
index 26b68ee..5122260 100644
--- a/arch/x86/include/asm/mwait.h
+++ b/arch/x86/include/asm/mwait.h
@@ -109,7 +109,7 @@ static __always_inline void __sti_mwait(u32 eax, u32 ecx)
* New with Core Duo processors, MWAIT can take some hints based on CPU
* capability.
*/
-static __always_inline void mwait_idle_with_hints(unsigned long eax, unsigned long ecx)
+static __always_inline void mwait_idle_with_hints(u32 eax, u32 ecx)
{
if (static_cpu_has_bug(X86_BUG_MONITOR) || !current_set_polling_and_test()) {
const void *addr = ¤t_thread_info()->flags;
^ permalink raw reply [flat|nested] 3+ messages in thread* [tip: x86/mm] x86/idle: Change arguments of mwait_idle_with_hints() to u32
2025-04-03 7:30 [PATCH -tip] x86/idle: Change arguments of mwait_idle_with_hints() to u32 Uros Bizjak
2025-04-03 14:07 ` [tip: x86/mm] " tip-bot2 for Uros Bizjak
@ 2025-04-03 14:37 ` tip-bot2 for Uros Bizjak
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Uros Bizjak @ 2025-04-03 14:37 UTC (permalink / raw)
To: linux-tip-commits
Cc: Andrew Cooper, Uros Bizjak, Ingo Molnar, x86, linux-kernel
The following commit has been merged into the x86/mm branch of tip:
Commit-ID: a17b37a3f416c9e385bbd2b5fc603d337eab76eb
Gitweb: https://git.kernel.org/tip/a17b37a3f416c9e385bbd2b5fc603d337eab76eb
Author: Uros Bizjak <ubizjak@gmail.com>
AuthorDate: Thu, 03 Apr 2025 09:30:49 +02:00
Committer: Ingo Molnar <mingo@kernel.org>
CommitterDate: Thu, 03 Apr 2025 16:27:42 +02:00
x86/idle: Change arguments of mwait_idle_with_hints() to u32
All functions in mwait_idle_with_hints() cast eax and ecx arguments
to u32. Propagate argument type to the enclosing function.
Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com>
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20250403073105.245987-1-ubizjak@gmail.com
---
arch/x86/include/asm/mwait.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/include/asm/mwait.h b/arch/x86/include/asm/mwait.h
index 6a2ec20..44d3bb2 100644
--- a/arch/x86/include/asm/mwait.h
+++ b/arch/x86/include/asm/mwait.h
@@ -110,7 +110,7 @@ static __always_inline void __sti_mwait(u32 eax, u32 ecx)
* New with Core Duo processors, MWAIT can take some hints based on CPU
* capability.
*/
-static __always_inline void mwait_idle_with_hints(unsigned long eax, unsigned long ecx)
+static __always_inline void mwait_idle_with_hints(u32 eax, u32 ecx)
{
if (static_cpu_has_bug(X86_BUG_MONITOR) || !current_set_polling_and_test()) {
const void *addr = ¤t_thread_info()->flags;
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-03 14:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-03 7:30 [PATCH -tip] x86/idle: Change arguments of mwait_idle_with_hints() to u32 Uros Bizjak
2025-04-03 14:07 ` [tip: x86/mm] " tip-bot2 for Uros Bizjak
2025-04-03 14:37 ` tip-bot2 for Uros Bizjak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®