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

/linux-master/include/linux/
H A Dprofile.h47 void profile_hits(int type, void *ip, unsigned int nr_hits);
78 static inline void profile_hits(int type, void *ip, unsigned int nr_hits) argument
/linux-master/kernel/
H A Dprofile.c216 static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) argument
240 hits[i + j].hits += nr_hits;
244 hits[i + j].hits = nr_hits;
255 atomic_add(nr_hits, &prof_buffer[pc]);
317 static void do_profile_hits(int type, void *__pc, unsigned int nr_hits) argument
321 atomic_add(nr_hits, &prof_buffer[min(pc, prof_len - 1)]);
325 void profile_hits(int type, void *__pc, unsigned int nr_hits) argument
329 do_profile_hits(type, __pc, nr_hits);

Completed in 153 milliseconds