| From a3e96a6b8ecfb61de53310eda7e2c2e1ba5c942e Mon Sep 17 00:00:00 2001 |
| From: Chuhong Yuan <hslester96@gmail.com> |
| Date: Fri, 6 Dec 2019 09:24:26 +0800 |
| Subject: [PATCH] RDMA/cma: add missed unregister_pernet_subsys in init failure |
| |
| commit 44a7b6759000ac51b92715579a7bba9e3f9245c2 upstream. |
| |
| The driver forgets to call unregister_pernet_subsys() in the error path |
| of cma_init(). |
| Add the missed call to fix it. |
| |
| Fixes: 4be74b42a6d0 ("IB/cma: Separate port allocation to network namespaces") |
| Signed-off-by: Chuhong Yuan <hslester96@gmail.com> |
| Reviewed-by: Parav Pandit <parav@mellanox.com> |
| Link: https://lore.kernel.org/r/20191206012426.12744-1-hslester96@gmail.com |
| Signed-off-by: Doug Ledford <dledford@redhat.com> |
| Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> |
| |
| diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c |
| index 2e48b59926c1..61bb59468da9 100644 |
| --- a/drivers/infiniband/core/cma.c |
| +++ b/drivers/infiniband/core/cma.c |
| @@ -4736,6 +4736,7 @@ static int __init cma_init(void) |
| err: |
| unregister_netdevice_notifier(&cma_nb); |
| ib_sa_unregister_client(&sa_client); |
| + unregister_pernet_subsys(&cma_pernet_operations); |
| err_wq: |
| destroy_workqueue(cma_wq); |
| return ret; |
| -- |
| 2.7.4 |
| |