Lines Matching refs:nr
119 static long cmm_alloc_pages(long nr) in cmm_alloc_pages() argument
125 cmm_dbg("Begin request for %ld pages\n", nr); in cmm_alloc_pages()
127 while (nr) { in cmm_alloc_pages()
179 nr--; in cmm_alloc_pages()
182 cmm_dbg("End request with %ld pages unfulfilled\n", nr); in cmm_alloc_pages()
183 return nr; in cmm_alloc_pages()
193 static long cmm_free_pages(long nr) in cmm_free_pages() argument
198 cmm_dbg("Begin free of %ld pages.\n", nr); in cmm_free_pages()
201 while (nr) { in cmm_free_pages()
215 nr--; in cmm_free_pages()
219 cmm_dbg("End request with %ld pages unfulfilled\n", nr); in cmm_free_pages()
220 return nr; in cmm_free_pages()
236 long nr = KB2PAGES(oom_kb); in cmm_oom_notify() local
239 nr = cmm_free_pages(nr); in cmm_oom_notify()
241 *freed += KB2PAGES(oom_kb) - nr; in cmm_oom_notify()
242 oom_freed_pages += KB2PAGES(oom_kb) - nr; in cmm_oom_notify()