]> Git Repo - linux.git/blobdiff - drivers/infiniband/core/cm.c
cm: Don't allocate ib_cm workqueue with WQ_MEM_RECLAIM
[linux.git] / drivers / infiniband / core / cm.c
index 2b4d613a347491295a51932699264c6edcd4bb51..838e3507eadcfbc3e6d919053bcda87cc28309de 100644 (file)
@@ -4201,7 +4201,7 @@ static int __init ib_cm_init(void)
                goto error1;
        }
 
-       cm.wq = create_workqueue("ib_cm");
+       cm.wq = alloc_workqueue("ib_cm", 0, 1);
        if (!cm.wq) {
                ret = -ENOMEM;
                goto error2;
This page took 0.023286 seconds and 4 git commands to generate.