/kernel/locking/ |
D | rtmutex.h | 15 #define debug_rt_mutex_init_waiter(w) do { } while (0) argument 16 #define debug_rt_mutex_free_waiter(w) do { } while (0) argument 23 #define debug_rt_mutex_print_deadlock(w) do { } while (0) argument 24 #define debug_rt_mutex_reset_waiter(w) do { } while (0) argument 26 static inline void rt_mutex_print_deadlock(struct rt_mutex_waiter *w) in rt_mutex_print_deadlock() argument 31 static inline bool debug_rt_mutex_detect_deadlock(struct rt_mutex_waiter *w, in debug_rt_mutex_detect_deadlock() argument
|
D | rtmutex-debug.h | 25 # define debug_rt_mutex_reset_waiter(w) \ argument 26 do { (w)->deadlock_lock = NULL; } while (0) 34 static inline void rt_mutex_print_deadlock(struct rt_mutex_waiter *w) in rt_mutex_print_deadlock() argument 36 debug_rt_mutex_print_deadlock(w); in rt_mutex_print_deadlock()
|
D | rtmutex_common.h | 56 struct rt_mutex_waiter *w = NULL; in rt_mutex_top_waiter() local 59 w = rb_entry(leftmost, struct rt_mutex_waiter, tree_entry); in rt_mutex_top_waiter() 60 BUG_ON(w->lock != lock); in rt_mutex_top_waiter() 62 return w; in rt_mutex_top_waiter()
|
D | rtmutex.c | 1207 struct rt_mutex_waiter *w) in rt_mutex_handle_deadlock() argument 1219 rt_mutex_print_deadlock(w); in rt_mutex_handle_deadlock()
|
/kernel/ |
D | audit_watch.c | 226 static void audit_watch_log_rule_change(struct audit_krule *r, struct audit_watch *w, char *op) in audit_watch_log_rule_change() argument 237 audit_log_untrustedstring(ab, w->path); in audit_watch_log_rule_change() 325 struct audit_watch *w, *nextw; in audit_remove_parent_watches() local 330 list_for_each_entry_safe(w, nextw, &parent->watches, wlist) { in audit_remove_parent_watches() 331 list_for_each_entry_safe(r, nextr, &w->rules, rlist) { in audit_remove_parent_watches() 333 audit_watch_log_rule_change(r, w, "remove_rule"); in audit_remove_parent_watches() 341 audit_remove_watch(w); in audit_remove_parent_watches() 369 struct audit_watch *w, *watch = krule->watch; in audit_add_to_parent() local 374 list_for_each_entry(w, &parent->watches, wlist) { in audit_add_to_parent() 375 if (strcmp(watch->path, w->path)) in audit_add_to_parent() [all …]
|
D | audit.h | 295 #define audit_put_watch(w) {} argument 296 #define audit_get_watch(w) {} argument 300 #define audit_watch_path(w) "" argument 301 #define audit_watch_compare(w, i, d) 0 argument
|
D | exit.c | 237 void rcuwait_wake_up(struct rcuwait *w) in rcuwait_wake_up() argument 256 task = rcu_dereference(w->task); in rcuwait_wake_up()
|
D | module.c | 3537 static void do_free_init(struct work_struct *w) in do_free_init() argument
|
/kernel/sched/ |
D | psi.c | 959 int w; in psi_show() local 961 for (w = 0; w < 3; w++) in psi_show() 962 avg[w] = group->avg[res * 2 + full][w]; in psi_show()
|
D | sched.h | 120 # define scale_load(w) ((w) << SCHED_FIXEDPOINT_SHIFT) argument 121 # define scale_load_down(w) ((w) >> SCHED_FIXEDPOINT_SHIFT) argument 124 # define scale_load(w) (w) argument 125 # define scale_load_down(w) (w) argument
|
D | fair.c | 133 static inline void update_load_set(struct load_weight *lw, unsigned long w) in update_load_set() argument 135 lw->weight = w; in update_load_set() 191 unsigned long w; in __update_inv_weight() local 196 w = scale_load_down(lw->weight); in __update_inv_weight() 198 if (BITS_PER_LONG > 32 && unlikely(w >= WMULT_CONST)) in __update_inv_weight() 200 else if (unlikely(!w)) in __update_inv_weight() 203 lw->inv_weight = WMULT_CONST / w; in __update_inv_weight()
|
/kernel/bpf/ |
D | verifier.c | 6256 static int push_insn(int t, int w, int e, struct bpf_verifier_env *env, in push_insn() argument 6268 if (w < 0 || w >= env->prog->len) { in push_insn() 6270 verbose(env, "jump out of range from insn %d to %d\n", t, w); in push_insn() 6276 init_explored_state(env, w); in push_insn() 6278 if (insn_state[w] == 0) { in push_insn() 6281 insn_state[w] = DISCOVERED; in push_insn() 6284 insn_stack[env->cfg.cur_stack++] = w; in push_insn() 6286 } else if ((insn_state[w] & 0xF0) == DISCOVERED) { in push_insn() 6290 verbose_linfo(env, w, "%d: ", w); in push_insn() 6291 verbose(env, "back-edge from insn %d to %d\n", t, w); in push_insn() [all …]
|
/kernel/events/ |
D | core.c | 494 static void perf_duration_warn(struct irq_work *w) in perf_duration_warn() argument
|