Thread (16 messages) 16 messages, 4 authors, 2017-12-04
STALE3124d REVIEWED: 2 (2M)
Revisions (6)
  1. v4 [diff vs current]
  2. v5 [diff vs current]
  3. v5 current
  4. v7 [diff vs current]
  5. v8 [diff vs current]
  6. v9 [diff vs current]

[PATCH v5 1/8] KVM: arm/arm64: Remove redundant preemptible checks

From: andre.przywara@arm.com (Andre Przywara)
Date: 2017-12-01 18:04:00
Also in: kvm, kvmarm

Hi,

On 20/11/17 19:16, Christoffer Dall wrote:
The __this_cpu_read() and __this_cpu_write() functions already implement
checks for the required preemption levels when using
CONFIG_DEBUG_PREEMPT which gives you nice error messages and such.
Therefore there is no need to explicitly check this using a BUG_ON() in
the code (which we don't do for other uses of per cpu variables either).

Acked-by: Marc Zyngier <redacted>
Signed-off-by: Christoffer Dall <redacted>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>

quoted hunk ↗ jump to hunk
---
 virt/kvm/arm/arm.c | 2 --
 1 file changed, 2 deletions(-)
diff --git a/virt/kvm/arm/arm.c b/virt/kvm/arm/arm.c
index c13d74c083fe..28548aeaf164 100644
--- a/virt/kvm/arm/arm.c
+++ b/virt/kvm/arm/arm.c
@@ -71,7 +71,6 @@ static DEFINE_PER_CPU(unsigned char, kvm_arm_hardware_enabled);
 
 static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
 {
-	BUG_ON(preemptible());
 	__this_cpu_write(kvm_arm_running_vcpu, vcpu);
 }
 
@@ -81,7 +80,6 @@ static void kvm_arm_set_running_vcpu(struct kvm_vcpu *vcpu)
  */
 struct kvm_vcpu *kvm_arm_get_running_vcpu(void)
 {
-	BUG_ON(preemptible());
 	return __this_cpu_read(kvm_arm_running_vcpu);
 }
 
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help