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

From: Daniel Walker
Date: Thu Sep 10 2009 - 10:41:28 EST


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--) {
^

Daniel

--
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/