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

/linux-master/kernel/
H A Dprofile.c43 static atomic_t *prof_buffer; variable
122 prof_buffer = kzalloc(buffer_bytes, GFP_KERNEL|__GFP_NOWARN);
123 if (prof_buffer)
126 prof_buffer = alloc_pages_exact(buffer_bytes,
128 if (prof_buffer)
131 prof_buffer = vzalloc(buffer_bytes);
132 if (prof_buffer)
143 * to flip buffers and flushes their contents to prof_buffer itself.
194 atomic_add(hits[i].hits, &prof_buffer[hits[i].pc]);
255 atomic_add(nr_hits, &prof_buffer[p
[all...]

Completed in 233 milliseconds