]> git.baikalelectronics.ru Git - kernel.git/commit
posix-clocks: Introduce clock_get_ktime() callback
authorAndrei Vagin <avagin@gmail.com>
Tue, 12 Nov 2019 01:26:58 +0000 (01:26 +0000)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 14 Jan 2020 11:20:51 +0000 (12:20 +0100)
commit216562409c7d82e7c3327944da79b350ac9b24ce
treea0a11da36b1c82409506d496dc7b779b9d8bce27
parent5724c7fd15479f4fa88b0af330fa17c3d4cbe2b6
posix-clocks: Introduce clock_get_ktime() callback

The callsite in common_timer_get() has already a comment:
    /*
     * The timespec64 based conversion is suboptimal, but it's not
     * worth to implement yet another callback.
     */
    kc->clock_get(timr->it_clock, &ts64);
    now = timespec64_to_ktime(ts64);

The upcoming support for time namespaces requires to have access to:

 - The time in a task's time namespace for sys_clock_gettime()
 - The time in the root name space for common_timer_get()

That adds a valid reason to finally implement a separate callback which
returns the time in ktime_t format.

Suggested-by: Thomas Gleixner <tglx@linutronix.de>
Co-developed-by: Dmitry Safonov <dima@arista.com>
Signed-off-by: Andrei Vagin <avagin@gmail.com>
Signed-off-by: Dmitry Safonov <dima@arista.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20191112012724.250792-10-dima@arista.com
kernel/time/alarmtimer.c
kernel/time/posix-timers.c
kernel/time/posix-timers.h