From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Xen-devel <xen-devel@lists.xen.org>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Subject: [PATCH 0/6] x86/msr: Introductory MSR cleanup
Date: Tue, 26 Jun 2018 14:18:12 +0100 [thread overview]
Message-ID: <1530019098-7058-1-git-send-email-andrew.cooper3@citrix.com> (raw)
This series is a combination of fragments already posted, and cleanup work I
did while travelling in/around XenSummit.
There is no real functional change, but there is a lot of code volume
reduction and consistency improvements. This is the start of a very large
amount of MSR improvement work.
Andrew Cooper (6):
x86/msr: Clean up the MSR_EFER constants
x86/msr: Cleanup of misc constants
x86/msr: Clean up the MSR_{PLATFORM_INFO,MISC_FEATURES_ENABLES} constants
x86/msr: Clean up the MSR_FEATURE_CONTROL constants
x86/msr: Clean up the MSR_APIC_BASE constants
x86/msr: Clean up the x2APIC MSR constants
xen/arch/x86/apic.c | 66 +++++++-------
xen/arch/x86/boot/trampoline.S | 2 +-
xen/arch/x86/boot/wakeup.S | 7 +-
xen/arch/x86/cpu/common.c | 16 ++--
xen/arch/x86/cpu/intel.c | 2 +-
xen/arch/x86/cpu/mcheck/mce_intel.c | 7 +-
xen/arch/x86/cpu/mcheck/vmce.c | 2 +-
xen/arch/x86/cpu/mwait-idle.c | 4 +-
xen/arch/x86/domctl.c | 4 +-
xen/arch/x86/efi/efi-boot.h | 2 +-
xen/arch/x86/genapic/x2apic.c | 4 +-
xen/arch/x86/hvm/hvm.c | 16 ++--
xen/arch/x86/hvm/vlapic.c | 19 ++--
xen/arch/x86/hvm/vmx/vmcs.c | 31 +++----
xen/arch/x86/hvm/vmx/vmx.c | 33 ++++---
xen/arch/x86/msr.c | 30 +++----
xen/arch/x86/spec_ctrl.c | 8 +-
xen/arch/x86/x86_emulate/x86_emulate.c | 6 +-
xen/include/asm-x86/cpufeature.h | 1 +
xen/include/asm-x86/hvm/hvm.h | 2 +-
xen/include/asm-x86/hvm/vlapic.h | 6 +-
xen/include/asm-x86/msr-index.h | 156 +++++++++++++++++----------------
xen/include/asm-x86/msr.h | 4 +-
23 files changed, 212 insertions(+), 216 deletions(-)
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next reply other threads:[~2018-06-26 13:18 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-26 13:18 Andrew Cooper [this message]
2018-06-26 13:18 ` [PATCH 1/6] x86/msr: Clean up the MSR_EFER constants Andrew Cooper
2018-06-26 15:33 ` Wei Liu
2018-06-27 10:39 ` Roger Pau Monné
2018-06-27 10:44 ` Andrew Cooper
2018-06-28 13:00 ` Jan Beulich
2018-06-28 13:36 ` Andrew Cooper
2018-06-28 13:56 ` Jan Beulich
2018-09-07 14:47 ` Andrew Cooper
2018-09-07 15:09 ` Jan Beulich
2018-06-26 13:18 ` [PATCH 2/6] x86/msr: Cleanup of misc constants Andrew Cooper
2018-06-26 15:43 ` Wei Liu
2018-06-27 10:48 ` Roger Pau Monné
2018-06-26 13:18 ` [PATCH 3/6] x86/msr: Clean up the MSR_{PLATFORM_INFO, MISC_FEATURES_ENABLES} constants Andrew Cooper
2018-06-26 16:31 ` Wei Liu
2018-06-27 11:08 ` Roger Pau Monné
2018-06-28 13:04 ` Jan Beulich
2018-06-26 13:18 ` [PATCH 4/6] x86/msr: Clean up the MSR_FEATURE_CONTROL constants Andrew Cooper
2018-06-26 17:59 ` Andrew Cooper
2018-06-27 9:05 ` Jan Beulich
2018-06-27 11:08 ` Wei Liu
2018-06-27 11:21 ` Roger Pau Monné
2018-06-28 13:11 ` Jan Beulich
2018-07-02 5:56 ` Tian, Kevin
2018-06-26 13:18 ` [PATCH 5/6] x86/msr: Clean up the MSR_APIC_BASE constants Andrew Cooper
2018-06-27 13:26 ` Wei Liu
2018-06-27 13:32 ` Roger Pau Monné
2018-06-27 13:35 ` Andrew Cooper
2018-06-27 14:50 ` Andrew Cooper
2018-06-26 13:18 ` [PATCH 6/6] x86/msr: Clean up the x2APIC MSR constants Andrew Cooper
2018-06-27 13:26 ` Wei Liu
2018-06-27 13:50 ` Roger Pau Monné
2018-06-27 14:15 ` Andrew Cooper
2018-06-28 13:18 ` Jan Beulich
2018-06-26 18:22 ` [PATCH 7/6] x86/msr: Introduce msr_{set, clear}_bits() helpers Andrew Cooper
2018-06-27 13:35 ` Wei Liu
2018-06-27 14:17 ` Roger Pau Monné
2018-06-27 14:27 ` Andrew Cooper
2018-06-28 13:26 ` Jan Beulich
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=1530019098-7058-1-git-send-email-andrew.cooper3@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=xen-devel@lists.xen.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;
as well as URLs for NNTP newsgroup(s).