[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20201215182805.53913-1-ubizjak@gmail.com>
Date: Tue, 15 Dec 2020 19:28:02 +0100
From: Uros Bizjak <ubizjak@...il.com>
To: x86@...nel.org, kvm@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: Uros Bizjak <ubizjak@...il.com>, Will Deacon <will@...nel.org>,
Peter Zijlstra <peterz@...radead.org>,
Boqun Feng <boqun.feng@...il.com>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>, Borislav Petkov <bp@...en8.de>,
"H. Peter Anvin" <hpa@...or.com>,
Paolo Bonzini <pbonzini@...hat.com>,
Sean Christopherson <seanjc@...gle.com>,
Vitaly Kuznetsov <vkuznets@...hat.com>,
Wanpeng Li <wanpengli@...cent.com>,
Jim Mattson <jmattson@...gle.com>,
Joerg Roedel <joro@...tes.org>
Subject: [PATCH 0/3] x86/KVM/VMX: Introduce and use try_cmpxchg64()
This patch series introduces try_cmpxchg64() atomic locking function.
try_cmpxchg64() provides the same interface for 64 bit and 32 bit targets,
emits CMPXCHGQ for 64 bit targets and CMPXCHG8B for 32 bit targets,
and provides appropriate fallbacks when CMPXCHG8B is unavailable.
try_cmpxchg64() reuses flags from CMPXCHGQ/CMPXCHG8B instructions and
avoids unneeded CMP for 64 bit targets or XOR/XOR/OR sequence for
32 bit targets.
Cc: Will Deacon <will@...nel.org>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: Boqun Feng <boqun.feng@...il.com>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: Ingo Molnar <mingo@...hat.com>
Cc: Borislav Petkov <bp@...en8.de>
Cc: "H. Peter Anvin" <hpa@...or.com>
Cc: Paolo Bonzini <pbonzini@...hat.com>
Cc: Sean Christopherson <seanjc@...gle.com>
Cc: Vitaly Kuznetsov <vkuznets@...hat.com>
Cc: Wanpeng Li <wanpengli@...cent.com>
Cc: Jim Mattson <jmattson@...gle.com>
Cc: Joerg Roedel <joro@...tes.org>
Uros Bizjak (3):
asm-generic/atomic: Add try_cmpxchg64() instrumentation
locking/atomic/x86: Introduce arch_try_cmpxchg64()
KVM/VMX: Use try_cmpxchg64() in posted_intr.c
arch/x86/include/asm/cmpxchg_32.h | 62 +++++++++++++++++++----
arch/x86/include/asm/cmpxchg_64.h | 6 +++
arch/x86/kvm/vmx/posted_intr.c | 9 ++--
include/asm-generic/atomic-instrumented.h | 46 ++++++++++++++++-
scripts/atomic/gen-atomic-instrumented.sh | 2 +-
5 files changed, 108 insertions(+), 17 deletions(-)
--
2.26.2
Powered by blists - more mailing lists