aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/llc_c_ac.h
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2017-10-24 01:45:48 -0700
committerDavid S. Miller <davem@davemloft.net>2017-10-25 12:06:25 +0900
commitfc8bcaa05160528d56432e4612f522e3ceafc513 (patch)
tree7818ac4c54e21a8e4f869e9d9d255743a43b283e /include/net/llc_c_ac.h
parentnet: ax25: Convert timers to use timer_setup() (diff)
downloadlinux-dev-fc8bcaa05160528d56432e4612f522e3ceafc513.tar.xz
linux-dev-fc8bcaa05160528d56432e4612f522e3ceafc513.zip
net: LLC: Convert timers to use timer_setup()
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: "David S. Miller" <davem@davemloft.net> Cc: Eric Dumazet <edumazet@google.com> Cc: Hans Liljestrand <ishkamiel@gmail.com> Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> Cc: "Reshetova, Elena" <elena.reshetova@intel.com> Cc: netdev@vger.kernel.org Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/llc_c_ac.h')
-rw-r--r--include/net/llc_c_ac.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/llc_c_ac.h b/include/net/llc_c_ac.h
index f3be818e73c1..e766300b3e99 100644
--- a/include/net/llc_c_ac.h
+++ b/include/net/llc_c_ac.h
@@ -171,10 +171,10 @@ int llc_conn_ac_rst_sendack_flag(struct sock *sk, struct sk_buff *skb);
int llc_conn_ac_send_i_rsp_as_ack(struct sock *sk, struct sk_buff *skb);
int llc_conn_ac_send_i_as_ack(struct sock *sk, struct sk_buff *skb);
-void llc_conn_busy_tmr_cb(unsigned long timeout_data);
-void llc_conn_pf_cycle_tmr_cb(unsigned long timeout_data);
-void llc_conn_ack_tmr_cb(unsigned long timeout_data);
-void llc_conn_rej_tmr_cb(unsigned long timeout_data);
+void llc_conn_busy_tmr_cb(struct timer_list *t);
+void llc_conn_pf_cycle_tmr_cb(struct timer_list *t);
+void llc_conn_ack_tmr_cb(struct timer_list *t);
+void llc_conn_rej_tmr_cb(struct timer_list *t);
void llc_conn_set_p_flag(struct sock *sk, u8 value);
#endif /* LLC_C_AC_H */