This is a note to let you know that I've just added the patch titled rbd: fix null dereference in dout 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: rbd-fix-null-dereference-in-dout.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 c35455791c1131e7ccbf56ea6fbdd562401c2ce2 Mon Sep 17 00:00:00 2001 From: Josh Durgin <josh.durgin@xxxxxxxxxxx> Date: Wed, 28 Aug 2013 17:08:10 -0700 Subject: rbd: fix null dereference in dout From: Josh Durgin <josh.durgin@xxxxxxxxxxx> commit c35455791c1131e7ccbf56ea6fbdd562401c2ce2 upstream. The order parameter is sometimes NULL in _rbd_dev_v2_snap_size(), but the dout() always derefences it. Move this to another dout() protected by a check that order is non-NULL. Signed-off-by: Josh Durgin <josh.durgin@xxxxxxxxxxx> Reviewed-by: Sage Weil <sage@xxxxxxxxxxx> Reviewed-by: Alex Elder <alex.elder@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/block/rbd.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c @@ -3712,12 +3712,14 @@ static int _rbd_dev_v2_snap_size(struct if (ret < sizeof (size_buf)) return -ERANGE; - if (order) + if (order) { *order = size_buf.order; + dout(" order %u", (unsigned int)*order); + } *snap_size = le64_to_cpu(size_buf.size); - dout(" snap_id 0x%016llx order = %u, snap_size = %llu\n", - (unsigned long long)snap_id, (unsigned int)*order, + dout(" snap_id 0x%016llx snap_size = %llu\n", + (unsigned long long)snap_id, (unsigned long long)*snap_size); return 0; Patches currently in stable-queue which might be from josh.durgin@xxxxxxxxxxx are queue-3.10/rbd-make-rbd_obj_notify_ack-synchronous.patch queue-3.10/libceph-add-function-to-ensure-notifies-are-complete.patch queue-3.10/rbd-fix-buffer-size-for-writes-to-images-with-snapshots.patch queue-3.10/rbd-fix-use-after-free-of-rbd_dev-disk.patch queue-3.10/rbd-complete-notifies-before-cleaning-up-osd_client-and-rbd_dev.patch queue-3.10/libceph-add-lingering-request-reference-when-registered.patch queue-3.10/rbd-fix-null-dereference-in-dout.patch queue-3.10/rbd-ignore-unmapped-snapshots-that-no-longer-exist.patch queue-3.10/rbd-set-removing-flag-while-holding-list-lock.patch queue-3.10/rbd-flush-dcache-after-zeroing-page-data.patch queue-3.10/rbd-fix-error-handling-from-rbd_snap_name.patch queue-3.10/rbd-protect-against-concurrent-unmaps.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