]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rbd: RBD::clone2: fix tracepoint
authorMykola Golub <mgolub@mirantis.com>
Thu, 22 Oct 2015 07:11:08 +0000 (10:11 +0300)
committerMykola Golub <mgolub@mirantis.com>
Wed, 11 Nov 2015 08:45:44 +0000 (10:45 +0200)
Signed-off-by: Mykola Golub <mgolub@mirantis.com>
src/librbd/librbd.cc

index 0566ad7f7b8c8d9d736d08627640d411a1af792c..7f7ad40575fb193cb9f303ef6ad2295913618bb1 100644 (file)
@@ -324,7 +324,7 @@ namespace librbd {
     tracepoint(librbd, clone2_enter, p_ioctx.get_pool_name().c_str(), p_ioctx.get_id(), p_name, p_snap_name, c_ioctx.get_pool_name().c_str(), c_ioctx.get_id(), c_name, features, stripe_unit, stripe_count);
     int r = librbd::clone(p_ioctx, p_name, p_snap_name, c_ioctx, c_name,
                         features, c_order, stripe_unit, stripe_count);
-    tracepoint(librbd, clone_exit, r, *c_order);
+    tracepoint(librbd, clone2_exit, r, *c_order);
     return r;
   }