Re: [PATCH 13/14] timer: simplify CPU_UP_PREPARE notifier code path

2014-03-26 Thread Srivatsa S. Bhat
On 03/26/2014 04:51 PM, Viresh Kumar wrote: > Currently we are returning notifier_from_errno() from CPU_UP_PREPARE notifier > when we detect an error while calling init_timers_cpu(). notifier_from_errno() > already has enough checks within to do something similar. And so we can call > it > directl

[PATCH 13/14] timer: simplify CPU_UP_PREPARE notifier code path

2014-03-26 Thread Viresh Kumar
Currently we are returning notifier_from_errno() from CPU_UP_PREPARE notifier when we detect an error while calling init_timers_cpu(). notifier_from_errno() already has enough checks within to do something similar. And so we can call it directly without checking if there was an error or not. Signe