Lines Matching refs:n

22 		struct notifier_block *n)  in notifier_chain_register()  argument
25 if (n->priority > (*nl)->priority) in notifier_chain_register()
29 n->next = *nl; in notifier_chain_register()
30 rcu_assign_pointer(*nl, n); in notifier_chain_register()
35 struct notifier_block *n) in notifier_chain_cond_register() argument
38 if ((*nl) == n) in notifier_chain_cond_register()
40 if (n->priority > (*nl)->priority) in notifier_chain_cond_register()
44 n->next = *nl; in notifier_chain_cond_register()
45 rcu_assign_pointer(*nl, n); in notifier_chain_cond_register()
50 struct notifier_block *n) in notifier_chain_unregister() argument
53 if ((*nl) == n) { in notifier_chain_unregister()
54 rcu_assign_pointer(*nl, n->next); in notifier_chain_unregister()
122 struct notifier_block *n) in atomic_notifier_chain_register() argument
128 ret = notifier_chain_register(&nh->head, n); in atomic_notifier_chain_register()
144 struct notifier_block *n) in atomic_notifier_chain_unregister() argument
150 ret = notifier_chain_unregister(&nh->head, n); in atomic_notifier_chain_unregister()
214 struct notifier_block *n) in blocking_notifier_chain_register() argument
224 return notifier_chain_register(&nh->head, n); in blocking_notifier_chain_register()
227 ret = notifier_chain_register(&nh->head, n); in blocking_notifier_chain_register()
245 struct notifier_block *n) in blocking_notifier_chain_cond_register() argument
250 ret = notifier_chain_cond_register(&nh->head, n); in blocking_notifier_chain_cond_register()
267 struct notifier_block *n) in blocking_notifier_chain_unregister() argument
277 return notifier_chain_unregister(&nh->head, n); in blocking_notifier_chain_unregister()
280 ret = notifier_chain_unregister(&nh->head, n); in blocking_notifier_chain_unregister()
348 struct notifier_block *n) in raw_notifier_chain_register() argument
350 return notifier_chain_register(&nh->head, n); in raw_notifier_chain_register()
365 struct notifier_block *n) in raw_notifier_chain_unregister() argument
367 return notifier_chain_unregister(&nh->head, n); in raw_notifier_chain_unregister()
422 struct notifier_block *n) in srcu_notifier_chain_register() argument
432 return notifier_chain_register(&nh->head, n); in srcu_notifier_chain_register()
435 ret = notifier_chain_register(&nh->head, n); in srcu_notifier_chain_register()
452 struct notifier_block *n) in srcu_notifier_chain_unregister() argument
462 return notifier_chain_unregister(&nh->head, n); in srcu_notifier_chain_unregister()
465 ret = notifier_chain_unregister(&nh->head, n); in srcu_notifier_chain_unregister()