summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/async/async_op.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/async/async_op.c')
-rw-r--r--src/third_party/wiredtiger/src/async/async_op.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/third_party/wiredtiger/src/async/async_op.c b/src/third_party/wiredtiger/src/async/async_op.c
index 2bdc9e4ec8e..8c074e503d9 100644
--- a/src/third_party/wiredtiger/src/async/async_op.c
+++ b/src/third_party/wiredtiger/src/async/async_op.c
@@ -104,7 +104,7 @@ __async_search(WT_ASYNC_OP *asyncop)
op = (WT_ASYNC_OP_IMPL *)asyncop;
ASYNCOP_API_CALL(O2C(op), session, search);
- WT_STAT_FAST_CONN_INCR(O2S(op), async_op_search);
+ WT_STAT_CONN_INCR(O2S(op), async_op_search);
WT_ERR(__async_op_wrap(op, WT_AOP_SEARCH));
err: API_END_RET(session, ret);
}
@@ -122,7 +122,7 @@ __async_insert(WT_ASYNC_OP *asyncop)
op = (WT_ASYNC_OP_IMPL *)asyncop;
ASYNCOP_API_CALL(O2C(op), session, insert);
- WT_STAT_FAST_CONN_INCR(O2S(op), async_op_insert);
+ WT_STAT_CONN_INCR(O2S(op), async_op_insert);
WT_ERR(__async_op_wrap(op, WT_AOP_INSERT));
err: API_END_RET(session, ret);
}
@@ -140,7 +140,7 @@ __async_update(WT_ASYNC_OP *asyncop)
op = (WT_ASYNC_OP_IMPL *)asyncop;
ASYNCOP_API_CALL(O2C(op), session, update);
- WT_STAT_FAST_CONN_INCR(O2S(op), async_op_update);
+ WT_STAT_CONN_INCR(O2S(op), async_op_update);
WT_ERR(__async_op_wrap(op, WT_AOP_UPDATE));
err: API_END_RET(session, ret);
}
@@ -158,7 +158,7 @@ __async_remove(WT_ASYNC_OP *asyncop)
op = (WT_ASYNC_OP_IMPL *)asyncop;
ASYNCOP_API_CALL(O2C(op), session, remove);
- WT_STAT_FAST_CONN_INCR(O2S(op), async_op_remove);
+ WT_STAT_CONN_INCR(O2S(op), async_op_remove);
WT_ERR(__async_op_wrap(op, WT_AOP_REMOVE));
err: API_END_RET(session, ret);
}
@@ -176,7 +176,7 @@ __async_compact(WT_ASYNC_OP *asyncop)
op = (WT_ASYNC_OP_IMPL *)asyncop;
ASYNCOP_API_CALL(O2C(op), session, compact);
- WT_STAT_FAST_CONN_INCR(O2S(op), async_op_compact);
+ WT_STAT_CONN_INCR(O2S(op), async_op_compact);
WT_ERR(__async_op_wrap(op, WT_AOP_COMPACT));
err: API_END_RET(session, ret);
}