linux-arch.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: Vincenzo Frascino <vincenzo.frascino@arm.com>
Cc: linux-arch@vger.kernel.org, Arnd Bergmann <arnd@arndb.de>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Daniel Lezcano <daniel.lezcano@linaro.org>,
	Will Deacon <will.deacon@arm.com>,
	Russell King <linux@armlinux.org.uk>,
	Ralf Baechle <ralf@linux-mips.org>,
	Mark Salyzyn <salyzyn@android.com>,
	Paul Burton <paul.burton@mips.com>,
	Peter Collingbourne <pcc@google.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 01/28] kernel: Standardize vdso_datapage
Date: Thu, 29 Nov 2018 23:39:00 +0100 (CET)	[thread overview]
Message-ID: <alpine.DEB.2.21.1811292333300.1657@nanos.tec.linutronix.de> (raw)
In-Reply-To: <20181129170530.37789-2-vincenzo.frascino@arm.com>

On Thu, 29 Nov 2018, Vincenzo Frascino wrote:
> +/*
> + * Copyright (C) 2012 ARM Limited
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program.  If not, see <http://www.gnu.org/licenses/>.

Please use SPDX identifier for the license and get rid of the boiler plate.

> +#include <linux/types.h>
> +
> +struct vdso_data {
> +	__u64 cs_cycle_last;	/* Timebase at clocksource init */

Why do you want to use the __u* variants? This is not a header exposed to
user space. It's part of the kernel.

> +	__u64 raw_time_sec;	/* Raw time */
> +	__u64 raw_time_nsec;
> +	__u64 xtime_clock_sec;	/* Kernel time */
> +	__u64 xtime_clock_nsec;
> +	__u64 xtime_coarse_sec;	/* Coarse time */
> +	__u64 xtime_coarse_nsec;
> +	__u64 wtm_clock_sec;	/* Wall to monotonic time */
> +	__u64 wtm_clock_nsec;
> +	__u32 tb_seq_count;	/* Timebase sequence counter */
> +	__u32 cs_mono_mult;	/* NTP-adjusted clocksource multiplier */
> +	__u32 cs_shift;		/* Clocksource shift (mono = raw) */
> +	__u32 cs_raw_mult;	/* Raw clocksource multiplier */
> +	__u32 tz_minuteswest;	/* Whacky timezone stuff */
> +	__u32 tz_dsttime;
> +	__u32 use_syscall;

This struct is also suboptimal cache line and access pattern wise. Aside of
that please look at the x86 variant of this struct. It's optimized and
handles all the clock variants without adding randomly named struct
members.

Thanks,

	tglx

WARNING: multiple messages have this Message-ID (diff)
From: Thomas Gleixner <tglx@linutronix.de>
To: Vincenzo Frascino <vincenzo.frascino@arm.com>
Cc: linux-arch@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>, Arnd Bergmann <arnd@arndb.de>,
	Russell King <linux@armlinux.org.uk>,
	Ralf Baechle <ralf@linux-mips.org>,
	Paul Burton <paul.burton@mips.com>,
	Daniel Lezcano <daniel.lezcano@linaro.org>,
	Mark Salyzyn <salyzyn@android.com>,
	Peter Collingbourne <pcc@google.com>
Subject: Re: [PATCH v2 01/28] kernel: Standardize vdso_datapage
Date: Thu, 29 Nov 2018 23:39:00 +0100 (CET)	[thread overview]
Message-ID: <alpine.DEB.2.21.1811292333300.1657@nanos.tec.linutronix.de> (raw)
Message-ID: <20181129223900.5CpA2rQMkms_YRLz8k0NxdwWrXz2zkTgP38FTrz1hd8@z> (raw)
In-Reply-To: <20181129170530.37789-2-vincenzo.frascino@arm.com>

On Thu, 29 Nov 2018, Vincenzo Frascino wrote:
> +/*
> + * Copyright (C) 2012 ARM Limited
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program.  If not, see <http://www.gnu.org/licenses/>.

Please use SPDX identifier for the license and get rid of the boiler plate.

> +#include <linux/types.h>
> +
> +struct vdso_data {
> +	__u64 cs_cycle_last;	/* Timebase at clocksource init */

Why do you want to use the __u* variants? This is not a header exposed to
user space. It's part of the kernel.

> +	__u64 raw_time_sec;	/* Raw time */
> +	__u64 raw_time_nsec;
> +	__u64 xtime_clock_sec;	/* Kernel time */
> +	__u64 xtime_clock_nsec;
> +	__u64 xtime_coarse_sec;	/* Coarse time */
> +	__u64 xtime_coarse_nsec;
> +	__u64 wtm_clock_sec;	/* Wall to monotonic time */
> +	__u64 wtm_clock_nsec;
> +	__u32 tb_seq_count;	/* Timebase sequence counter */
> +	__u32 cs_mono_mult;	/* NTP-adjusted clocksource multiplier */
> +	__u32 cs_shift;		/* Clocksource shift (mono = raw) */
> +	__u32 cs_raw_mult;	/* Raw clocksource multiplier */
> +	__u32 tz_minuteswest;	/* Whacky timezone stuff */
> +	__u32 tz_dsttime;
> +	__u32 use_syscall;

This struct is also suboptimal cache line and access pattern wise. Aside of
that please look at the x86 variant of this struct. It's optimized and
handles all the clock variants without adding randomly named struct
members.

Thanks,

	tglx

  parent reply	other threads:[~2018-11-29 22:39 UTC|newest]

Thread overview: 100+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-29 17:05 [PATCH v2 00/28] Unify vDSOs across more architectures Vincenzo Frascino
2018-11-29 17:05 ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 01/28] kernel: Standardize vdso_datapage Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 22:39   ` Thomas Gleixner [this message]
2018-11-29 22:39     ` Thomas Gleixner
2018-12-11 13:22     ` Vincenzo Frascino
2018-12-11 13:22       ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 02/28] kernel: Add Monotonic boot time support Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 03/28] kernel: Add International Atomic Time support Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 04/28] kernel: Add masks support for Raw and NTP time Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 22:41   ` Thomas Gleixner
2018-11-29 22:41     ` Thomas Gleixner
2018-12-11 13:24     ` Vincenzo Frascino
2018-12-11 13:24       ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 05/28] kernel: Add clock_mode support Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 06/28] kernel: Define gettimeofday vdso common code Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 20:42   ` Arnd Bergmann
2018-11-29 20:42     ` Arnd Bergmann
2018-12-11 13:39     ` Vincenzo Frascino
2018-12-11 13:39       ` Vincenzo Frascino
2018-12-11 21:41       ` Arnd Bergmann
2018-12-11 21:41         ` Arnd Bergmann
2018-12-13  9:46         ` Vincenzo Frascino
2018-12-13  9:46           ` Vincenzo Frascino
2018-11-29 22:11   ` Thomas Gleixner
2018-11-29 22:11     ` Thomas Gleixner
2018-11-30 14:29     ` Arnd Bergmann
2018-11-30 14:29       ` Arnd Bergmann
2018-12-11 14:02       ` Vincenzo Frascino
2018-12-11 14:02         ` Vincenzo Frascino
2018-12-07 17:53     ` Will Deacon
2018-12-07 17:53       ` Will Deacon
2019-02-08 17:35       ` Will Deacon
2019-02-08 17:35         ` Will Deacon
2019-02-08 19:28         ` Thomas Gleixner
2019-02-08 19:28           ` Thomas Gleixner
2019-02-08 19:30           ` Thomas Gleixner
2019-02-08 19:30             ` Thomas Gleixner
2019-02-13 17:04             ` Will Deacon
2019-02-13 17:04               ` Will Deacon
2019-02-13 19:35               ` Thomas Gleixner
2019-02-13 19:35                 ` Thomas Gleixner
2019-02-13 17:05           ` Will Deacon
2019-02-13 17:05             ` Will Deacon
2018-12-11 13:54     ` Vincenzo Frascino
2018-12-11 13:54       ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 07/28] arm64: Build vDSO with -ffixed-x18 Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 08/28] arm64: Substitute gettimeofday with C implementation Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 09/28] arm64: compat: Alloc separate pages for vectors and sigpage Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 10/28] arm64: compat: Split kuser32 Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 11/28] arm64: compat: Refactor aarch32_alloc_vdso_pages() Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 12/28] arm64: compat: Add KUSER_HELPERS config option Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 13/28] arm64: compat: Add missing syscall numbers Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 14/28] arm64: compat: Expose signal related structures Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 15/28] arm64: compat: Generate asm offsets for signals Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 16/28] lib: vdso: Add compat support Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 17/28] arm64: compat: Add vDSO Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 18/28] arm64: Refactor vDSO code Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 19/28] arm64: compat: vDSO setup for compat layer Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 20/28] arm64: elf: vDSO code page discovery Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 21/28] arm64: compat: Get sigreturn trampolines from vDSO Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 22/28] arm64: Add vDSO compat support Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 23/28] arm64: Enable compat vDSO support Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 24/28] arm: Add support for generic vDSO Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-12-10 22:13   ` Mark Salyzyn
2018-12-10 22:13     ` Mark Salyzyn
2018-12-11 14:15     ` Vincenzo Frascino
2018-12-11 14:15       ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 25/28] mips: Introduce vdso_direct Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 26/28] clock: csrc-4k: Add support for vdso_direct Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 27/28] clock: gic-timer: " Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino
2018-11-29 17:05 ` [PATCH v2 28/28] mips: Add support for generic vDSO Vincenzo Frascino
2018-11-29 17:05   ` Vincenzo Frascino

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.21.1811292333300.1657@nanos.tec.linutronix.de \
    --to=tglx@linutronix.de \
    --cc=arnd@arndb.de \
    --cc=catalin.marinas@arm.com \
    --cc=daniel.lezcano@linaro.org \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux@armlinux.org.uk \
    --cc=paul.burton@mips.com \
    --cc=pcc@google.com \
    --cc=ralf@linux-mips.org \
    --cc=salyzyn@android.com \
    --cc=vincenzo.frascino@arm.com \
    --cc=will.deacon@arm.com \
    /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;
as well as URLs for NNTP newsgroup(s).