dlm: use alloc_workqueue function

Replaces deprecated create_singlethread_workqueue().

Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
David Teigland 2011-03-10 13:22:34 -06:00
parent e3853a90e2
commit e43f055a95

View File

@ -1468,13 +1468,15 @@ static void work_stop(void)
static int work_start(void) static int work_start(void)
{ {
recv_workqueue = create_singlethread_workqueue("dlm_recv"); recv_workqueue = alloc_workqueue("dlm_recv",
WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
if (!recv_workqueue) { if (!recv_workqueue) {
log_print("can't start dlm_recv"); log_print("can't start dlm_recv");
return -ENOMEM; return -ENOMEM;
} }
send_workqueue = create_singlethread_workqueue("dlm_send"); send_workqueue = alloc_workqueue("dlm_send",
WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
if (!send_workqueue) { if (!send_workqueue) {
log_print("can't start dlm_send"); log_print("can't start dlm_send");
destroy_workqueue(recv_workqueue); destroy_workqueue(recv_workqueue);