浏览代码

Bluetooth: bluecard: Use del_timer_sync() in teardown path

Make sure no timer callback is running before releasing the
datastructure which contains it.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Thomas Gleixner 11 年之前
父节点
当前提交
d8ff9cdf68
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/bluetooth/bluecard_cs.c

+ 1 - 1
drivers/bluetooth/bluecard_cs.c

@@ -901,7 +901,7 @@ static void bluecard_release(struct pcmcia_device *link)
 
 
 	bluecard_close(info);
 	bluecard_close(info);
 
 
-	del_timer(&(info->timer));
+	del_timer_sync(&(info->timer));
 
 
 	pcmcia_disable_device(link);
 	pcmcia_disable_device(link);
 }
 }