Lines Matching +full:0 +full:x25
27 #include <net/x25.h>
34 struct x25_sock *x25 = x25_sk(sk); in x25_init_timers() local
36 timer_setup(&x25->timer, x25_timer_expiry, 0); in x25_init_timers()
54 struct x25_sock *x25 = x25_sk(sk); in x25_start_t2timer() local
56 mod_timer(&x25->timer, jiffies + x25->t2); in x25_start_t2timer()
61 struct x25_sock *x25 = x25_sk(sk); in x25_start_t21timer() local
63 mod_timer(&x25->timer, jiffies + x25->t21); in x25_start_t21timer()
68 struct x25_sock *x25 = x25_sk(sk); in x25_start_t22timer() local
70 mod_timer(&x25->timer, jiffies + x25->t22); in x25_start_t22timer()
75 struct x25_sock *x25 = x25_sk(sk); in x25_start_t23timer() local
77 mod_timer(&x25->timer, jiffies + x25->t23); in x25_start_t23timer()
87 struct x25_sock *x25 = x25_sk(sk); in x25_display_timer() local
89 if (!timer_pending(&x25->timer)) in x25_display_timer()
90 return 0; in x25_display_timer()
92 return x25->timer.expires - jiffies; in x25_display_timer()
138 struct x25_sock *x25 = x25_sk(sk); in x25_do_timer_expiry() local
140 switch (x25->state) { in x25_do_timer_expiry()
143 if (x25->condition & X25_COND_ACK_PENDING) { in x25_do_timer_expiry()
144 x25->condition &= ~X25_COND_ACK_PENDING; in x25_do_timer_expiry()
152 x25->state = X25_STATE_2; in x25_do_timer_expiry()
157 x25_disconnect(sk, ETIMEDOUT, 0, 0); in x25_do_timer_expiry()
164 struct x25_sock *x25 = from_timer(x25, t, timer); in x25_timer_expiry() local
165 struct sock *sk = &x25->sk; in x25_timer_expiry()