Browse Source

[PATCH] irda_device() oops fix

Acked-by: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Jean Tourrilhes 20 năm trước cách đây
mục cha
commit
7e5c6bc0a6
1 tập tin đã thay đổi với 9 bổ sung2 xóa
  1. 9 2
      net/irda/irda_device.c

+ 9 - 2
net/irda/irda_device.c

@@ -125,8 +125,15 @@ void irda_device_set_media_busy(struct net_device *dev, int status)
 
 
 	self = (struct irlap_cb *) dev->atalk_ptr;
 	self = (struct irlap_cb *) dev->atalk_ptr;
 
 
-	IRDA_ASSERT(self != NULL, return;);
-	IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
+	/* Some drivers may enable the receive interrupt before calling
+	 * irlap_open(), or they may disable the receive interrupt
+	 * after calling irlap_close().
+	 * The IrDA stack is protected from this in irlap_driver_rcv().
+	 * However, the driver calls directly the wrapper, that calls
+	 * us directly. Make sure we protect ourselves.
+	 * Jean II */
+	if (!self || self->magic != LAP_MAGIC)
+		return;
 
 
 	if (status) {
 	if (status) {
 		self->media_busy = TRUE;
 		self->media_busy = TRUE;