This is a note to let you know that I've just added the patch titled libceph: create_singlethread_workqueue() doesn't return ERR_PTRs to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: libceph-create_singlethread_workqueue-doesn-t-return-err_ptrs.patch and it can be found in the queue-3.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From dbcae088fa660086bde6e10d63bb3c9264832d85 Mon Sep 17 00:00:00 2001 From: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Date: Thu, 15 Aug 2013 08:58:59 +0300 Subject: libceph: create_singlethread_workqueue() doesn't return ERR_PTRs From: Dan Carpenter <dan.carpenter@xxxxxxxxxx> commit dbcae088fa660086bde6e10d63bb3c9264832d85 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@xxxxxxxxxx> Reviewed-by: Sage Weil <sage@xxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- net/ceph/osd_client.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) --- a/net/ceph/osd_client.c +++ b/net/ceph/osd_client.c @@ -2257,12 +2257,10 @@ int ceph_osdc_init(struct ceph_osd_clien 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: Patches currently in stable-queue which might be from dan.carpenter@xxxxxxxxxx are queue-3.10/libceph-fix-error-handling-in-handle_reply.patch queue-3.10/libceph-potential-null-dereference-in-ceph_osdc_handle_map.patch queue-3.10/libceph-create_singlethread_workqueue-doesn-t-return-err_ptrs.patch queue-3.10/ceph-cleanup-types-in-striped_read.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html