Re: [RESEND net-next 1/8] net: dccp: convert tasklets to use new tasklet_setup() API

2020-10-07 Thread Allen Pais
net/dccp/timer.c:223: warning: Function parameter or member 't' not described in 'dccp_write_xmitlet' net/dccp/timer.c:223: warning: Excess function parameter 'data' description in 'dccp_write_xmitlet' My bad. Will fix it. Thanks.

Re: [RESEND net-next 1/8] net: dccp: convert tasklets to use new tasklet_setup() API

2020-10-06 Thread Jakub Kicinski
On Tue, 6 Oct 2020 12:01:54 +0530 Allen Pais wrote: > --- a/net/dccp/timer.c > +++ b/net/dccp/timer.c > @@ -219,9 +219,10 @@ static void dccp_delack_timer(struct timer_list *t) > * > * See the comments above %ccid_dequeueing_decision for supported modes. > */ > -static void dccp_write_xmitle

[RESEND net-next 1/8] net: dccp: convert tasklets to use new tasklet_setup() API

2020-10-05 Thread Allen Pais
In preparation for unconditionally passing the struct tasklet_struct pointer to all tasklet callbacks, switch to using the new tasklet_setup() and from_tasklet() to pass the tasklet pointer explicitly. Signed-off-by: Romain Perier Signed-off-by: Allen Pais --- net/dccp/timer.c | 10 +-