Re: [PATCH 1/3] ring-buffer: add counters for commit overrun andnmi dropped entries

From: Andrew Morton
Date: Thu Apr 30 2009 - 23:03:44 EST


On Thu, 30 Apr 2009 22:22:11 -0400 Steven Rostedt <rostedt@xxxxxxxxxxx> wrote:

> +unsigned long ring_buffer_nmi_dropped_cpu(struct ring_buffer *buffer, int cpu)
> +{
> + struct ring_buffer_per_cpu *cpu_buffer;
> + unsigned long ret;
> +
> + if (!cpumask_test_cpu(cpu, buffer->cpumask))
> + return 0;
> +
> + cpu_buffer = buffer->buffers[cpu];
> + ret = cpu_buffer->nmi_dropped;
> +
> + return ret;
> +}
> +EXPORT_SYMBOL_GPL(ring_buffer_nmi_dropped_cpu);
> +
> +/**
> + * ring_buffer_commit_overrun_cpu - get the number of overruns caused by commits
> + * @buffer: The ring buffer
> + * @cpu: The per CPU buffer to get the number of overruns from
> + */
> +unsigned long
> +ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu)
> +{
> + struct ring_buffer_per_cpu *cpu_buffer;
> + unsigned long ret;
> +
> + if (!cpumask_test_cpu(cpu, buffer->cpumask))
> + return 0;
> +
> + cpu_buffer = buffer->buffers[cpu];
> + ret = cpu_buffer->commit_overrun;
> +
> + return ret;
> +}

hm. Four functions in a row, all of which differ in but a single line.

unsigned long
ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu)
{
return some_common_function(buffer, cpu)->commit_overrun;
}

?

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