Commit fb9d78ac authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm

Pull an APM fix from Jiri Kosina:
 "One deadlock/race fix from Niel that got introduced when we were
  moving away from freezer_*_count() to wait_event_freezable()."

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm:
  APM: fix deadlock in APM_IOC_SUSPEND ioctl
parents 5d32c88f f283d227
...@@ -301,7 +301,7 @@ apm_ioctl(struct file *filp, u_int cmd, u_long arg) ...@@ -301,7 +301,7 @@ apm_ioctl(struct file *filp, u_int cmd, u_long arg)
* anything critical, chill a bit on each iteration. * anything critical, chill a bit on each iteration.
*/ */
while (wait_event_freezable(apm_suspend_waitqueue, while (wait_event_freezable(apm_suspend_waitqueue,
as->suspend_state == SUSPEND_DONE)) as->suspend_state != SUSPEND_ACKED))
msleep(10); msleep(10);
break; break;
case SUSPEND_ACKTO: case SUSPEND_ACKTO:
......
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