Lines Matching refs:note
50 struct op_note note; in oprof_output_map() local
56 note.pid = current->pid; in oprof_output_map()
57 note.tgid = op_get_tgid(); in oprof_output_map()
58 note.addr = addr; in oprof_output_map()
59 note.len = len; in oprof_output_map()
60 note.offset = offset; in oprof_output_map()
61 note.type = is_execve ? OP_EXEC : OP_MAP; in oprof_output_map()
62 note.hash = hash_path(file); in oprof_output_map()
63 if (note.hash == -1) in oprof_output_map()
66 __oprof_put_note(¬e); in oprof_output_map()
210 struct op_note note; in oprof_report_fork() local
212 note.type = OP_FORK; in oprof_report_fork()
213 note.pid = old_pid; in oprof_report_fork()
214 note.tgid = old_tgid; in oprof_report_fork()
215 note.addr = new_pid; in oprof_report_fork()
216 note.len = new_tgid; in oprof_report_fork()
217 oprof_put_note(¬e); in oprof_report_fork()
281 struct op_note note; in my_sys_init_module() local
283 note.type = OP_DROP_MODULES; in my_sys_init_module()
284 oprof_put_note(¬e); in my_sys_init_module()
293 struct op_note note; in my_sys_exit() local
297 note.type = OP_EXIT; in my_sys_exit()
298 note.pid = current->pid; in my_sys_exit()
299 note.tgid = op_get_tgid(); in my_sys_exit()
300 oprof_put_note(¬e); in my_sys_exit()