aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/ceph/osd_client.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c
index 6a59fb8fc999..1606f740d6ae 100644
--- a/net/ceph/osd_client.c
+++ b/net/ceph/osd_client.c
@@ -2264,12 +2264,10 @@ int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
2264 if (err < 0) 2264 if (err < 0)
2265 goto out_msgpool; 2265 goto out_msgpool;
2266 2266
2267 err = -ENOMEM;
2267 osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify"); 2268 osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify");
2268 if (IS_ERR(osdc->notify_wq)) { 2269 if (!osdc->notify_wq)
2269 err = PTR_ERR(osdc->notify_wq);
2270 osdc->notify_wq = NULL;
2271 goto out_msgpool; 2270 goto out_msgpool;
2272 }
2273 return 0; 2271 return 0;
2274 2272
2275out_msgpool: 2273out_msgpool: