提交 6591691b 编写于 作者: A akpm@linux-foundation.org 提交者: Mauro Carvalho Chehab

V4L/DVB (5209): Kthread api conversion for dvb_frontend and av7110 fix

avoid double-up(), pointed out by Oliver.
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Acked-by: NOliver Endriss <o.endriss@gmx.de>
Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
上级 8eec1429
......@@ -525,7 +525,7 @@ static int dvb_frontend_thread(void *data)
while (1) {
up(&fepriv->sem); /* is locked when we enter the thread... */
restart:
timeout = wait_event_interruptible_timeout(fepriv->wait_queue,
dvb_frontend_should_wakeup(fe) || kthread_should_stop(),
fepriv->delay);
......@@ -536,7 +536,7 @@ static int dvb_frontend_thread(void *data)
}
if (try_to_freeze())
continue;
goto restart;
if (down_interruptible(&fepriv->sem))
break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册