Re: [PATCH] drivers/firmware: psci: Convert timers to use timer_setup()

2017-10-24 Thread Kees Cook
On Tue, Oct 24, 2017 at 6:52 AM, Lorenzo Pieralisi wrote: > Hi Kees, > > On Tue, Oct 24, 2017 at 03:13:31AM -0700, Kees Cook wrote: >> In preparation for unconditionally passing the struct timer_list pointer to >> all timer callbacks, switch to using the new timer_setup() and from_timer() >> to pa

Re: [PATCH] drivers/firmware: psci: Convert timers to use timer_setup()

2017-10-24 Thread Lorenzo Pieralisi
Hi Kees, On Tue, Oct 24, 2017 at 03:13:31AM -0700, Kees Cook wrote: > In preparation for unconditionally passing the struct timer_list pointer to > all timer callbacks, switch to using the new timer_setup() and from_timer() > to pass the timer pointer explicitly. > Also adds missing call to destr

[PATCH] drivers/firmware: psci: Convert timers to use timer_setup()

2017-10-24 Thread Kees Cook
In preparation for unconditionally passing the struct timer_list pointer to all timer callbacks, switch to using the new timer_setup() and from_timer() to pass the timer pointer explicitly. Also adds missing call to destroy_timer_on_stack(). Cc: Mark Rutland Cc: Lorenzo Pieralisi Cc: linux-arm-k