Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752239AbdI2Keg (ORCPT ); Fri, 29 Sep 2017 06:34:36 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:41733 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751830AbdI2Ked (ORCPT ); Fri, 29 Sep 2017 06:34:33 -0400 Date: Fri, 29 Sep 2017 12:34:24 +0200 From: Peter Zijlstra To: Paolo Bonzini Cc: Boqun Feng , "Paul E. McKenney" , "Levin, Alexander (Sasha Levin)" , Sasha Levin , "linux-kernel@vger.kernel.org List" , Ingo Molnar , "jiangshanlai@gmail.com" , "dipankar@in.ibm.com" , Andrew Morton , Mathieu Desnoyers , Josh Triplett , Thomas Gleixner , "dhowells@redhat.com" , Eric Dumazet , Fr??d??ric Weisbecker , Oleg Nesterov , "bobby.prani@gmail.com" , Radim Kr??m???? , kvm@vger.kernel.org Subject: Re: [PATCH v3 tip/core/rcu 40/40] rcu: Make non-preemptive schedule be Tasks RCU quiescent state Message-ID: <20170929103424.o4yje6sv4s3c7hmq@hirez.programming.kicks-ass.net> References: <20170419165805.GB10874@linux.vnet.ibm.com> <1492621117-13939-40-git-send-email-paulmck@linux.vnet.ibm.com> <20170928123055.GI3521@linux.vnet.ibm.com> <20170928153813.7cernglt2d7umhpe@sasha-lappy> <20170928160514.GM3521@linux.vnet.ibm.com> <20170929093010.w56nawdoz23mkzio@tardis> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1234 Lines: 29 On Fri, Sep 29, 2017 at 12:01:24PM +0200, Paolo Bonzini wrote: > > Does this mean whenever we get a page fault in a RCU read-side critical > > section, we may hit this? > > > > Could we simply avoid to schedule() in kvm_async_pf_task_wait() if the > > fault process is in a RCU read-side critical section as follow? > > > > diff --git a/arch/x86/kernel/kvm.c b/arch/x86/kernel/kvm.c > > index aa60a08b65b1..291ea13b23d2 100644 > > --- a/arch/x86/kernel/kvm.c > > +++ b/arch/x86/kernel/kvm.c > > @@ -140,7 +140,7 @@ void kvm_async_pf_task_wait(u32 token) > > > > n.token = token; > > n.cpu = smp_processor_id(); > > - n.halted = is_idle_task(current) || preempt_count() > 1; > > + n.halted = is_idle_task(current) || preempt_count() > 1 || rcu_preempt_depth(); > > init_swait_queue_head(&n.wq); > > hlist_add_head(&n.link, &b->list); > > raw_spin_unlock(&b->lock); > > > > (Add KVM folks and list Cced) > > Yes, that would work. Mind to send it as a proper patch? I'm confused, why would we do an ASYNC PF at all here? Thing is, a printk() shouldn't trigger a major fault _ever_. At worst it triggers something like a vmalloc minor fault. And I'm thinking we should not do the whole ASYNC machinery for minor faults.