From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758515Ab0GWNEi (ORCPT ); Fri, 23 Jul 2010 09:04:38 -0400 Received: from mail-fx0-f46.google.com ([209.85.161.46]:60448 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753460Ab0GWNEg (ORCPT ); Fri, 23 Jul 2010 09:04:36 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=HjG3HTjC81+K5wGK7pZaAFP9PgTnuY224xicOyUdU87/vheESc4pPsY/lnTDkMQ8JG 6TtCk+ymaQvlYpnJjOblMbPAj/MR2+7bTuVYG2uo6wmCirinm+mDuy+u1IradlenTIuj hw7sJ9486+fQl2TxYp2HsVc3UlDuVYQzoOnPM= Date: Fri, 23 Jul 2010 15:04:33 +0200 From: Frederic Weisbecker To: Dongdong Deng Cc: jason.wessel@windriver.com, will.deacon@arm.com, lethal@linux-sh.org, mahesh@linux.vnet.ibm.com, prasad@linux.vnet.ibm.com, benh@kernel.crashing.org, paulus@samba.org, mingo@elte.hu, kgdb-bugreport@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH] hw-breakpoints, kgdb, x86: add a flag to pass DIE_DEBUG notification Message-ID: <20100723130430.GA5255@nowhere> References: <1279851361-32604-1-git-send-email-dongdong.deng@windriver.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1279851361-32604-1-git-send-email-dongdong.deng@windriver.com> 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 Fri, Jul 23, 2010 at 10:16:01AM +0800, Dongdong Deng wrote: > The hw_breakpoint subsystem consumes all the hardware > breakpoint exceptions since it hooks the notify_die > handlers first, this means that kgdb doesn't get the > opportunity to handle hw breakpoint exceptions generated > by kgdb itself. > > This patch adds an extend flag to perf_event_attr for > hw_breakpoint_handler() to decide to pass or stop the > DIE_DEBUG notification. > > As KGDB set that flag, hw_breakpoint_handler() will pass > the DIE_DEBUG notification, thus kgdb have the chance > to take DIE_DEBUG notification. > > Signed-off-by: Dongdong Deng > Reviewed-by: Bruce Ashfield > --- > arch/x86/kernel/hw_breakpoint.c | 14 ++++++++++++++ > arch/x86/kernel/kgdb.c | 2 ++ > include/linux/perf_event.h | 9 +++++++++ > 3 files changed, 25 insertions(+), 0 deletions(-) > > diff --git a/arch/x86/kernel/hw_breakpoint.c b/arch/x86/kernel/hw_breakpoint.c > index a8f1b80..b38f786 100644 > --- a/arch/x86/kernel/hw_breakpoint.c > +++ b/arch/x86/kernel/hw_breakpoint.c > @@ -406,6 +406,8 @@ EXPORT_SYMBOL_GPL(hw_breakpoint_restore); > * ii) When there are more bits than trap set in DR6 register (such > * as BD, BS or BT) indicating that more than one debug condition is > * met and requires some more action in do_debug(). > + * iii) The source of hw breakpoint event want to handle the event > + * by itself, currently just KGDB have this notion. > * > * NOTIFY_STOP returned for all other cases > * > @@ -464,6 +466,18 @@ static int __kprobes hw_breakpoint_handler(struct die_args *args) > break; > } > > + if (bp->attr.flag == SKIP_HWBP_EVENT_PERF_FLAG) { > + /* > + * when attr.flag is set to SKIP_HWBP_EVENT_PERF_FLAG > + * it indicates currently hw breakpoint event > + * source want to handle this event by itself. > + * thus return NOTIFY_DONE here. > + */ > + rc = NOTIFY_DONE; > + rcu_read_unlock(); > + break; > + } > + No. We really shouldn't make a user ABI change (adding attr.flag) just to solve an in-kernel-only problem. And moreover we probably don't need flags at all. Why not just turning kgdb handler into a higher priority? I don't even remember why kgdb has its own handler instead of using the struct perf_event:overflow_handler. May be that's because of the early breakpoints.