mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-03 12:52:52 +00:00
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:
parent
b17d1ce7ef
commit
16118794ed
2 changed files with 7 additions and 8 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue