diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2020-11-17 16:19:44 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2020-11-19 12:48:28 +0300 |
commit | c398960cd82b233886fbff163986f998b5a5c008 (patch) | |
tree | 6d73b864dac7e999941a34ade55baa1b403e2013 /kernel/time/tick-common.c | |
parent | f73f64d5687192bc8eb7f3d9521ca6256b79f224 (diff) | |
download | linux-c398960cd82b233886fbff163986f998b5a5c008.tar.xz |
tick: Document protections for tick related data
The protection rules for tick_next_period and last_jiffies_update are blury
at best. Clarify this.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20201117132006.197713794@linutronix.de
Diffstat (limited to 'kernel/time/tick-common.c')
-rw-r--r-- | kernel/time/tick-common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/time/tick-common.c b/kernel/time/tick-common.c index 6c9c342dd0e5..68504eb0d38b 100644 --- a/kernel/time/tick-common.c +++ b/kernel/time/tick-common.c @@ -27,7 +27,9 @@ */ DEFINE_PER_CPU(struct tick_device, tick_cpu_device); /* - * Tick next event: keeps track of the tick time + * Tick next event: keeps track of the tick time. It's updated by the + * CPU which handles the tick and protected by jiffies_lock. There is + * no requirement to write hold the jiffies seqcount for it. */ ktime_t tick_next_period; ktime_t tick_period; |