[PATCH] : ir258_lsap_lap_close-2.diff

From: Jean Tourrilhes (jt@bougret.hpl.hp.com)
Date: Thu Apr 18 2002 - 21:32:16 EST


ir258_lsap_lap_close-2.diff :
---------------------------
                <apply after ir258_flow_sched_lap_lmp-6.diff to avoid fuzz>
        o [CORRECT] Cancel LSAP watchdog when putting socket back to listen
        o [CORRECT] Try to close LAP when closing LSAP still active
                <Following patch from Felix Tang>
        o [CORRECT] Header fix for compile on Alpha architecture

--------------------------------------

diff -u -p linux/include/net/irda/irlmp.d7.h linux/include/net/irda/irlmp.h
--- linux/include/net/irda/irlmp.d7.h Wed Apr 10 18:32:46 2002
+++ linux/include/net/irda/irlmp.h Fri Apr 12 09:54:54 2002
@@ -278,6 +278,8 @@ static inline void irlmp_listen(struct l
         self->dlsap_sel = LSAP_ANY;
         self->lap = NULL;
         self->lsap_state = LSAP_DISCONNECTED;
+ /* Started when we received the LM_CONNECT_INDICATION */
+ del_timer(&self->watchdog_timer);
 }
 
 #endif
diff -u -p linux/net/irda/irlmp.d7.c linux/net/irda/irlmp.c
--- linux/net/irda/irlmp.d7.c Wed Apr 10 18:20:24 2002
+++ linux/net/irda/irlmp.c Wed Apr 10 18:27:26 2002
@@ -236,6 +236,16 @@ void irlmp_close_lsap(struct lsap_cb *se
         lap = self->lap;
         if (lap) {
                 ASSERT(lap->magic == LMP_LAP_MAGIC, return;);
+ /* We might close a LSAP before it has completed the
+ * connection setup. In those case, higher layers won't
+ * send a proper disconnect request. Harmless, except
+ * that we will forget to close LAP... - Jean II */
+ if(self->lsap_state != LSAP_DISCONNECTED) {
+ self->lsap_state = LSAP_DISCONNECTED;
+ irlmp_do_lap_event(self->lap,
+ LM_LAP_DISCONNECT_REQUEST, NULL);
+ }
+ /* Now, remove from the link */
                 lsap = hashbin_remove(lap->lsaps, (int) self, NULL);
         }
         self->lap = NULL;
diff -u -p linux/net/irda/parameters.d7.c linux/net/irda/parameters.c
--- linux/net/irda/parameters.d7.c Fri Apr 12 14:45:08 2002
+++ linux/net/irda/parameters.c Fri Apr 12 14:45:29 2002
@@ -28,6 +28,7 @@
  *
  ********************************************************************/
 
+#include <linux/types.h>
 #include <asm/unaligned.h>
 #include <asm/byteorder.h>
 
-
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 Apr 23 2002 - 22:00:23 EST