[PATCH 2.5] : ir251_lmp_timer_race-2.diff

From: Jean Tourrilhes (jt@bougret.hpl.hp.com)
Date: Thu Oct 10 2002 - 19:17:42 EST


ir251_lmp_timer_race-2.diff :
---------------------------
        o [CORRECT] Start timer before sending event to fix race condition
        o [FEATURE] Improve the IrLMP event debugging messages.

diff -u -p linux/net/irda/irlmp_event.d3.c linux/net/irda/irlmp_event.c
--- linux/net/irda/irlmp_event.d3.c Thu Oct 10 15:25:48 2002
+++ linux/net/irda/irlmp_event.c Thu Oct 10 15:31:09 2002
@@ -514,10 +514,10 @@ static int irlmp_state_disconnected(stru
 
                 irlmp_next_lsap_state(self, LSAP_SETUP_PEND);
 
- irlmp_do_lap_event(self->lap, LM_LAP_CONNECT_REQUEST, NULL);
-
                 /* Start watchdog timer (5 secs for now) */
                 irlmp_start_watchdog_timer(self, 5*HZ);
+
+ irlmp_do_lap_event(self->lap, LM_LAP_CONNECT_REQUEST, NULL);
                 break;
         case LM_CONNECT_INDICATION:
                 if (self->conn_skb) {
@@ -529,8 +529,6 @@ static int irlmp_state_disconnected(stru
 
                 irlmp_next_lsap_state(self, LSAP_CONNECT_PEND);
 
- irlmp_do_lap_event(self->lap, LM_LAP_CONNECT_REQUEST, NULL);
-
                 /* Start watchdog timer
                  * This is not mentionned in the spec, but there is a rare
                  * race condition that can get the socket stuck.
@@ -543,10 +541,12 @@ static int irlmp_state_disconnected(stru
                  * a backup plan. 1 second is plenty (should be immediate).
                  * Jean II */
                 irlmp_start_watchdog_timer(self, 1*HZ);
+
+ irlmp_do_lap_event(self->lap, LM_LAP_CONNECT_REQUEST, NULL);
                 break;
         default:
- IRDA_DEBUG(2, "%s(), Unknown event %s\n",
- __FUNCTION__, irlmp_event[event]);
+ IRDA_DEBUG(1, "%s(), Unknown event %s on LSAP %#02x\n",
+ __FUNCTION__, irlmp_event[event], self->slsap_sel);
                 if (skb)
                         dev_kfree_skb(skb);
                 break;
@@ -604,8 +604,8 @@ static int irlmp_state_connect(struct ls
                 irlmp_next_lsap_state(self, LSAP_DISCONNECTED);
                 break;
         default:
- IRDA_DEBUG(0, "%s(), Unknown event %s\n",
- __FUNCTION__, irlmp_event[event]);
+ IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
+ __FUNCTION__, irlmp_event[event], self->slsap_sel);
                 if (skb)
                         dev_kfree_skb(skb);
                 break;
@@ -666,8 +666,8 @@ static int irlmp_state_connect_pend(stru
                 irlmp_next_lsap_state(self, LSAP_DISCONNECTED);
                 break;
         default:
- IRDA_DEBUG(0, "%s(), Unknown event %s\n",
- __FUNCTION__, irlmp_event[event]);
+ IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
+ __FUNCTION__, irlmp_event[event], self->slsap_sel);
                 if (skb)
                         dev_kfree_skb(skb);
                 break;
@@ -757,8 +757,8 @@ static int irlmp_state_dtr(struct lsap_c
                 irlmp_disconnect_indication(self, reason, skb);
                 break;
         default:
- IRDA_DEBUG(0, "%s(), Unknown event %s\n",
- __FUNCTION__, irlmp_event[event]);
+ IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
+ __FUNCTION__, irlmp_event[event], self->slsap_sel);
                 if (skb)
                         dev_kfree_skb(skb);
                 break;
@@ -830,8 +830,8 @@ static int irlmp_state_setup(struct lsap
                 irlmp_disconnect_indication(self, LM_CONNECT_FAILURE, NULL);
                 break;
         default:
- IRDA_DEBUG(0, "%s(), Unknown event %s\n",
- __FUNCTION__, irlmp_event[event]);
+ IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
+ __FUNCTION__, irlmp_event[event], self->slsap_sel);
                 if (skb)
                         dev_kfree_skb(skb);
                 break;
@@ -889,8 +889,8 @@ static int irlmp_state_setup_pend(struct
                 irlmp_disconnect_indication(self, reason, NULL);
                 break;
         default:
- IRDA_DEBUG(0, "%s(), Unknown event %s\n",
- __FUNCTION__, irlmp_event[event]);
+ IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
+ __FUNCTION__, irlmp_event[event], self->slsap_sel);
                 if (skb)
                         dev_kfree_skb(skb);
                 break;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue Oct 15 2002 - 22:00:40 EST