Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6f38085c
Commit
6f38085c
authored
Feb 13, 2014
by
John Esmet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refs #145 capture the node's height before calling finalize(), which is
the last point we may read the node variable safely.
parent
a5bbafc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
ft/ft-ops.cc
ft/ft-ops.cc
+2
-1
No files found.
ft/ft-ops.cc
View file @
6f38085c
...
...
@@ -1206,6 +1206,7 @@ int toku_ftnode_pe_callback(void *ftnode_pv, PAIR_ATTR old_attr, void *write_ext
exit:
// call the finalize callback with a new pair attr
int
height
=
node
->
height
;
PAIR_ATTR
new_attr
=
make_ftnode_pair_attr
(
node
);
finalize
(
new_attr
,
finalize_extra
);
...
...
@@ -1222,7 +1223,7 @@ exit:
}
// stats
if
(
num_partial_evictions
>
0
)
{
if
(
node
->
height
==
0
)
{
if
(
height
==
0
)
{
long
delta
=
old_attr
.
leaf_size
-
new_attr
.
leaf_size
;
STATUS_INC
(
FT_PARTIAL_EVICTIONS_LEAF
,
num_partial_evictions
);
STATUS_INC
(
FT_PARTIAL_EVICTIONS_LEAF_BYTES
,
delta
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment