From: Juergen Gross <jgross@suse.com>
To: linux-kernel@vger.kernel.org, x86@kernel.org
Cc: Juergen Gross <jgross@suse.com>,
Thomas Gleixner <tglx@kernel.org>, Ingo Molnar <mingo@redhat.com>,
Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
"H. Peter Anvin" <hpa@zytor.com>
Subject: [PATCH v3 02/11] x86/msr: Remove rdmsrl_on_cpu()
Date: Mon, 8 Jun 2026 07:17:32 +0200 [thread overview]
Message-ID: <20260608051741.3207435-3-jgross@suse.com> (raw)
In-Reply-To: <20260608051741.3207435-1-jgross@suse.com>
rdmsrl_on_cpu() has no users left. Delete it.
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Dave Hansen <dave.hansen@linux.intel.com>
---
V2:
- carved out from other patch (Ingo Molnar)
---
arch/x86/include/asm/msr.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/x86/include/asm/msr.h b/arch/x86/include/asm/msr.h
index 9c2ea29e12a9..fddadbc625be 100644
--- a/arch/x86/include/asm/msr.h
+++ b/arch/x86/include/asm/msr.h
@@ -329,7 +329,6 @@ static inline int wrmsr_safe_regs_on_cpu(unsigned int cpu, u32 regs[8])
/* Compatibility wrappers: */
#define rdmsrl(msr, val) rdmsrq(msr, val)
#define wrmsrl(msr, val) wrmsrq(msr, val)
-#define rdmsrl_on_cpu(cpu, msr, q) rdmsrq_on_cpu(cpu, msr, q)
#endif /* __ASSEMBLER__ */
#endif /* _ASM_X86_MSR_H */
--
2.54.0
next prev parent reply other threads:[~2026-06-08 5:17 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-08 5:17 [PATCH v3 00/11] x86/msr: Drop 32-bit variants of *_on_cpu() MSR functions Juergen Gross
2026-06-08 5:17 ` [PATCH v3 01/11] x86/msr: Switch rdmsrl_on_cpu() users to rdmsrq_on_cpu() Juergen Gross
2026-06-08 5:54 ` K Prateek Nayak
2026-06-08 8:03 ` [tip: x86/msr] x86/msr: Switch rdmsrl_on_cpu() user " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` Juergen Gross [this message]
2026-06-08 7:01 ` [PATCH 01.5/11] " Ingo Molnar
2026-06-08 7:11 ` Jürgen Groß
2026-06-08 7:58 ` Ingo Molnar
2026-06-08 8:03 ` [tip: x86/msr] x86/msr: Remove rdmsrl_on_cpu() tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 03/11] x86/msr: Switch rdmsr_on_cpu() users to rdmsrq_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 04/11] x86/msr: Remove rdmsr_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 05/11] x86/msr: Switch wrmsr_on_cpu() users to wrmsrq_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 06/11] x86/msr: Remove wrmsr_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 07/11] x86/msr: Don't use rdmsr_safe_on_cpu() in rdmsrq_safe_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 08/11] x86/msr: Switch rdmsr_safe_on_cpu() users to rdmsrq_safe_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 09/11] x86/msr: Remove rdmsr_safe_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 10/11] x86/msr: Switch wrmsr_safe_on_cpu() users to wrmsrq_safe_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:17 ` [PATCH v3 11/11] x86/msr: Remove wrmsr_safe_on_cpu() Juergen Gross
2026-06-08 8:03 ` [tip: x86/msr] " tip-bot2 for Juergen Gross
2026-06-08 5:59 ` [PATCH v3 00/11] x86/msr: Drop 32-bit variants of *_on_cpu() MSR functions K Prateek Nayak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260608051741.3207435-3-jgross@suse.com \
--to=jgross@suse.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=tglx@kernel.org \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome