Closed ramosian-glider closed 4 years ago
Bulk allocations are performed via kmem_cache_alloc_bulk(), which doesn't call slab_alloc_node(). Need to intercept this path as well.
kmem_cache_alloc_bulk()
slab_alloc_node()
I think bulk allocations work now.
Actually, no, they do not. Taking a look.
Fixed now.
Bulk allocations are performed via
kmem_cache_alloc_bulk()
, which doesn't callslab_alloc_node()
. Need to intercept this path as well.