summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-07-25 15:12:04 -0400
committerKeith Bostic <keith@wiredtiger.com>2014-07-25 15:12:04 -0400
commit810d82e8ddb6574ad2a8a8792140e0cbb82106d1 (patch)
tree4d1b6818a10e1b371063c2041bb5c5234410b96d
parentebd228d77ee1d6a46698cd840e715b15a2b5c176 (diff)
downloadmongo-810d82e8ddb6574ad2a8a8792140e0cbb82106d1.tar.gz
I don't expect to ever drill a path so we don't need the WT_BTREE.ckpt field,
remove the XXX.
-rw-r--r--src/btree/bt_sync.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/btree/bt_sync.c b/src/btree/bt_sync.c
index ae921f42528..d4c6a577b9c 100644
--- a/src/btree/bt_sync.c
+++ b/src/btree/bt_sync.c
@@ -305,10 +305,10 @@ __wt_cache_op(WT_SESSION_IMPL *session, WT_CKPT *ckptbase, int op)
case WT_SYNC_CHECKPOINT:
case WT_SYNC_CLOSE:
/*
- * XXX
- * Set the checkpoint reference for reconciliation -- this is
- * ugly, but there's no data structure path from here to the
- * reconciliation of the tree's root page.
+ * Set the checkpoint reference for reconciliation; it's ugly,
+ * but drilling a function parameter path from our callers to
+ * the reconciliation of the tree's root page is going to be
+ * worse.
*/
WT_ASSERT(session, btree->ckpt == NULL);
btree->ckpt = ckptbase;