Re: [PATCH] drivers/firmware: psci_checker: Add missing destroy_timer_on_stack()

2017-11-02 Thread Arnd Bergmann
On Mon, Oct 30, 2017 at 10:48 AM, Lorenzo Pieralisi wrote: > On Mon, Oct 30, 2017 at 10:17:54AM +0100, Arnd Bergmann wrote: >> On Tue, Oct 24, 2017 at 5:02 PM, Lorenzo Pieralisi >> wrote: >> > The PSCI checker suspend_test_thread() function (ie executed for the >> > suspend test) requires an on-s

Re: [PATCH] drivers/firmware: psci_checker: Add missing destroy_timer_on_stack()

2017-10-30 Thread Lorenzo Pieralisi
On Mon, Oct 30, 2017 at 10:17:54AM +0100, Arnd Bergmann wrote: > On Tue, Oct 24, 2017 at 5:02 PM, Lorenzo Pieralisi > wrote: > > The PSCI checker suspend_test_thread() function (ie executed for the > > suspend test) requires an on-stack timer to carry out the test it > > executes; it sets it up th

Re: [PATCH] drivers/firmware: psci_checker: Add missing destroy_timer_on_stack()

2017-10-30 Thread Arnd Bergmann
On Tue, Oct 24, 2017 at 5:02 PM, Lorenzo Pieralisi wrote: > The PSCI checker suspend_test_thread() function (ie executed for the > suspend test) requires an on-stack timer to carry out the test it > executes; it sets it up through the setup_timer_on_stack() API. > > setup_timer_on_stack() requires

[PATCH] drivers/firmware: psci_checker: Add missing destroy_timer_on_stack()

2017-10-24 Thread Lorenzo Pieralisi
The PSCI checker suspend_test_thread() function (ie executed for the suspend test) requires an on-stack timer to carry out the test it executes; it sets it up through the setup_timer_on_stack() API. setup_timer_on_stack() requires its counterpart destroy_timer_on_stack() to be called when the time