Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\kprobes.c Create Date:2022-07-28 11:36:12
Last Modify:2022-05-22 18:14:58 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:Lookup and populate the kprobe_blacklist.* Unlike the kretprobe blacklist, we'll need to determine* the range of addresses that belong to the said functions,* since a kprobe need not necessarily be at the beginning* of a function.

Proto:static int __init populate_kprobe_blacklist(unsigned long *start, unsigned long *end)

Type:int

Parameter:

TypeParameterName
unsigned long *start
unsigned long *end
2202  When iter < end cycle
2203  entry = arch_deref_entry_point((void * ) * iter)
2204  ret = kprobe_add_ksym_blacklist(entry)
2205  If ret == -EINVAL Then Continue
2207  If ret < 0 Then Return ret
2212  ret = Add all symbols in given area into kprobe blacklist
2215  Return If ret Else arch_populate_kprobe_blacklist()
Caller
NameDescribe
init_kprobes