Home
last modified time | relevance | path

Searched refs:nl (Results 1 – 2 of 2) sorted by relevance

/kernel/
Dnotifier.c21 static int notifier_chain_register(struct notifier_block **nl, in notifier_chain_register() argument
24 while ((*nl) != NULL) { in notifier_chain_register()
25 if (n->priority > (*nl)->priority) in notifier_chain_register()
27 nl = &((*nl)->next); in notifier_chain_register()
29 n->next = *nl; in notifier_chain_register()
30 rcu_assign_pointer(*nl, n); in notifier_chain_register()
34 static int notifier_chain_cond_register(struct notifier_block **nl, in notifier_chain_cond_register() argument
37 while ((*nl) != NULL) { in notifier_chain_cond_register()
38 if ((*nl) == n) in notifier_chain_cond_register()
40 if (n->priority > (*nl)->priority) in notifier_chain_cond_register()
[all …]
Dlockdep_proc.c452 unsigned long nl, nr; in lock_stat_cmp() local
454 nl = dl->stats.read_waittime.nr + dl->stats.write_waittime.nr; in lock_stat_cmp()
457 return nr - nl; in lock_stat_cmp()