linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] : ir256_irnet_disc_ind.diff
@ 2002-03-05 22:35 Jean Tourrilhes
  0 siblings, 0 replies; only message in thread
From: Jean Tourrilhes @ 2002-03-05 22:35 UTC (permalink / raw)
  To: Linus Torvalds, irda-users, Linux kernel mailing list

ir256_irnet_disc_ind.diff :
-------------------------
	o [CORRECT] Fix IrNET disconnection to not reconnect but
	  instead to hangup pppd


diff -u -p linux/net/irda/irnet/irnet.d4.h linux/net/irda/irnet/irnet.h
--- linux/net/irda/irnet/irnet.d4.h	Mon Mar  4 16:48:49 2002
+++ linux/net/irda/irnet/irnet.h	Mon Mar  4 16:52:15 2002
@@ -206,6 +206,11 @@
  *	  just after clearing it. *blush*.
  *	o Use newly created irttp_listen() to fix potential crash when LAP
  *	  destroyed before irnet module removed.
+ *
+ * v10 - 4.3.2 - Jean II
+ *	o When receiving a disconnect indication, don't reenable the
+ *	  PPP Tx queue, this will trigger a reconnect. Instead, close
+ *	  the channel, which will kill pppd...
  */
 
 /***************************** INCLUDES *****************************/
diff -u -p linux/net/irda/irnet/irnet_irda.d4.c linux/net/irda/irnet/irnet_irda.c
--- linux/net/irda/irnet/irnet_irda.d4.c	Mon Mar  4 14:22:31 2002
+++ linux/net/irda/irnet/irnet_irda.c	Mon Mar  4 16:20:21 2002
@@ -1122,9 +1122,10 @@ irnet_disconnect_indication(void *	insta
       irttp_close_tsap(self->tsap);
       self->tsap = NULL;
 
-      /* Flush (drain) ppp_generic Tx queue (most often we have blocked it) */
+      /* Cleanup & close the PPP channel, which will kill pppd and the rest */
       if(self->ppp_open)
-	ppp_output_wakeup(&self->chan);
+	ppp_unregister_channel(&self->chan);
+      self->ppp_open = 0;
     }
   /* Cleanup the socket in case we want to reconnect */
   self->stsap_sel = 0;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-03-05 22:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-03-05 22:35 [PATCH] : ir256_irnet_disc_ind.diff Jean Tourrilhes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).