Skip to content

Commit

Permalink
Merge "wakelock: use single threaded workqueueus" into jellybean
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Hillenbrand authored and Gerrit Code Review committed Oct 9, 2012
2 parents b8be62e + 7cf296f commit 95661c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/power/wakelock.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ static int __init wakelocks_init(void)
goto err_platform_driver_register; goto err_platform_driver_register;
} }


suspend_work_queue = alloc_workqueue("suspend", WQ_HIGHPRI, 0); suspend_work_queue = alloc_workqueue("suspend", WQ_UNBOUND|WQ_HIGHPRI, 0);
if (suspend_work_queue == NULL) { if (suspend_work_queue == NULL) {
ret = -ENOMEM; ret = -ENOMEM;
goto err_suspend_work_queue; goto err_suspend_work_queue;
Expand Down

0 comments on commit 95661c3

Please sign in to comment.