提交 01d1d714 编写于 作者: E Ernst Martin Witte 提交者: Mauro Carvalho Chehab

[media] si2157: cancel_delayed_work_sync before device removal / kfree

si2157_remove  was  calling  kfree(dev)  with  possibly  still  active
schedule_delayed_work(dev->stat_work).  This  caused kernel  panics in
call_timer_fn e.g. after rmmod cx23885.
Signed-off-by: NErnst Martin Witte <emw-linux-kernel@nocabal.de>
Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
上级 4bdcaa05
...@@ -458,6 +458,9 @@ static int si2157_remove(struct i2c_client *client) ...@@ -458,6 +458,9 @@ static int si2157_remove(struct i2c_client *client)
dev_dbg(&client->dev, "\n"); dev_dbg(&client->dev, "\n");
/* stop statistics polling */
cancel_delayed_work_sync(&dev->stat_work);
memset(&fe->ops.tuner_ops, 0, sizeof(struct dvb_tuner_ops)); memset(&fe->ops.tuner_ops, 0, sizeof(struct dvb_tuner_ops));
fe->tuner_priv = NULL; fe->tuner_priv = NULL;
kfree(dev); kfree(dev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册