Searched refs:sl (Results 1 – 2 of 2) sorted by relevance
/kernel/time/ |
D | hrtimer.c | 439 static void __hrtimer_init_sleeper(struct hrtimer_sleeper *sl, 442 void hrtimer_init_sleeper_on_stack(struct hrtimer_sleeper *sl, in hrtimer_init_sleeper_on_stack() argument 445 debug_object_init_on_stack(&sl->timer, &hrtimer_debug_descr); in hrtimer_init_sleeper_on_stack() 446 __hrtimer_init_sleeper(sl, clock_id, mode); in hrtimer_init_sleeper_on_stack() 1850 void hrtimer_sleeper_start_expires(struct hrtimer_sleeper *sl, in hrtimer_sleeper_start_expires() argument 1860 if (IS_ENABLED(CONFIG_PREEMPT_RT) && sl->timer.is_hard) in hrtimer_sleeper_start_expires() 1863 hrtimer_start_expires(&sl->timer, mode); in hrtimer_sleeper_start_expires() 1867 static void __hrtimer_init_sleeper(struct hrtimer_sleeper *sl, in __hrtimer_init_sleeper() argument 1894 __hrtimer_init(&sl->timer, clock_id, mode); in __hrtimer_init_sleeper() 1895 sl->timer.function = hrtimer_wakeup; in __hrtimer_init_sleeper() [all …]
|
/kernel/bpf/ |
D | verifier.c | 9327 struct bpf_verifier_state_list *sl; in clean_live_states() local 9330 sl = *explored_state(env, insn); in clean_live_states() 9331 while (sl) { in clean_live_states() 9332 if (sl->state.branches) in clean_live_states() 9334 if (sl->state.insn_idx != insn || in clean_live_states() 9335 sl->state.curframe != cur->curframe) in clean_live_states() 9338 if (sl->state.frame[i]->callsite != cur->frame[i]->callsite) in clean_live_states() 9340 clean_verifier_state(env, &sl->state); in clean_live_states() 9342 sl = sl->next; in clean_live_states() 9758 struct bpf_verifier_state_list *sl, **pprev; in is_state_visited() local [all …]
|