aboutsummaryrefslogtreecommitdiff
path: root/kernel/time
AgeCommit message (Expand)AuthorFilesLines
2020-04-07time/namespace: Fix time_for_children symlinkGravatar Michael Kerrisk (man-pages) 1-0/+1
2020-04-01hrtimer: Don't dereference the hrtimer pointer after the callbackGravatar Sebastian Andrzej Siewior 1-2/+3
2020-03-30Merge tag 'timers-core-2020-03-30' of git://git.kernel.org/pub/scm/linux/kern...Gravatar Linus Torvalds 9-101/+108
2020-03-30Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/k...Gravatar Linus Torvalds 7-19/+39
2020-03-24Merge branch 'for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/pau...Gravatar Ingo Molnar 1-3/+4
2020-03-21lockdep: Add posixtimer context tracing bitsGravatar Sebastian Andrzej Siewior 1-1/+5
2020-03-21lockdep: Annotate irq_workGravatar Sebastian Andrzej Siewior 1-0/+1
2020-03-21lockdep: Add hrtimer context tracing bitsGravatar Sebastian Andrzej Siewior 1-1/+5
2020-03-21timekeeping: Split jiffies seqlockGravatar Thomas Gleixner 5-17/+28
2020-03-19Revert "tick/common: Make tick_periodic() check for missing ticks"Gravatar Thomas Gleixner 1-33/+3
2020-03-19time/sched_clock: Expire timer in hardirq contextGravatar Ahmed S. Darwish 1-4/+5
2020-03-04tick/common: Make tick_periodic() check for missing ticksGravatar Waiman Long 1-3/+33
2020-03-04hrtimer: Cast explicitely to u32t in __ktime_divns()Gravatar Wen Yang 1-1/+1
2020-03-04timekeeping: Prevent 32bit truncation in scale64_check_overflow()Gravatar Wen Yang 1-2/+1
2020-03-04posix-cpu-timers: Store a reference to a pid not a taskGravatar Eric W. Biederman 1-18/+55
2020-03-01posix-cpu-timers: Pass the task into arm_timer()Gravatar Eric W. Biederman 1-4/+3
2020-03-01posix-cpu-timers: Remove unnecessary locking around cpu_clock_sample_groupGravatar Eric W. Biederman 1-54/+12
2020-03-01posix-cpu-timers: cpu_clock_sample_group() no longer needs siglockGravatar Eric W. Biederman 1-3/+1
2020-02-21y2038: remove unused time32 interfacesGravatar Arnd Bergmann 1-43/+0
2020-02-20timer: Use hlist_unhashed_lockless() in timer_pending()Gravatar Eric Dumazet 1-3/+4
2020-02-17posix-timers: Pass lockdep expression to RCU listsGravatar Amol Grover 1-1/+2
2020-02-17timer: Improve the comment describing schedule_timeout()Gravatar Alexander Popov 1-7/+9
2020-02-17lib/vdso: Move VCLOCK_TIMENS to vdso_clock_modesGravatar Thomas Gleixner 1-3/+4
2020-02-17lib/vdso: Avoid highres update if clocksource is not VDSO capableGravatar Thomas Gleixner 1-3/+3
2020-02-17lib/vdso: Cleanup clock mode storage leftoversGravatar Thomas Gleixner 1-4/+0
2020-02-17clocksource: Add common vdso clock mode storageGravatar Thomas Gleixner 2-2/+17
2020-02-09Merge tag 'timers-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/ke...Gravatar Linus Torvalds 1-2/+9
2020-02-01clocksource: Prevent double add_timer_on() for watchdog_timerGravatar Konstantin Khlebnikov 1-2/+9
2020-01-29Merge tag 'y2038-drivers-for-v5.6-signed' of git://git.kernel.org:/pub/scm/li...Gravatar Linus Torvalds 2-62/+14
2020-01-27Merge tag 'timers-core-2020-01-27' of git://git.kernel.org/pub/scm/linux/kern...Gravatar Linus Torvalds 11-107/+656
2020-01-24alarmtimer: Make alarmtimer_get_rtcdev() a stub when CONFIG_RTC_CLASS=nGravatar Stephen Boyd 1-5/+0
2020-01-24alarmtimer: Use wakeup source from alarmtimer platform deviceGravatar Stephen Boyd 1-10/+5
2020-01-24alarmtimer: Make alarmtimer platform device child of RTC deviceGravatar Stephen Boyd 1-11/+9
2020-01-24alarmtimer: Update alarmtimer_get_rtcdev() docs to reflect realityGravatar Stephen Boyd 1-2/+0
2020-01-22hrtimer: Add missing sparse annotation for __run_timer()Gravatar Jules Irenge 1-1/+1
2020-01-17lib/vdso: Update coarse timekeeper unconditionallyGravatar Thomas Gleixner 1-20/+17
2020-01-17lib/vdso: Make __arch_update_vdso_data() logic understandableGravatar Thomas Gleixner 1-1/+1
2020-01-15tick/common: Touch watchdog in tick_unfreeze() on all CPUsGravatar Chunyan Zhang 1-0/+2
2020-01-15alarmtimer: Unregister wakeup source when module get failsGravatar Stephen Boyd 1-3/+5
2020-01-15tick/sched: Annotate lockless access to last_jiffies_updateGravatar Eric Dumazet 1-5/+9
2020-01-14fs/proc: Introduce /proc/pid/timens_offsetsGravatar Andrei Vagin 1-0/+101
2020-01-14x86/vdso: Zap vvar pages when switching to a time namespaceGravatar Dmitry Safonov 1-0/+10
2020-01-14time: Allocate per-timens vvar pageGravatar Dmitry Safonov 1-1/+103
2020-01-14posix-timers: Make clock_nanosleep() time namespace awareGravatar Andrei Vagin 2-4/+25
2020-01-14hrtimers: Prepare hrtimer_nanosleep() for time namespacesGravatar Andrei Vagin 3-8/+12
2020-01-14alarmtimer: Make nanosleep() time namespace awareGravatar Andrei Vagin 1-0/+2
2020-01-14posix-timers: Make timer_settime() time namespace awareGravatar Andrei Vagin 1-0/+2
2020-01-14time: Add do_timens_ktime_to_host() helperGravatar Andrei Vagin 1-0/+36
2020-01-14posix-clocks: Wire up clock_gettime() with timens offsetsGravatar Andrei Vagin 3-1/+16
2020-01-14posix-timers: Use clock_get_ktime() in common_timer_get()Gravatar Andrei Vagin 1-7/+1