Commit f263bac9 authored by Jean Delvare's avatar Jean Delvare Committed by Mauro Carvalho Chehab

V4L/DVB (10938): em28xx: Prevent general protection fault on rmmod

The removal of the timer which polls the infrared input is racy.
Replacing the timer with a delayed work solves the problem.
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent c61402ba
...@@ -68,8 +68,7 @@ struct em28xx_IR { ...@@ -68,8 +68,7 @@ struct em28xx_IR {
/* poll external decoder */ /* poll external decoder */
int polling; int polling;
struct work_struct work; struct delayed_work work;
struct timer_list timer;
unsigned int last_toggle:1; unsigned int last_toggle:1;
unsigned int last_readcount; unsigned int last_readcount;
unsigned int repeat_interval; unsigned int repeat_interval;
...@@ -292,32 +291,23 @@ static void em28xx_ir_handle_key(struct em28xx_IR *ir) ...@@ -292,32 +291,23 @@ static void em28xx_ir_handle_key(struct em28xx_IR *ir)
return; return;
} }
static void ir_timer(unsigned long data)
{
struct em28xx_IR *ir = (struct em28xx_IR *)data;
schedule_work(&ir->work);
}
static void em28xx_ir_work(struct work_struct *work) static void em28xx_ir_work(struct work_struct *work)
{ {
struct em28xx_IR *ir = container_of(work, struct em28xx_IR, work); struct em28xx_IR *ir = container_of(work, struct em28xx_IR, work.work);
em28xx_ir_handle_key(ir); em28xx_ir_handle_key(ir);
mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling)); schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
} }
static void em28xx_ir_start(struct em28xx_IR *ir) static void em28xx_ir_start(struct em28xx_IR *ir)
{ {
setup_timer(&ir->timer, ir_timer, (unsigned long)ir); INIT_DELAYED_WORK(&ir->work, em28xx_ir_work);
INIT_WORK(&ir->work, em28xx_ir_work); schedule_delayed_work(&ir->work, 0);
schedule_work(&ir->work);
} }
static void em28xx_ir_stop(struct em28xx_IR *ir) static void em28xx_ir_stop(struct em28xx_IR *ir)
{ {
del_timer_sync(&ir->timer); cancel_delayed_work_sync(&ir->work);
flush_scheduled_work();
} }
int em28xx_ir_init(struct em28xx *dev) int em28xx_ir_init(struct em28xx *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment