hygoni / linux

Linux kernel source tree
Other
1 stars 1 forks source link

kmalloc support #14

Closed hygoni closed 2 years ago

hygoni commented 2 years ago

Looking at statistics, kmalloc caches are not using lockless cache. That's because kmalloc doesn't call kmem_cache_alloc, it calls kmem_cache_alloc_trace.

So let's support kmalloc too.

hygoni commented 2 years ago

This does not fit into initial intention. I'm closing this!