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
This commit is contained in:
Thomas Gleixner 2019-01-11 14:33:17 +01:00
parent b17d1ce7ef
commit 16118794ed
2 changed files with 7 additions and 8 deletions

View file

@ -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;
};