mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
Relax too restrictive assert.
The problem has been reported to upstream and similar change will be included in next jemalloc release. Submitted by: David Goldblatt <davidtgoldblatt@gmail.com> MFC after: 2 weeks
This commit is contained in:
parent
713e844971
commit
3ee2fe0199
1 changed files with 2 additions and 0 deletions
|
|
@ -91,9 +91,11 @@ idalloctm(tsdn_t *tsdn, void *ptr, tcache_t *tcache, alloc_ctx_t *alloc_ctx,
|
|||
if (config_stats && is_internal) {
|
||||
arena_internal_sub(iaalloc(tsdn, ptr), isalloc(tsdn, ptr));
|
||||
}
|
||||
#if 0
|
||||
if (!is_internal && tsd_reentrancy_level_get(tsdn_tsd(tsdn)) != 0) {
|
||||
assert(tcache == NULL);
|
||||
}
|
||||
#endif
|
||||
arena_dalloc(tsdn, ptr, tcache, alloc_ctx, slow_path);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue