mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 10:12:16 +09:00
libceph: create_singlethread_workqueue() doesn't return ERR_PTRs
commit dbcae088fa upstream.
create_singlethread_workqueue() returns NULL on error, and it doesn't
return ERR_PTRs.
I tweaked the error handling a little to be consistent with earlier in
the function.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
53341d7de3
commit
3834fb30d2
@@ -2257,12 +2257,10 @@ int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
|
||||
if (err < 0)
|
||||
goto out_msgpool;
|
||||
|
||||
err = -ENOMEM;
|
||||
osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify");
|
||||
if (IS_ERR(osdc->notify_wq)) {
|
||||
err = PTR_ERR(osdc->notify_wq);
|
||||
osdc->notify_wq = NULL;
|
||||
if (!osdc->notify_wq)
|
||||
goto out_msgpool;
|
||||
}
|
||||
return 0;
|
||||
|
||||
out_msgpool:
|
||||
|
||||
Reference in New Issue
Block a user