All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Zijlstra <peterz@infradead.org>
To: DDD <dongdong.deng@windriver.com>
Cc: mingo@elte.hu, fweisbec@gmail.com, acme@redhat.com,
	paulus@samba.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] perf: fix possible divide-by-zero in perf_swevent_overflow()
Date: Fri, 27 Aug 2010 14:50:45 +0200	[thread overview]
Message-ID: <1282913445.1975.2414.camel@laptop> (raw)
In-Reply-To: <4C77ADC1.5030502@windriver.com>

On Fri, 2010-08-27 at 20:21 +0800, DDD wrote:

> >> Maybe the root cause was from kgdb/hw_breakpoint_layer,
> > 
> > Yeah, I think there's a bug in the hw_breakpoint stuff, does something
> > like the below fix it?

> Thanks for your patch, but I still could reproduce the problem with your 
> patch.

Frederic, any clue as to what makes hw breakpoints go funny and have
last_period == 0?

> > ---
> >  kernel/hw_breakpoint.c |   13 ++++++++++++-
> >  1 files changed, 12 insertions(+), 1 deletions(-)
> > 
> > diff --git a/kernel/hw_breakpoint.c b/kernel/hw_breakpoint.c
> > index d71a987..f57ebee 100644
> > --- a/kernel/hw_breakpoint.c
> > +++ b/kernel/hw_breakpoint.c
> > @@ -600,9 +600,20 @@ static int __init init_hw_breakpoint(void)
> >  }
> >  core_initcall(init_hw_breakpoint);
> >  
> > +static int hw_breakpoint_enable(struct perf_event *event)
> > +{
> > +     struct hw_perf_event *hwc = &event->hw;
> > +
> > +     if (hwc->sample_period) {
> > +             hwc->last_period = hwc->sample_period;
> > +             perf_swevent_set_period(event);
> > +     }
> > +
> > +     return arch_install_hw_breakpoint(event);
> > +}
> >  
> >  struct pmu perf_ops_bp = {
> > -     .enable         = arch_install_hw_breakpoint,
> > +     .enable         = hw_breakpoint_enable,
> >       .disable        = arch_uninstall_hw_breakpoint,
> >       .read           = hw_breakpoint_pmu_read,
> >  };
> > 
> > 

  reply	other threads:[~2010-08-27 12:51 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-26 12:07 [PATCH] perf: fix possible divide-by-zero in perf_swevent_overflow() Dongdong Deng
2010-08-26 12:12 ` Peter Zijlstra
2010-08-26 12:36   ` DDD
2010-08-26 12:58     ` Peter Zijlstra
2010-08-27 12:21       ` DDD
2010-08-27 12:50         ` Peter Zijlstra [this message]
2010-08-27 13:19           ` DDD
2010-08-27 13:37             ` Frederic Weisbecker
2010-10-25  5:58               ` DDD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1282913445.1975.2414.camel@laptop \
    --to=peterz@infradead.org \
    --cc=acme@redhat.com \
    --cc=dongdong.deng@windriver.com \
    --cc=fweisbec@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=paulus@samba.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.