purge slab memory even if using MAP_FIXED fails
This commit is contained in:
parent
5c974bdf82
commit
f9a8e7216b
@ -760,8 +760,10 @@ static inline void deallocate_small(void *p, const size_t *expected_size) {
|
|||||||
enqueue_free_slab(c, metadata);
|
enqueue_free_slab(c, metadata);
|
||||||
mutex_unlock(&c->lock);
|
mutex_unlock(&c->lock);
|
||||||
return;
|
return;
|
||||||
|
} else {
|
||||||
|
memory_purge(slab, slab_size);
|
||||||
|
// handle out-of-memory by putting it into the empty slabs list
|
||||||
}
|
}
|
||||||
// handle out-of-memory by just putting it into the empty slabs list
|
|
||||||
}
|
}
|
||||||
|
|
||||||
metadata->next = c->empty_slabs;
|
metadata->next = c->empty_slabs;
|
||||||
|
Loading…
Reference in New Issue
Block a user