The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: linux-kernel@vger.kernel.org,
	Peter Zijlstra <peterz@infradead.org>,
	"Rafael J . Wysocki" <rafael@kernel.org>,
	Vincent Guittot <vincent.guittot@linaro.org>,
	Nicolas Pitre <nicolas.pitre@linaro.org>,
	Hannes Reinecke <hare@suse.com>, Jens Axboe <axboe@kernel.dk>,
	Bjorn Helgaas <bhelgaas@google.com>
Subject: Re: [PATCH 2/3] irq: Track the interrupt timings
Date: Thu, 22 Jun 2017 16:47:33 +0200 (CEST)	[thread overview]
Message-ID: <alpine.DEB.2.20.1706221644040.1885@nanos> (raw)
In-Reply-To: <1497994139-19816-2-git-send-email-daniel.lezcano@linaro.org>

On Tue, 20 Jun 2017, Daniel Lezcano wrote:
> +
> +struct irq_timings {
> +	u64 values[IRQ_TIMINGS_SIZE]; /* our circular buffer */
> +	unsigned int count; /* Number of interruptions since last inspection */

Groan. These tail comments are horrible.

Please make the struct member names tabular aligned and add proper kernel
doc comments if you want to add useful documentations for the fields.

> +};
> +
> +DECLARE_PER_CPU(struct irq_timings, irq_timings);
> +
> +static inline void remove_timings(struct irq_desc *desc)

irq_remove_timings

> +{
> +	desc->istate &= ~IRQS_TIMINGS;
> +}
> +
> +static inline void setup_timings(struct irq_desc *desc, struct irqaction *act)

...

> +{
> +	/*
> +	 * We don't need the measurement because the idle code already
> +	 * knows the next expiry event.
> +	 */
> +	if (act->flags & __IRQF_TIMER)
> +		return;
> +
> +	desc->istate |= IRQS_TIMINGS;
> +}
> +
> +extern void irq_timings_enable(void);
> +extern void irq_timings_disable(void);
> +
> +extern struct static_key_false irq_timing_enabled;

DECLARE_STATIC_KEY_FALSE

> +/*
> + * The interrupt number and the timestamp are encoded into a single
> + * u64 variable to optimize the size.
> + * 48 bit time stamp and 16 bit IRQ number is way sufficient.
> + *  Who cares an IRQ after 78 hours of idle time?
> + */
> +static inline u64 irq_timing_encode(u64 timestamp, int irq)
> +{
> +	return (timestamp << 16) | irq;
> +}
> +
> +static inline void irq_timing_decode(u64 value, u64 *timestamp, int *irq)

What's wrong with using a return value instead of void?

> +{
> +	*timestamp = value >> 16;
> +	*irq = value & U16_MAX;
> +}

Thanks,

	tglx

  reply	other threads:[~2017-06-22 14:47 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-20 21:26 [GIT PULL V11] irq: next irq tracking Daniel Lezcano
2017-06-20 21:28 ` [PATCH 1/3] irq: Allow to pass the IRQF_TIMER flag with percpu irq request Daniel Lezcano
2017-06-20 21:28   ` [PATCH 2/3] irq: Track the interrupt timings Daniel Lezcano
2017-06-22 14:47     ` Thomas Gleixner [this message]
2017-06-22 14:55       ` Daniel Lezcano
2017-06-20 21:28   ` [PATCH 3/3] irq: Compute the periodic interval for interrupts Daniel Lezcano
2017-06-22 15:25     ` Thomas Gleixner
2017-06-22 16:35       ` Daniel Lezcano
2017-06-22  9:31   ` [PATCH 1/3] irq: Allow to pass the IRQF_TIMER flag with percpu irq request Mark Rutland
2017-06-22 10:36     ` Daniel Lezcano
2017-06-20 22:04 ` [GIT PULL V11] irq: next irq tracking Thomas Gleixner
2017-06-21 10:57   ` Daniel Lezcano
2017-07-06 12:29   ` [PATCH V11] irq: Allow to pass the IRQF_TIMER flag with percpu irq request Daniel Lezcano
2017-07-06 21:21     ` [tip:irq/urgent] genirq: " tip-bot for Daniel Lezcano

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=alpine.DEB.2.20.1706221644040.1885@nanos \
    --to=tglx@linutronix.de \
    --cc=axboe@kernel.dk \
    --cc=bhelgaas@google.com \
    --cc=daniel.lezcano@linaro.org \
    --cc=hare@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nicolas.pitre@linaro.org \
    --cc=peterz@infradead.org \
    --cc=rafael@kernel.org \
    --cc=vincent.guittot@linaro.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox