kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] srcu: allow using same SRCU in process and interrupt context
@ 2017-05-31 12:03 Paolo Bonzini
  2017-05-31 12:03 ` [PATCH 1/2] srcutiny, srcutree: " Paolo Bonzini
  2017-05-31 12:03 ` [PATCH 2/2] srcuclassic: " Paolo Bonzini
  0 siblings, 2 replies; 5+ messages in thread
From: Paolo Bonzini @ 2017-05-31 12:03 UTC (permalink / raw)
  To: linux-kernel, kvm
  Cc: jiangshanlai, josh, rostedt, mathieu.desnoyers, Linu Cherian,
	Paul E. McKenney

Linu Cherian reported a WARN in cleanup_srcu_struct when shutting
down a guest that has iperf running on a VFIO assigned device.

This happens because irqfd_wakeup calls srcu_read_lock(&kvm->irq_srcu)
in interrupt context, while a worker thread does the same inside
kvm_set_irq.  If the interrupt happens while the worker thread is
executing __srcu_read_lock, lock_count can fall behind.
(KVM is using SRCU here not really for the "sleepable" part, but
rather due to its faster detection of grace periods).

As discussed with Paul, this patch changes __this_cpu_inc to this_cpu_inc
in __srcu_read_lock, thus removing the restriction that SRCU can only
be used in process context.

Split in two parts so that srcuclassic and header changes can be
backported to stable releases.  Because of the backport, the two commit
messages are more or less cut-and-pasted.

Ok for 4.12?

Paolo

Paolo Bonzini (2):
  srcutiny, srcutree: allow using same SRCU in process and interrupt context
  srcuclassic: allow using same SRCU in process and interrupt context

 include/linux/srcu.h     |  2 --
 include/linux/srcutiny.h |  2 +-
 kernel/rcu/rcutorture.c  |  4 ++--
 kernel/rcu/srcu.c        |  5 ++---
 kernel/rcu/srcutiny.c    | 21 ++++++++++-----------
 kernel/rcu/srcutree.c    |  5 ++---
 6 files changed, 17 insertions(+), 22 deletions(-)

-- 
1.8.3.1

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

end of thread, other threads:[~2017-05-31 17:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-31 12:03 [PATCH 0/2] srcu: allow using same SRCU in process and interrupt context Paolo Bonzini
2017-05-31 12:03 ` [PATCH 1/2] srcutiny, srcutree: " Paolo Bonzini
2017-05-31 17:56   ` Paul E. McKenney
2017-05-31 12:03 ` [PATCH 2/2] srcuclassic: " Paolo Bonzini
2017-05-31 17:56   ` Paul E. McKenney

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).