Home
last modified time | relevance | path

Searched refs:prof_buffer (Results 1 – 1 of 1) sorted by relevance

/kernel/
Dprofile.c42 static atomic_t *prof_buffer; variable
115 prof_buffer = alloc_bootmem(buffer_bytes); in profile_init()
126 prof_buffer = kzalloc(buffer_bytes, GFP_KERNEL); in profile_init()
127 if (prof_buffer) in profile_init()
130 prof_buffer = alloc_pages_exact(buffer_bytes, GFP_KERNEL|__GFP_ZERO); in profile_init()
131 if (prof_buffer) in profile_init()
134 prof_buffer = vmalloc(buffer_bytes); in profile_init()
135 if (prof_buffer) in profile_init()
289 atomic_add(hits[i].hits, &prof_buffer[hits[i].pc]); in profile_flip_buffers()
317 if (prof_on != type || !prof_buffer) in profile_hits()
[all …]