Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\notifier.c Create Date:2022-07-28 09:31:41
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:notifier_chain_unregister

Proto:static int notifier_chain_unregister(struct notifier_block **nl, struct notifier_block *n)

Type:int

Parameter:

TypeParameterName
struct notifier_block **nl
struct notifier_block *n
42  When (( * nl) != NULL) cycle
43  If nl == n Then
45  Return 0
47  nl = &next
49  Return -ENOENT
Caller
NameDescribe
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.