summaryrefslogtreecommitdiffstats
path: root/kernel/time/posix-clock.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-05-26 05:03:11 -0400
committerThomas Gleixner <tglx@linutronix.de>2017-05-27 03:46:35 -0400
commitd3ba5a9a345b1243276f8a982e1bce557c2504fd (patch)
tree1642ba9e97ef835cc51f87fbad312f0af3a8f526 /kernel/time/posix-clock.c
parent07903ada96139ced48f2f893fe57a26a8fbc6043 (diff)
posix-timers: Make posix_clocks immutable
There are no more modular users providing a posix clock. The register function is now pointless so the posix clock array can be initialized statically at compile time and the array including the various k_clock structs can be marked 'const'. Inspired by changes in the Grsecurity patch set, but done proper. [ tglx: Massaged changelog and fixed the POSIX_TIMER=n case ] Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Mike Travis <mike.travis@hpe.com> Cc: Dimitri Sivanich <sivanich@hpe.com> Link: http://lkml.kernel.org/r/20170526090311.3377-3-hch@lst.de
Diffstat (limited to 'kernel/time/posix-clock.c')
-rw-r--r--kernel/time/posix-clock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/posix-clock.c b/kernel/time/posix-clock.c
index 31d588d37a17..7e453005e078 100644
--- a/kernel/time/posix-clock.c
+++ b/kernel/time/posix-clock.c
@@ -434,7 +434,7 @@ static int pc_timer_settime(struct k_itimer *kit, int flags,
434 return err; 434 return err;
435} 435}
436 436
437struct k_clock clock_posix_dynamic = { 437const struct k_clock clock_posix_dynamic = {
438 .clock_getres = pc_clock_getres, 438 .clock_getres = pc_clock_getres,
439 .clock_set = pc_clock_settime, 439 .clock_set = pc_clock_settime,
440 .clock_get = pc_clock_gettime, 440 .clock_get = pc_clock_gettime,