函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\events\core.c Create Date:2022-07-27 14:57:45
Last Modify:2022-05-20 07:50:19 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:perf_event_mmap_output

函数原型:static void perf_event_mmap_output(struct perf_event *event, void *data)

返回类型:void

参数:

类型参数名称
struct perf_event *event
void *data
7615  mmap_event等于data
7618  size等于size
7619  type等于type
7622  如果非perf_event_mmap_match(event, data)则返回
7625  如果mmap2
7626  type等于PERF_RECORD_MMAP2
7627  size加等于maj的长度
7628  size加等于min的长度
7629  size加等于ino的长度
7630  size加等于ino_generation的长度
7631  size加等于prot的长度
7632  size加等于flags的长度
7635  perf_event_header__init_id( & header, & sample, event)
7636  ret等于perf_output_begin( & handle, event, size)
7638  如果ret则转到:out
7641  pid等于perf_event_pid(event, 当前进程)
7642  tid等于perf_event_tid(event, 当前进程)
7644  perf_output_put( & handle, event_id)
7646  如果mmap2
7647  perf_output_put( & handle, maj)
7648  perf_output_put( & handle, min)
7649  perf_output_put( & handle, ino)
7650  perf_output_put( & handle, ino_generation)
7651  perf_output_put( & handle, prot)
7652  perf_output_put( & handle, flags)
7655  __output_copy( & handle, file_name, file_size)
7658  perf_event__output_id_sample(event, & handle, & sample)
7660  perf_output_end( & handle)
7661  out :
7662  size等于size
7663  type等于type