diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2017-06-13 23:34:33 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-06-14 00:00:47 +0200 |
commit | 938e7cf2d569833a5acf689a8926faf507826253 (patch) | |
tree | 01d395220896e3d1508edbdca5fbb18dd900a702 /kernel/time/hrtimer.c | |
parent | 343d8fc208e43e50525ae6e0fc4845b9966b7318 (diff) | |
download | linux-stable-938e7cf2d569833a5acf689a8926faf507826253.tar.gz linux-stable-938e7cf2d569833a5acf689a8926faf507826253.tar.bz2 linux-stable-938e7cf2d569833a5acf689a8926faf507826253.zip |
posix-timers: Make nanosleep timespec argument const
No nanosleep implementation modifies the rqtp argument. Mark is const.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Diffstat (limited to 'kernel/time/hrtimer.c')
-rw-r--r-- | kernel/time/hrtimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/hrtimer.c b/kernel/time/hrtimer.c index 45f83cc7c0c7..81da124f1115 100644 --- a/kernel/time/hrtimer.c +++ b/kernel/time/hrtimer.c @@ -1510,7 +1510,7 @@ static long __sched hrtimer_nanosleep_restart(struct restart_block *restart) return ret; } -long hrtimer_nanosleep(struct timespec64 *rqtp, +long hrtimer_nanosleep(const struct timespec64 *rqtp, const enum hrtimer_mode mode, const clockid_t clockid) { struct restart_block *restart; |