lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 22 Jun 2017 16:47:33 +0200 (CEST)
From:   Thomas Gleixner <tglx@...utronix.de>
To:     Daniel Lezcano <daniel.lezcano@...aro.org>
cc:     linux-kernel@...r.kernel.org,
        Peter Zijlstra <peterz@...radead.org>,
        "Rafael J . Wysocki" <rafael@...nel.org>,
        Vincent Guittot <vincent.guittot@...aro.org>,
        Nicolas Pitre <nicolas.pitre@...aro.org>,
        Hannes Reinecke <hare@...e.com>, Jens Axboe <axboe@...nel.dk>,
        Bjorn Helgaas <bhelgaas@...gle.com>
Subject: Re: [PATCH 2/3] irq: Track the interrupt timings

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ