You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to load the module while system is up and then starting memstrack ,
but dont see any stats collected by it.
i have tried both kmalloc and get_free_pages , but none is captured.
I am trying to load the module while system is up and then starting memstrack ,
You have to start memstrack before load the module, else the memory allocation events won't be catched by memstrack.
but dont see any stats collected by it.
i have tried both kmalloc and get_free_pages , but none is captured.
Currently, memstrack only track mm_page_alloc, so only real used memory is calculated.
So for kmalloc, if it didn't alloc enough memory to trigger a page allocation it won't be tracked.
I am trying to load the module while system is up and then starting memstrack ,
but dont see any stats collected by it.
i have tried both kmalloc and get_free_pages , but none is captured.
./memstrack --report module_summary,module_top,proc_slab_static --notui -o /memory-debug
will be good to have a feature just to capture memory usage of a particular module
The text was updated successfully, but these errors were encountered: