函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\notifier.c Create Date:2022-07-27 10:32:18
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:notifier_chain_unregister

函数原型:static int notifier_chain_unregister(struct notifier_block **nl, struct notifier_block *n)

返回类型:int

参数:

类型参数名称
struct notifier_block **nl
struct notifier_block *n
42  当(( * nl) != NULL)循环
43  如果nl恒等于n
45  返回:0
47  nl等于next的地址
49  返回:负ENOENT
调用者
名称描述
atomic_notifier_chain_unregisteratomic_notifier_chain_unregister - Remove notifier from an atomic notifier chain*@nh: Pointer to head of the atomic notifier chain*@n: Entry to remove from notifier chain* Removes a notifier from an atomic notifier chain.
blocking_notifier_chain_unregisterlocking_notifier_chain_unregister - Remove notifier from a blocking notifier chain*@nh: Pointer to head of the blocking notifier chain*@n: Entry to remove from notifier chain* Removes a notifier from a blocking notifier chain.
raw_notifier_chain_unregisteraw_notifier_chain_unregister - Remove notifier from a raw notifier chain*@nh: Pointer to head of the raw notifier chain*@n: Entry to remove from notifier chain* Removes a notifier from a raw notifier chain.* All locking must be provided by the caller.