From: Will Deacon <will.deacon@arm.com>
To: Vincenzo Frascino <vincenzo.frascino@arm.com>
Cc: linux-arch@vger.kernel.org, linux-s390@vger.kernel.org,
Shuah Khan <shuah@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
Catalin Marinas <catalin.marinas@arm.com>,
Heiko Carstens <heiko.carstens@de.ibm.com>,
Paul Mackerras <paulus@samba.org>,
Martin Schwidefsky <schwidefsky@de.ibm.com>,
Thomas Gleixner <tglx@linutronix.de>,
Vincent Chen <deanbo422@gmail.com>,
linuxppc-dev@lists.ozlabs.org,
linux-arm-kernel@lists.infradead.org,
Greentime Hu <green.hu@gmail.com>
Subject: Re: [PATCH 1/5] arm64: Fix vDSO clock_getres()
Date: Tue, 16 Apr 2019 15:23:46 +0100 [thread overview]
Message-ID: <20190416142346.GA3803@fuggles.cambridge.arm.com> (raw)
In-Reply-To: <efaafc72-79da-b25a-78b7-36424d9350ad@arm.com>
On Tue, Apr 16, 2019 at 01:42:58PM +0100, Vincenzo Frascino wrote:
> On 15/04/2019 18:35, Catalin Marinas wrote:
> > On Mon, Apr 01, 2019 at 12:51:48PM +0100, Vincenzo Frascino wrote:
> >> +1: /* Get hrtimer_res */
> >> + seqcnt_acquire
> >> + syscall_check fail=5f
> >> + ldr x2, [vdso_data, #CLOCK_REALTIME_RES]
> >> + seqcnt_check fail=1b
> >> + b 3f
> >> +2:
> >
> > We talked briefly but I'm still confused why we need the fallback to the
> > syscall here if archdata.vdso_direct is false. Is it because if the
> > timer driver code sets vdso_direct to false, we don't don't support
> > highres timers? If my understanding is correct, you may want to move the
> > hrtimer_res setting in update_vsyscall() to the !use_syscall block.
> >
>
> Ok, so let me try to provide more details on what I mentioned yesterday:
> - clock_getres syscall follows the rules of what defined in posix-timers.c
> - based on the clock_id that, for this purpose, can be separated in coarse and
> non-coarse calls either posix_get_coarse_res() or posix_get_hrtimer_res().
> - if clock id is set to a coarse clock and posix_get_coarse_res() is invoked,
> happens what follows:
>
> static int posix_get_coarse_res(const clockid_t which_clock,
> struct timespec64 *tp)
> {
> *tp = ktime_to_timespec64(KTIME_LOW_RES);
> return 0;
> }
>
> Note that since CONFIG_1HZ seems not supported (jiffies.h) by the kernel in this
> case we do not need rounding in our vDSO implementation.
>
> - if clock id is set to non-coarse and posix_get_hrtimer_res() is invoked,
> happens the following:
>
> static int posix_get_hrtimer_res(clockid_t which_clock, struct timespec64 *tp)
> {
> tp->tv_sec = 0;
> tp->tv_nsec = hrtimer_resolution;
> return 0;
> }
>
> hrtimer_resolution can be high res or low res depending on the call of
> hrtimer_switch_to_hres(). For us the only way to preserve the correct value is
> to keep it in the vdso data page.
>
> - The assembly code mimics exactly the same behaviour detailed above, with one
> difference: the one related to the use_syscall parameter which is specific to arm64.
> The use_syscall parameter is set by arm_arch_timer and consumed by
> update_vsyscall(). To mirror what update_vsyscall does in update_vsyscall() I
> check "syscall_check fail=5f" in clock_getres vdso function.
>
> Said that, even if functionally it is the same thing, I think it is logically
> more correct to have hrtimer_res setting inside the !use_syscall block, hence I
> am going to change it in the next iteration.
>
> Please let me know your thoughts.
I think you can ignore the syscall_check, just like we seem to do for
CLOCK_REALTIME_COARSE and CLOCK_MONOTONIC_COARSE in clock_gettime().
Will
next prev parent reply other threads:[~2019-04-16 14:25 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-01 11:51 [PATCH 0/5] Fix vDSO clock_getres() Vincenzo Frascino
2019-04-01 11:51 ` [PATCH 1/5] arm64: " Vincenzo Frascino
2019-04-15 17:35 ` Catalin Marinas
2019-04-16 12:42 ` Vincenzo Frascino
2019-04-16 14:23 ` Will Deacon [this message]
2019-04-01 11:51 ` [PATCH 2/5] powerpc: " Vincenzo Frascino
2019-04-02 5:54 ` Christophe Leroy
2019-04-02 9:00 ` Vincenzo Frascino
2019-04-02 6:14 ` Christophe Leroy
2019-04-02 9:01 ` Vincenzo Frascino
2019-04-01 11:51 ` [PATCH 3/5] s390: " Vincenzo Frascino
2019-04-03 9:38 ` Martin Schwidefsky
2019-04-03 10:06 ` Thomas Gleixner
2019-04-03 14:21 ` Vincenzo Frascino
2019-04-01 11:51 ` [PATCH 4/5] nds32: " Vincenzo Frascino
2019-04-01 11:51 ` [PATCH 5/5] kselftest: Extend vDSO selftest to clock_getres 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=20190416142346.GA3803@fuggles.cambridge.arm.com \
--to=will.deacon@arm.com \
--cc=arnd@arndb.de \
--cc=catalin.marinas@arm.com \
--cc=deanbo422@gmail.com \
--cc=green.hu@gmail.com \
--cc=heiko.carstens@de.ibm.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-s390@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=paulus@samba.org \
--cc=schwidefsky@de.ibm.com \
--cc=shuah@kernel.org \
--cc=tglx@linutronix.de \
--cc=vincenzo.frascino@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).