From 3dcadb43e89e0d96aa0b3d8bf2907d8cd6ddec08 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 10 Mar 2016 09:17:08 -0500 Subject: [PATCH] os/bluestore: print debug on ENOTEMPTY Signed-off-by: Sage Weil --- src/os/bluestore/BlueStore.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index 4d8602494634c..afca750451b12 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; } -- 2.39.5