Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d40b0c34 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm:
  dlm: use single thread workqueues
parents 3aec46c1 6b155c8f
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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);