Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 211627
b: refs/heads/master
c: 9fa0ea9
h: refs/heads/master
i:
  211625: 5d07c73
  211623: c1d5664
v: v3
  • Loading branch information
Steven Whitehouse committed Sep 20, 2010
1 parent 9dcac82 commit c794a38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 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: 1fea7c25a05d388c0cdbe02cbdaf3a2e70885581
refs/heads/master: 9fa0ea9f26f64fbfc3dfd51d1dc2c230b65ffb19
6 changes: 4 additions & 2 deletions trunk/fs/gfs2/glock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1783,10 +1783,12 @@ int __init gfs2_glock_init(void)
}
#endif

glock_workqueue = create_workqueue("glock_workqueue");
glock_workqueue = alloc_workqueue("glock_workqueue", WQ_RESCUER |
WQ_HIGHPRI | WQ_FREEZEABLE, 0);
if (IS_ERR(glock_workqueue))
return PTR_ERR(glock_workqueue);
gfs2_delete_workqueue = create_workqueue("delete_workqueue");
gfs2_delete_workqueue = alloc_workqueue("delete_workqueue", WQ_RESCUER |
WQ_FREEZEABLE, 0);
if (IS_ERR(gfs2_delete_workqueue)) {
destroy_workqueue(glock_workqueue);
return PTR_ERR(gfs2_delete_workqueue);
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/gfs2/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ static int __init init_gfs2_fs(void)

error = -ENOMEM;
gfs_recovery_wq = alloc_workqueue("gfs_recovery",
WQ_NON_REENTRANT | WQ_RESCUER, 0);
WQ_RESCUER | WQ_FREEZEABLE, 0);
if (!gfs_recovery_wq)
goto fail_wq;

Expand Down

0 comments on commit c794a38

Please sign in to comment.