Lines Matching refs:x25
22 #include <net/x25.h>
29 struct x25_sock *x25 = x25_sk(sk);
31 timer_setup(&x25->timer, x25_timer_expiry, 0);
49 struct x25_sock *x25 = x25_sk(sk);
51 mod_timer(&x25->timer, jiffies + x25->t2);
56 struct x25_sock *x25 = x25_sk(sk);
58 mod_timer(&x25->timer, jiffies + x25->t21);
63 struct x25_sock *x25 = x25_sk(sk);
65 mod_timer(&x25->timer, jiffies + x25->t22);
70 struct x25_sock *x25 = x25_sk(sk);
72 mod_timer(&x25->timer, jiffies + x25->t23);
82 struct x25_sock *x25 = x25_sk(sk);
84 if (!timer_pending(&x25->timer))
87 return x25->timer.expires - jiffies;
133 struct x25_sock *x25 = x25_sk(sk);
135 switch (x25->state) {
138 if (x25->condition & X25_COND_ACK_PENDING) {
139 x25->condition &= ~X25_COND_ACK_PENDING;
147 x25->state = X25_STATE_2;
159 struct x25_sock *x25 = from_timer(x25, t, timer);
160 struct sock *sk = &x25->sk;