]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
librbd: don't close an already closed parent image upon failure 3078/head
authorJason Dillaman <dillaman@redhat.com>
Thu, 6 Nov 2014 10:01:38 +0000 (05:01 -0500)
committerJason Dillaman <dillaman@redhat.com>
Tue, 2 Dec 2014 18:04:50 +0000 (13:04 -0500)
If librbd is not able to open a child's parent image, it will
incorrectly close the parent image twice, resulting in a crash.

Fixes: #10030
Backport: firefly, giant
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
(cherry picked from commit 61ebfebd59b61ffdc203dfeca01ee1a02315133e)

src/librbd/internal.cc

index afa466025327e154be8816f156dbeb47a8ee0130..dd7aef12470d761c525d080a697932a46f34f7ad 100644 (file)
@@ -1260,7 +1260,6 @@ reprotect_and_return_err:
     if (r < 0) {
       lderr(ictx->cct) << "error opening parent image: " << cpp_strerror(r)
                       << dendl;
-      close_image(ictx->parent);
       ictx->parent = NULL;
       return r;
     }