aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2011-02-11 16:44:31 -0600
committerDavid Teigland <teigland@redhat.com>2011-02-11 16:50:47 -0600
commit6b155c8fd4d239f7d883d455bbad1be47724bbfc (patch)
tree31458f5bb3119220dcd50ce569cbba040e93ae21 /fs/dlm
parentd2478521afc20227658a10a8c5c2bf1a2aa615b3 (diff)
downloadkernel_samsung_smdk4412-6b155c8fd4d239f7d883d455bbad1be47724bbfc.zip
kernel_samsung_smdk4412-6b155c8fd4d239f7d883d455bbad1be47724bbfc.tar.gz
kernel_samsung_smdk4412-6b155c8fd4d239f7d883d455bbad1be47724bbfc.tar.bz2
dlm: use single thread workqueues
The recent commit to use cmwq for send and recv threads dcce240ead802d42b1e45ad2fcb2ed4a399cb255 introduced problems, apparently due to multiple workqueue threads. Single threads make the problems go away, so return to that until we fully understand the concurrency issues with multiple threads. Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r--fs/dlm/lowcomms.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c
index 9c64ae9..2d8c87b 100644
--- a/fs/dlm/lowcomms.c
+++ b/fs/dlm/lowcomms.c
@@ -1468,15 +1468,13 @@ static void work_stop(void)
static int work_start(void)
{
- recv_workqueue = alloc_workqueue("dlm_recv", WQ_MEM_RECLAIM |
- WQ_HIGHPRI | WQ_FREEZEABLE, 0);
+ recv_workqueue = create_singlethread_workqueue("dlm_recv");
if (!recv_workqueue) {
log_print("can't start dlm_recv");
return -ENOMEM;
}
- send_workqueue = alloc_workqueue("dlm_send", WQ_MEM_RECLAIM |
- WQ_HIGHPRI | WQ_FREEZEABLE, 0);
+ send_workqueue = create_singlethread_workqueue("dlm_send");
if (!send_workqueue) {
log_print("can't start dlm_send");
destroy_workqueue(recv_workqueue);