All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: KVM: fix unbalanced get_cpu() in access_dcsw
@ 2013-04-12 17:13 Marc Zyngier
  2013-04-12 18:13 ` Will Deacon
  0 siblings, 1 reply; 5+ messages in thread
From: Marc Zyngier @ 2013-04-12 17:13 UTC (permalink / raw)
  To: linux-arm-kernel

In the very unlikely event where a guest would be foolish enough to
*read* from a write-only cache maintainance register, we end up
with preemption disabled, due to a misplaced get_cpu().

Just move the "is_write" test outside of the critical section.

Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
---
 arch/arm/kvm/coproc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/kvm/coproc.c b/arch/arm/kvm/coproc.c
index 94eee8b..8eea97b 100644
--- a/arch/arm/kvm/coproc.c
+++ b/arch/arm/kvm/coproc.c
@@ -79,11 +79,11 @@ static bool access_dcsw(struct kvm_vcpu *vcpu,
 	unsigned long val;
 	int cpu;
 
-	cpu = get_cpu();
-
 	if (!p->is_write)
 		return read_from_write_only(vcpu, p);
 
+	cpu = get_cpu();
+
 	cpumask_setall(&vcpu->arch.require_dcache_flush);
 	cpumask_clear_cpu(cpu, &vcpu->arch.require_dcache_flush);
 
-- 
1.8.1.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [PATCH] ARM: KVM: fix unbalanced get_cpu() in access_dcsw
@ 2013-04-17 19:09 Christoffer Dall
  0 siblings, 0 replies; 5+ messages in thread
From: Christoffer Dall @ 2013-04-17 19:09 UTC (permalink / raw)
  To: Linus Torvalds, Marcelo Tosatti, kvm
  Cc: kvmarm, Marc Zyngier, Christoffer Dall

From: Marc Zyngier <marc.zyngier@arm.com>

In the very unlikely event where a guest would be foolish enough to
*read* from a write-only cache maintainance register, we end up
with preemption disabled, due to a misplaced get_cpu().

Just move the "is_write" test outside of the critical section.

Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Christoffer Dall <cdall@cs.columbia.edu>
---
 arch/arm/kvm/coproc.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/kvm/coproc.c b/arch/arm/kvm/coproc.c
index 4ea9a98..7bed755 100644
--- a/arch/arm/kvm/coproc.c
+++ b/arch/arm/kvm/coproc.c
@@ -79,11 +79,11 @@ static bool access_dcsw(struct kvm_vcpu *vcpu,
 	u32 val;
 	int cpu;
 
-	cpu = get_cpu();
-
 	if (!p->is_write)
 		return read_from_write_only(vcpu, p);
 
+	cpu = get_cpu();
+
 	cpumask_setall(&vcpu->arch.require_dcache_flush);
 	cpumask_clear_cpu(cpu, &vcpu->arch.require_dcache_flush);
 
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-04-17 19:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-12 17:13 [PATCH] ARM: KVM: fix unbalanced get_cpu() in access_dcsw Marc Zyngier
2013-04-12 18:13 ` Will Deacon
2013-04-12 19:17   ` Marc Zyngier
2013-04-15  6:46     ` Christoffer Dall
  -- strict thread matches above, loose matches on Subject: below --
2013-04-17 19:09 Christoffer Dall

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.