summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_split.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/btree/bt_split.c')
-rw-r--r--src/third_party/wiredtiger/src/btree/bt_split.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/third_party/wiredtiger/src/btree/bt_split.c b/src/third_party/wiredtiger/src/btree/bt_split.c
index e05f3746052..ea667460966 100644
--- a/src/third_party/wiredtiger/src/btree/bt_split.c
+++ b/src/third_party/wiredtiger/src/btree/bt_split.c
@@ -542,10 +542,10 @@ __split_root(WT_SESSION_IMPL *session, WT_PAGE *root)
uint32_t slots;
void *p;
- WT_STAT_FAST_CONN_INCR(session, cache_eviction_deepen);
- WT_STAT_FAST_DATA_INCR(session, cache_eviction_deepen);
- WT_STAT_FAST_CONN_INCR(session, cache_eviction_split_internal);
- WT_STAT_FAST_DATA_INCR(session, cache_eviction_split_internal);
+ WT_STAT_CONN_INCR(session, cache_eviction_deepen);
+ WT_STAT_DATA_INCR(session, cache_eviction_deepen);
+ WT_STAT_CONN_INCR(session, cache_eviction_split_internal);
+ WT_STAT_DATA_INCR(session, cache_eviction_split_internal);
btree = S2BT(session);
alloc_index = NULL;
@@ -1028,8 +1028,8 @@ __split_internal(WT_SESSION_IMPL *session, WT_PAGE *parent, WT_PAGE *page)
uint32_t slots;
void *p;
- WT_STAT_FAST_CONN_INCR(session, cache_eviction_split_internal);
- WT_STAT_FAST_DATA_INCR(session, cache_eviction_split_internal);
+ WT_STAT_CONN_INCR(session, cache_eviction_split_internal);
+ WT_STAT_DATA_INCR(session, cache_eviction_split_internal);
/* The page will be marked dirty, make sure that will succeed. */
WT_RET(__wt_page_modify_init(session, page));
@@ -1742,8 +1742,8 @@ __split_insert(WT_SESSION_IMPL *session, WT_REF *ref)
uint8_t type;
int i;
- WT_STAT_FAST_CONN_INCR(session, cache_inmem_split);
- WT_STAT_FAST_DATA_INCR(session, cache_inmem_split);
+ WT_STAT_CONN_INCR(session, cache_inmem_split);
+ WT_STAT_DATA_INCR(session, cache_inmem_split);
page = ref->page;
right = NULL;
@@ -2110,8 +2110,8 @@ __split_multi(WT_SESSION_IMPL *session, WT_REF *ref, bool closing)
size_t parent_incr;
uint32_t i, new_entries;
- WT_STAT_FAST_CONN_INCR(session, cache_eviction_split_leaf);
- WT_STAT_FAST_DATA_INCR(session, cache_eviction_split_leaf);
+ WT_STAT_CONN_INCR(session, cache_eviction_split_leaf);
+ WT_STAT_DATA_INCR(session, cache_eviction_split_leaf);
page = ref->page;
mod = page->modify;