From: Sage Weil Date: Thu, 10 Mar 2016 14:17:08 +0000 (-0500) Subject: os/bluestore: print debug on ENOTEMPTY X-Git-Tag: v10.1.0~113^2~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3dcadb43e89e0d96aa0b3d8bf2907d8cd6ddec08;p=ceph.git os/bluestore: print debug on ENOTEMPTY Signed-off-by: Sage Weil --- diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index 4d8602494634..afca750451b1 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -6398,6 +6398,8 @@ int BlueStore::_remove_collection(TransContext *txc, coll_t cid, pair next; while ((*c)->onode_map.get_next(next.first, &next)) { if (next.second->exists) { + dout(10) << __func__ << " " << next.first << " " << next.second + << " exists in onode_map" << dendl; r = -ENOTEMPTY; goto out; }