nitturis-linux / kedr

Automatically exported from code.google.com/p/kedr
0 stars 1 forks source link

Add processing of put_page() #8

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
put_page() is sometimes used to deallocate memmory pages that were allocated 
with alloc_page() or the like. 

Among other things, page_cache_release(), which is often used by filesystem 
modules, expands to put_page() too.

It may make sense to investigate the typical usage scenarios of put_page() in 
the kernel, intercept the calls to this function and process it as a 
deallocation routine in LeakCheck.

Original issue reported on code.google.com by euspec...@gmail.com on 25 Feb 2013 at 2:12