Re: [PATCH] netfilter: ipvs: Convert timers to use timer_setup()

2017-11-02 Thread Kees Cook
On Thu, Nov 2, 2017 at 7:42 AM, Simon Horman wrote: > On Tue, Oct 24, 2017 at 10:07:03PM +0300, Julian Anastasov wrote: >> >> Hello, >> >> On Tue, 24 Oct 2017, Kees Cook wrote: >> >> > In preparation for unconditionally passing the struct timer_list pointer to >> > all

Re: [PATCH] netfilter: ipvs: Convert timers to use timer_setup()

2017-11-02 Thread Simon Horman
On Tue, Oct 24, 2017 at 10:07:03PM +0300, Julian Anastasov wrote: > > Hello, > > On Tue, 24 Oct 2017, 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

[PATCH] netfilter: ipvs: Convert timers to use timer_setup()

2017-10-26 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. Cc: Wensong Zhang Cc: Simon Horman Cc: Julian Anastasov

Re: [PATCH] netfilter: ipvs: Convert timers to use timer_setup()

2017-10-24 Thread Julian Anastasov
Hello, On Tue, 24 Oct 2017, 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. > > Cc: Wensong Zhang

[PATCH] netfilter: ipvs: 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. Cc: Wensong Zhang Cc: Simon Horman Cc: Julian Anastasov