patch-2.1.25 linux/net/lapb/lapb_timer.c
Next file: linux/net/netrom/af_netrom.c
Previous file: linux/net/lapb/lapb_in.c
Back to the patch index
Back to the overall index
- Lines: 83
- Date:
Sun Feb 2 15:18:51 1997
- Orig file:
v2.1.24/linux/net/lapb/lapb_timer.c
- Orig date:
Thu Jan 23 21:06:58 1997
diff -u --recursive --new-file v2.1.24/linux/net/lapb/lapb_timer.c linux/net/lapb/lapb_timer.c
@@ -41,37 +41,20 @@
static void lapb_timer(unsigned long);
/*
- * Linux set/reset timer routines
+ * Linux set timer
*/
void lapb_set_timer(lapb_cb *lapb)
{
unsigned long flags;
- save_flags(flags);
- cli();
- del_timer(&lapb->timer);
- restore_flags(flags);
-
- lapb->timer.next = lapb->timer.prev = NULL;
- lapb->timer.data = (unsigned long)lapb;
- lapb->timer.function = &lapb_timer;
-
- lapb->timer.expires = jiffies + 10;
- add_timer(&lapb->timer);
-}
-
-static void lapb_reset_timer(lapb_cb *lapb)
-{
- unsigned long flags;
-
- save_flags(flags);
- cli();
+ save_flags(flags); cli();
del_timer(&lapb->timer);
restore_flags(flags);
lapb->timer.data = (unsigned long)lapb;
lapb->timer.function = &lapb_timer;
lapb->timer.expires = jiffies + 10;
+
add_timer(&lapb->timer);
}
@@ -98,7 +81,7 @@
}
if (lapb->t1timer == 0 || --lapb->t1timer > 0) {
- lapb_reset_timer(lapb);
+ lapb_set_timer(lapb);
return;
}
@@ -111,7 +94,6 @@
if (lapb->n2count == lapb->n2) {
lapb_clear_queues(lapb);
lapb->state = LAPB_STATE_0;
- lapb->t1timer = (lapb->mode & LAPB_DCE) ? lapb->t1 : 0;
lapb->t2timer = 0;
lapb_disconnect_indication(lapb, LAPB_TIMEDOUT);
#if LAPB_DEBUG > 0
@@ -137,7 +119,6 @@
if (lapb->n2count == lapb->n2) {
lapb_clear_queues(lapb);
lapb->state = LAPB_STATE_0;
- lapb->t1timer = (lapb->mode & LAPB_DCE) ? lapb->t1 : 0;
lapb->t2timer = 0;
lapb_disconnect_confirmation(lapb, LAPB_TIMEDOUT);
#if LAPB_DEBUG > 0
@@ -156,13 +137,15 @@
lapb->n2count = 1;
lapb_transmit_enquiry(lapb);
lapb->state = LAPB_STATE_4;
+#if LAPB_DEBUG > 0
+ printk(KERN_DEBUG "lapb: (%p) S3 -> S4\n", lapb->token);
+#endif
break;
case LAPB_STATE_4:
if (lapb->n2count == lapb->n2) {
lapb_clear_queues(lapb);
lapb->state = LAPB_STATE_0;
- lapb->t1timer = (lapb->mode & LAPB_DCE) ? lapb->t1 : 0;
lapb->t2timer = 0;
lapb_disconnect_indication(lapb, LAPB_TIMEDOUT);
#if LAPB_DEBUG > 0
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov