From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756297Ab2DQRLP (ORCPT ); Tue, 17 Apr 2012 13:11:15 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40501 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756256Ab2DQRLM (ORCPT ); Tue, 17 Apr 2012 13:11:12 -0400 Date: Tue, 17 Apr 2012 19:09:58 +0200 From: Oleg Nesterov To: Peter Zijlstra Cc: Ingo Molnar , Srikar Dronamraju , Andrew Morton , Linus Torvalds , Ananth N Mavinakayanahalli , Jim Keniston , LKML , Linux-mm , Andi Kleen , Christoph Hellwig , Steven Rostedt , Arnaldo Carvalho de Melo , Masami Hiramatsu , Thomas Gleixner , Anton Arapov Subject: Re: [PATCH 2/6] uprobes: introduce is_swbp_at_addr_fast() Message-ID: <20120417170958.GA16511@redhat.com> References: <20120405222024.GA19154@redhat.com> <20120405222106.GB19166@redhat.com> <1334570935.28150.25.camel@twins> <20120416144457.GA7018@redhat.com> <1334588109.28150.59.camel@twins> <20120416153408.GA8852@redhat.com> <1334657287.28150.77.camel@twins> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1334657287.28150.77.camel@twins> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 04/17, Peter Zijlstra wrote: > > On Mon, 2012-04-16 at 17:34 +0200, Oleg Nesterov wrote: > > On 04/16, Peter Zijlstra wrote: > > > > > > Can't we 'optimize' read_opcode() by doing the pagefault_disable() + > > > __copy_from_user_inatomic() optimistically before going down the whole > > > gup()+lock+kmap path? > > > > Unlikely, the task is not current. > > Easy enough to test that though.. and that should make the regular path > fast enough, no? > > > --- > kernel/events/uprobes.c | 9 +++++++++ > 1 files changed, 9 insertions(+), 0 deletions(-) > > diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c > index 985be4d..7f5d8c5 100644 > --- a/kernel/events/uprobes.c > +++ b/kernel/events/uprobes.c > @@ -312,6 +312,15 @@ static int read_opcode(struct mm_struct *mm, unsigned long vaddr, uprobe_opcode_ > void *vaddr_new; > int ret; > > + if (mm == current->mm) { > + pagefault_disable(); > + ret = __copy_from_user_inatomic(opcode, (void __user *)vaddr, > + sizeof(*opcode)); > + pagefault_enable(); > + if (!ret) > + return 0; > + } Indeed. And then we do not need is_swbp_at_addr_fast(). This reminds me. Why read_opcode() does lock_page? I was going to send the cleanup which removes it, but I need to recheck. Perhaps you can explain the reason? Oleg.