summaryrefslogtreecommitdiff
path: root/src/include/btree.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/btree.h')
-rw-r--r--src/include/btree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/btree.h b/src/include/btree.h
index 595afc453c8..d742310bf8f 100644
--- a/src/include/btree.h
+++ b/src/include/btree.h
@@ -114,7 +114,7 @@ struct __wt_btree {
int split_pct; /* Split page percent */
WT_COMPRESSOR *compressor; /* Page compressor */
WT_KEYED_ENCRYPTOR *kencryptor; /* Page encryptor */
- WT_RWLOCK *ovfl_lock; /* Overflow lock */
+ WT_RWLOCK ovfl_lock; /* Overflow lock */
uint64_t last_recno; /* Column-store last record number */
@@ -131,6 +131,7 @@ struct __wt_btree {
uint64_t write_gen; /* Write generation */
uint64_t bytes_inmem; /* Cache bytes in memory. */
+ uint64_t bytes_dirty_intl; /* Bytes in dirty internal pages. */
uint64_t bytes_dirty_leaf; /* Bytes in dirty leaf pages. */
WT_REF *evict_ref; /* Eviction thread's location */