Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm:
dlm: use single thread workqueues

+2 -4
+2 -4
fs/dlm/lowcomms.c
··· 1468 1468 1469 1469 static int work_start(void) 1470 1470 { 1471 - recv_workqueue = alloc_workqueue("dlm_recv", WQ_MEM_RECLAIM | 1472 - WQ_HIGHPRI | WQ_FREEZEABLE, 0); 1471 + recv_workqueue = create_singlethread_workqueue("dlm_recv"); 1473 1472 if (!recv_workqueue) { 1474 1473 log_print("can't start dlm_recv"); 1475 1474 return -ENOMEM; 1476 1475 } 1477 1476 1478 - send_workqueue = alloc_workqueue("dlm_send", WQ_MEM_RECLAIM | 1479 - WQ_HIGHPRI | WQ_FREEZEABLE, 0); 1477 + send_workqueue = create_singlethread_workqueue("dlm_send"); 1480 1478 if (!send_workqueue) { 1481 1479 log_print("can't start dlm_send"); 1482 1480 destroy_workqueue(recv_workqueue);