Re: [PATCH] usb: usbatm: Convert timers to use timer_setup()

2017-11-01 Thread Greg Kroah-Hartman
On Wed, Oct 25, 2017 at 04:16:49PM +0200, Kees Cook wrote: > This also uses timer_setup_on_stack() (only in -next). If it's okay, > I'll carry it in the timers tree. Fine with me: Acked-by: Greg Kroah-Hartman

Re: [PATCH] usb: usbatm: Convert timers to use timer_setup()

2017-11-01 Thread Greg Kroah-Hartman
On Wed, Oct 25, 2017 at 04:16:49PM +0200, Kees Cook wrote: > This also uses timer_setup_on_stack() (only in -next). If it's okay, > I'll carry it in the timers tree. Fine with me: Acked-by: Greg Kroah-Hartman

Re: [PATCH] usb: usbatm: Convert timers to use timer_setup()

2017-10-25 Thread Kees Cook
This also uses timer_setup_on_stack() (only in -next). If it's okay, I'll carry it in the timers tree. Thanks! -Kees On Tue, Oct 24, 2017 at 12:08 PM, Kees Cook wrote: > In preparation for unconditionally passing the struct timer_list pointer to > all timer callbacks,

Re: [PATCH] usb: usbatm: Convert timers to use timer_setup()

2017-10-25 Thread Kees Cook
This also uses timer_setup_on_stack() (only in -next). If it's okay, I'll carry it in the timers tree. Thanks! -Kees On Tue, Oct 24, 2017 at 12:08 PM, Kees Cook wrote: > In preparation for unconditionally passing the struct timer_list pointer to > all timer callbacks, switch to using the new

Re: [PATCH] usb: usbatm: Convert timers to use timer_setup()

2017-10-24 Thread Allen
> 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. Additionally corrects and on-stack > timer usage. > > Cc: Greg Kroah-Hartman

Re: [PATCH] usb: usbatm: Convert timers to use timer_setup()

2017-10-24 Thread Allen
> 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. Additionally corrects and on-stack > timer usage. > > Cc: Greg Kroah-Hartman > Cc: Duncan Sands >

[PATCH] usb: usbatm: 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. Additionally corrects and on-stack timer usage. Cc: Greg Kroah-Hartman Cc:

[PATCH] usb: usbatm: 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. Additionally corrects and on-stack timer usage. Cc: Greg Kroah-Hartman Cc: Duncan Sands Cc: Allen Pais