From: "Jürgen Groß" <jgross@suse.com>
To: Shreshth Srivastava <shreshth.srivastava@intel.com>,
linux-kernel@vger.kernel.org, x86@kernel.org,
linux-perf-users@vger.kernel.org, linux-hyperv@vger.kernel.org,
kvm@vger.kernel.org, linux-coco@lists.linux.dev
Cc: acme@kernel.org, adrian.hunter@intel.com,
alexander.shishkin@linux.intel.com, bp@alien8.de,
dave.hansen@linux.intel.com, decui@microsoft.com,
haiyangz@microsoft.com, hpa@zytor.com, irogers@google.com,
james.clark@linaro.org, jolsa@kernel.org, kas@kernel.org,
kys@microsoft.com, longli@microsoft.com, mark.rutland@arm.com,
mhklinux@outlook.com, mingo@redhat.com, namhyung@kernel.org,
pbonzini@redhat.com, peterz@infradead.org,
rick.p.edgecombe@intel.com, seanjc@google.com, tglx@kernel.org,
wei.liu@kernel.org
Subject: Re: [PATCH v3 13/13] x86/msr: Simplify some rdmsrq() use cases
Date: Sat, 12 Sep 2026 08:50:02 +0200 [thread overview]
Message-ID: <1e2adc53-87f4-42f3-8eda-cce828009e88@suse.com> (raw)
In-Reply-To: <20260911213310.381839-1-shreshth.srivastava@intel.com>
[-- Attachment #1.1.1: Type: text/plain, Size: 1259 bytes --]
On 11.09.26 23:33, Shreshth Srivastava wrote:
> Hi Juergen,
>
> I'm working on a v3 of Dave's "x86/msr: Consolidate native/paravirt MSR
> functions" series on top of yours, so I tried testing this patch.
You should look at [1] and [2] as well.
>
> While I'm here: you mentioned you'd send a V3 after rc1 if conflicts
> turned up. Is that still the plan? I wasn't sure whether to base on v2
> plus the respins of 4 and 13, or wait.
I did send out V3 yesterday [3].
>
> Most of the code this touches can't run on my box, so I compared compiled
> output instead. Built patches 1-12, then 1-13, with the same .config and
> compiler, and diffed "objdump -d" output for every .o in both trees. All
> 9396 objects came out identical. The 1-13 kernel boots fine under KVM.
>
> Only tried the one config: x86_64, gcc 11.5.0,
> CPU_SUP_{INTEL,AMD,ZHAOXIN}=y, HYPERV=y, KVM_INTEL=y, KVM_INTEL_TDX=y.
>
> Tested-by: Shreshth Srivastava <shreshth.srivastava@intel.com>
Thanks.
Juergen
[1]: https://lore.kernel.org/lkml/20260911075216.3142309-1-jgross@suse.com/T/#t
[2]: https://lore.kernel.org/lkml/20260911084211.3149957-1-jgross@suse.com/T/#t
[3]: https://lore.kernel.org/lkml/20260911074530.3140830-1-jgross@suse.com/T/#t
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3743 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
next prev parent reply other threads:[~2026-09-12 6:50 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-19 10:23 [PATCH v2 00/13] x86/msr: Drop 32-bit MSR interfaces Juergen Gross
2026-08-19 10:23 ` Juergen Gross
2026-08-19 10:23 ` [PATCH v2 01/13] x86/cpu: Fix coding style violation Juergen Gross
2026-08-19 10:23 ` [PATCH v2 02/13] x86/msr: Remove wrmsr_safe() Juergen Gross
2026-08-19 10:23 ` [PATCH v2 03/13] x86/msr: Remove rdmsr_safe() Juergen Gross
2026-08-19 10:23 ` [PATCH v2 04/13] drivers/ata: Stop using 32-bit MSR interfaces Juergen Gross
2026-08-19 13:40 ` David Laight
2026-08-19 15:27 ` Jürgen Groß
2026-08-21 9:12 ` [PATCH v3 " Juergen Gross
2026-08-21 12:14 ` Niklas Cassel
2026-08-19 10:23 ` [PATCH v2 05/13] agp/nvidia: " Juergen Gross
2026-08-19 10:23 ` [PATCH v2 06/13] fbdev/geode: " Juergen Gross
2026-08-19 10:23 ` [PATCH v2 07/13] hw_random/via-rng: " Juergen Gross
2026-08-19 10:23 ` [PATCH v2 08/13] drivers/gpio: " Juergen Gross
2026-08-19 10:23 ` [PATCH v2 09/13] drivers/misc: " Juergen Gross
2026-08-19 10:23 ` [PATCH v2 10/13] x86/msr: Remove wrmsr() Juergen Gross
2026-08-19 10:23 ` [PATCH v2 11/13] x86/msr: Remove rdmsr() Juergen Gross
2026-08-19 10:23 ` [PATCH v2 12/13] treewide: convert rdmsrq() from a macro to an inline function Juergen Gross
2026-08-19 10:23 ` Juergen Gross
2026-08-19 10:44 ` sashiko-bot
2026-08-20 6:06 ` Damien Le Moal
2026-08-20 6:06 ` Damien Le Moal
2026-08-21 4:13 ` Michael Kelley
2026-08-21 4:13 ` Michael Kelley
2026-08-19 10:23 ` [PATCH v2 13/13] x86/msr: Simplify some rdmsrq() use cases Juergen Gross
2026-08-19 10:41 ` sashiko-bot
2026-08-19 15:28 ` Sean Christopherson
2026-08-19 15:31 ` Jürgen Groß
2026-08-21 4:13 ` Michael Kelley
2026-08-21 10:57 ` [PATCH v3 " Juergen Gross
2026-09-11 21:33 ` Shreshth Srivastava
2026-09-12 6:50 ` Jürgen Groß [this message]
2026-08-19 14:40 ` [PATCH v2 00/13] x86/msr: Drop 32-bit MSR interfaces Dave Hansen
2026-08-19 14:40 ` Dave Hansen
2026-08-19 15:21 ` Jürgen Groß
2026-08-19 15:21 ` Jürgen Groß
2026-08-19 15:33 ` Sean Christopherson
2026-08-19 15:33 ` Sean Christopherson
2026-08-20 5:27 ` Jürgen Groß
2026-08-20 5:27 ` Jürgen Groß
-- strict thread matches above, loose matches on Subject: below --
2026-09-11 7:45 [PATCH v3 " Juergen Gross
2026-09-11 7:45 ` [PATCH v3 13/13] x86/msr: Simplify some rdmsrq() use cases Juergen Gross
2026-09-11 7:56 ` sashiko-bot
2026-09-11 13:20 ` Sean Christopherson
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=1e2adc53-87f4-42f3-8eda-cce828009e88@suse.com \
--to=jgross@suse.com \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=decui@microsoft.com \
--cc=haiyangz@microsoft.com \
--cc=hpa@zytor.com \
--cc=irogers@google.com \
--cc=james.clark@linaro.org \
--cc=jolsa@kernel.org \
--cc=kas@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=kys@microsoft.com \
--cc=linux-coco@lists.linux.dev \
--cc=linux-hyperv@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=longli@microsoft.com \
--cc=mark.rutland@arm.com \
--cc=mhklinux@outlook.com \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.org \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=rick.p.edgecombe@intel.com \
--cc=seanjc@google.com \
--cc=shreshth.srivastava@intel.com \
--cc=tglx@kernel.org \
--cc=wei.liu@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.