Re: [PATCH 4/5] hw-breakpoints: Arbitrate access to pmu followingregisters constraints

From: Steven Rostedt
Date: Thu Sep 10 2009 - 11:02:57 EST


On Thu, 2009-09-10 at 16:57 +0200, Peter Zijlstra wrote:
> On Thu, 2009-09-10 at 07:41 -0700, Daniel Walker wrote:
> > On Thu, 2009-09-10 at 10:29 +0200, Frederic Weisbecker wrote:
> >
> > > +static unsigned int max_task_bp_pinned(int cpu)
> > > {
> > > - if (atomic_inc_return(&bp_slot) == HBP_NUM) {
> > > - atomic_dec(&bp_slot);
> > > + int i;
> > > + unsigned int *tsk_pinned = per_cpu(task_bp_pinned, cpu);
> > >
> > > - return -ENOSPC;
> > > + for (i = HBP_NUM -1; i >= 0; i--) {
> > > + if (tsk_pinned[i] > 0)
> > > + return i + 1;
> > > }
> >
> > One checkpatch error in the code above..
> >
> > ERROR: need consistent spacing around '-' (ctx:WxV)
> > #206: FILE: kernel/hw_breakpoint.c:81:
> > + for (i = HBP_NUM -1; i >= 0; i--) {
> > ^
>
> Don't you have anything useful to do?

Well, to Daniel's credit, this really should be fixed.

-- Steve


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/