Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\events\uprobes.c Create Date:2022-07-28 13:44:45
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:delayed_uprobe_add

Proto:static int delayed_uprobe_add(struct uprobe *uprobe, struct mm_struct *mm)

Type:int

Parameter:

TypeParameterName
struct uprobe *uprobe
struct mm_struct *mm
307  If delayed_uprobe_check(uprobe, mm) Then Return 0
310  du = kzalloc - allocate memory. The memory is set to zero.*@size: how many bytes of memory are required.*@flags: the type of memory to allocate (see kmalloc).
311  If Not du Then Return -ENOMEM
314  uprobe = uprobe
315  mm = mm
316  list_add - add a new entry*@new: new entry to be added*@head: list head to add it after* Insert a new entry after the specified head.* This is good for implementing stacks.
317  Return 0
Caller
NameDescribe
update_ref_ctr