Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56843
b: refs/heads/master
c: 7ed92f1
h: refs/heads/master
i:
  56841: 05450e2
  56839: 0cc1df4
v: v3
  • Loading branch information
Alan Stern authored and Greg Kroah-Hartman committed May 23, 2007
1 parent 778109f commit fc99bd4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8ab5e8c0ca55c4b40d254f7043a9052345fcd343
refs/heads/master: 7ed92f1a149dddc3cb537ccd7441e98adac12c3e
6 changes: 5 additions & 1 deletion trunk/drivers/usb/core/usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,11 @@ struct device_type usb_device_type = {

static int ksuspend_usb_init(void)
{
ksuspend_usb_wq = create_singlethread_workqueue("ksuspend_usbd");
/* This workqueue is supposed to be both freezable and
* singlethreaded. Its job doesn't justify running on more
* than one CPU.
*/
ksuspend_usb_wq = create_freezeable_workqueue("ksuspend_usbd");
if (!ksuspend_usb_wq)
return -ENOMEM;
return 0;
Expand Down

0 comments on commit fc99bd4

Please sign in to comment.