mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-18 02:46:21 +03:00
Avoid atomic operations for dependent rtree reads.
This commit is contained in:
parent
c451831264
commit
fd5f9e43c3
5 changed files with 43 additions and 26 deletions
|
|
@ -8,7 +8,7 @@ huge_node_get(const void *ptr)
|
|||
{
|
||||
extent_node_t *node;
|
||||
|
||||
node = chunk_lookup(ptr);
|
||||
node = chunk_lookup(ptr, true);
|
||||
assert(!extent_node_achunk_get(node));
|
||||
|
||||
return (node);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue