diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2019-01-11 16:33:17 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-01-15 18:36:13 +0300 |
commit | 16118794ede91aac1a73abe15de22d3de9d2b775 (patch) | |
tree | b5108b9b74b685c85291470680c8a3ec75fab9f7 /include/linux/posix-timers.h | |
parent | b17d1ce7efe21e075dace85658d26d354766b443 (diff) | |
download | linux-16118794ede91aac1a73abe15de22d3de9d2b775.tar.xz |
posix-cpu-timers: Remove private interval storage
Posix CPU timers store the interval in private storage for historical
reasons (it_interval used to be a non scalar representation on 32bit
systems). This is gone and there is no reason for duplicated storage
anymore.
Use it_interval everywhere.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: "H.J. Lu" <hjl.tools@gmail.com>
Link: https://lkml.kernel.org/r/20190111133500.945255655@linutronix.de
Diffstat (limited to 'include/linux/posix-timers.h')
-rw-r--r-- | include/linux/posix-timers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/posix-timers.h b/include/linux/posix-timers.h index e96581ca7c9d..b20798fc5191 100644 --- a/include/linux/posix-timers.h +++ b/include/linux/posix-timers.h @@ -12,7 +12,7 @@ struct siginfo; struct cpu_timer_list { struct list_head entry; - u64 expires, incr; + u64 expires; struct task_struct *task; int firing; }; |