Home
last modified time | relevance | path

Searched refs:prev_state (Results 1 – 25 of 77) sorted by relevance

1234

/Linux-v5.4/arch/mips/kernel/
Dtraps.c446 enum ctx_state prev_state; in do_be() local
448 prev_state = exception_enter(); in do_be()
488 exception_exit(prev_state); in do_be()
703 enum ctx_state prev_state; in do_ov() local
705 prev_state = exception_enter(); in do_ov()
709 exception_exit(prev_state); in do_ov()
827 enum ctx_state prev_state; in do_fpe() local
831 prev_state = exception_enter(); in do_fpe()
876 exception_exit(prev_state); in do_fpe()
982 enum ctx_state prev_state; in do_bp() local
[all …]
Dcpu-bugs64.c173 enum ctx_state prev_state; in do_daddi_ov() local
175 prev_state = exception_enter(); in do_daddi_ov()
178 exception_exit(prev_state); in do_daddi_ov()
/Linux-v5.4/samples/bpf/
Dcpustat_kern.c106 u64 *cts, *pts, *cstate, *pstate, prev_state, cur_ts, delta; in bpf_prog1() local
135 prev_state = *cstate; in bpf_prog1()
198 key = cpu * MAX_CSTATE_ENTRIES + prev_state; in bpf_prog1()
214 u64 *pts, *cstate, *pstate, prev_state, cur_ts, delta; in bpf_prog2() local
235 prev_state = *pstate; in bpf_prog2()
/Linux-v5.4/tools/perf/scripts/python/
Dsched-migration.py104 def sched_switch(self, prev, prev_state, next): argument
107 if taskState(prev_state) == "R" and next in self.tasks \
111 if taskState(prev_state) != "R":
116 if taskState(prev_state) != "R":
118 elif taskState(prev_state) == "R":
179 def sched_switch(self, ts_list, prev, prev_state, next, cpu): argument
181 new_rq = old_rq.sched_switch(prev, prev_state, next)
333 def sched_switch(self, headers, prev_comm, prev_pid, prev_prio, prev_state, argument
349 ts.sched_switch(self.timeslices, prev_pid, prev_state, next_pid, headers.cpu)
422 prev_comm, prev_pid, prev_prio, prev_state, argument
[all …]
/Linux-v5.4/include/trace/events/
Dufs.h73 u32 prev_state, u32 curr_state),
75 TP_ARGS(dev_name, state, clk, prev_state, curr_state),
81 __field(u32, prev_state)
89 __entry->prev_state = prev_state;
95 __entry->prev_state, __entry->curr_state)
Dsched.h150 __field( long, prev_state )
160 __entry->prev_state = __trace_sched_switch_state(preempt, prev);
170 (__entry->prev_state & (TASK_REPORT_MAX - 1)) ?
171 __print_flags(__entry->prev_state & (TASK_REPORT_MAX - 1), "|",
182 __entry->prev_state & TASK_REPORT_MAX ? "+" : "",
/Linux-v5.4/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
Dg84.c102 enum nvkm_therm_thrs_state prev_state, new_state; in g84_therm_threshold_hyst_emulation() local
105 prev_state = nvkm_therm_sensor_get_threshold_state(therm, thrs_name); in g84_therm_threshold_hyst_emulation()
127 if (prev_state < new_state) in g84_therm_threshold_hyst_emulation()
129 else if (prev_state > new_state) in g84_therm_threshold_hyst_emulation()
Dtemp.c142 enum nvkm_therm_thrs_state prev_state, new_state; in nvkm_therm_threshold_hyst_polling() local
145 prev_state = nvkm_therm_sensor_get_threshold_state(therm, thrs_name); in nvkm_therm_threshold_hyst_polling()
147 if (temp >= thrs->temp && prev_state == NVKM_THERM_THRS_LOWER) { in nvkm_therm_threshold_hyst_polling()
151 prev_state == NVKM_THERM_THRS_HIGHER) { in nvkm_therm_threshold_hyst_polling()
/Linux-v5.4/drivers/hid/
Dhid-uclogic-core.c321 u8 prev_state = drvdata->re_state; in uclogic_raw_event() local
325 if ((prev_state == 1 && state == 0) || in uclogic_raw_event()
326 (prev_state == 2 && state == 3)) { in uclogic_raw_event()
328 } else if ((prev_state == 2 && state == 0) || in uclogic_raw_event()
329 (prev_state == 1 && state == 3)) { in uclogic_raw_event()
/Linux-v5.4/kernel/
Dcpu.c455 enum cpuhp_state prev_state = st->state; in cpuhp_set_state() local
464 return prev_state; in cpuhp_set_state()
468 cpuhp_reset_state(struct cpuhp_cpu_state *st, enum cpuhp_state prev_state) in cpuhp_reset_state() argument
483 st->target = prev_state; in cpuhp_reset_state()
506 enum cpuhp_state prev_state; in cpuhp_kick_ap() local
509 prev_state = cpuhp_set_state(st, target); in cpuhp_kick_ap()
512 cpuhp_reset_state(st, prev_state); in cpuhp_kick_ap()
595 enum cpuhp_state prev_state = st->state; in cpuhp_up_callbacks() local
603 st->target = prev_state; in cpuhp_up_callbacks()
771 enum cpuhp_state prev_state = st->state; in cpuhp_kick_ap_work() local
[all …]
Dstackleak.c27 int prev_state = state; in stack_erasing_sysctl() local
33 if (ret || !write || state == prev_state) in stack_erasing_sysctl()
/Linux-v5.4/drivers/of/
Ddynamic.c113 int is_status, status_state, old_status_state, prev_state, new_state; in of_reconfig_get_state_change() local
136 prev_state = -1; in of_reconfig_get_state_change()
150 prev_state = 0; in of_reconfig_get_state_change()
156 prev_state = status_state != 0; in of_reconfig_get_state_change()
162 prev_state = 1; in of_reconfig_get_state_change()
168 prev_state = status_state; in of_reconfig_get_state_change()
175 prev_state = old_status_state != 0; in of_reconfig_get_state_change()
181 if (prev_state == new_state) in of_reconfig_get_state_change()
/Linux-v5.4/kernel/trace/
Dtrace_entries.h125 __field( unsigned char, prev_state ) \
138 __entry->prev_pid, __entry->prev_prio, __entry->prev_state,
158 __entry->prev_pid, __entry->prev_prio, __entry->prev_state,
/Linux-v5.4/arch/mips/mm/
Dfault.c330 enum ctx_state prev_state; in do_page_fault() local
332 prev_state = exception_enter(); in do_page_fault()
334 exception_exit(prev_state); in do_page_fault()
/Linux-v5.4/arch/powerpc/kernel/
Dtraps.c1080 enum ctx_state prev_state = exception_enter(); in unknown_exception() local
1087 exception_exit(prev_state); in unknown_exception()
1092 enum ctx_state prev_state = exception_enter(); in instruction_breakpoint_exception() local
1102 exception_exit(prev_state); in instruction_breakpoint_exception()
1112 enum ctx_state prev_state = exception_enter(); in single_step_exception() local
1129 exception_exit(prev_state); in single_step_exception()
1455 enum ctx_state prev_state = exception_enter(); in program_check_exception() local
1570 exception_exit(prev_state); in program_check_exception()
1587 enum ctx_state prev_state = exception_enter(); in alignment_exception() local
1621 exception_exit(prev_state); in alignment_exception()
[all …]
/Linux-v5.4/arch/sparc/kernel/
Dtraps_64.c189 enum ctx_state prev_state = exception_enter(); in spitfire_insn_access_exception() local
207 exception_exit(prev_state); in spitfire_insn_access_exception()
294 enum ctx_state prev_state = exception_enter(); in spitfire_data_access_exception() local
327 exception_exit(prev_state); in spitfire_data_access_exception()
2082 enum ctx_state prev_state = exception_enter(); in sun4v_resum_error() local
2126 exception_exit(prev_state); in sun4v_resum_error()
2351 enum ctx_state prev_state = exception_enter(); in do_fpieee() local
2359 exception_exit(prev_state); in do_fpieee()
2364 enum ctx_state prev_state = exception_enter(); in do_fpother() local
2382 exception_exit(prev_state); in do_fpother()
[all …]
Dkgdb_64.c166 enum ctx_state prev_state = exception_enter(); in kgdb_trap() local
180 exception_exit(prev_state); in kgdb_trap()
Dsignal_64.c46 enum ctx_state prev_state = exception_enter(); in sparc64_set_context() local
134 exception_exit(prev_state); in sparc64_set_context()
145 enum ctx_state prev_state = exception_enter(); in sparc64_get_context() local
228 exception_exit(prev_state); in sparc64_get_context()
/Linux-v5.4/tools/testing/selftests/bpf/progs/
Dtest_tracepoint.c13 long long prev_state; member
/Linux-v5.4/lib/dim/
Dnet_dim.c167 int prev_state = dim->tune_state; in net_dim_decision() local
211 if (prev_state != DIM_PARKING_ON_TOP || in net_dim_decision()
/Linux-v5.4/drivers/net/ethernet/qlogic/qed/
Dqed_roce.h56 enum qed_roce_qp_state prev_state,
Dqed_roce.c1010 enum qed_roce_qp_state prev_state, in qed_roce_modify_qp() argument
1018 if (((prev_state == QED_ROCE_QP_STATE_INIT) || in qed_roce_modify_qp()
1019 (prev_state == QED_ROCE_QP_STATE_RESET)) && in qed_roce_modify_qp()
1024 } else if ((prev_state == QED_ROCE_QP_STATE_RTR) && in qed_roce_modify_qp()
1035 } else if ((prev_state == QED_ROCE_QP_STATE_RTS) && in qed_roce_modify_qp()
1046 } else if ((prev_state == QED_ROCE_QP_STATE_RTS) && in qed_roce_modify_qp()
1052 } else if ((prev_state == QED_ROCE_QP_STATE_SQD) && in qed_roce_modify_qp()
1063 } else if ((prev_state == QED_ROCE_QP_STATE_SQD) && in qed_roce_modify_qp()
/Linux-v5.4/arch/x86/include/asm/
Dmmu_context.h402 static inline void unuse_temporary_mm(temp_mm_state_t prev_state) in unuse_temporary_mm() argument
405 switch_mm_irqs_off(NULL, prev_state.mm, current); in unuse_temporary_mm()
/Linux-v5.4/tools/perf/python/
Dtracepoint.py42 event.prev_state,
/Linux-v5.4/drivers/usb/phy/
Dphy-tahvo.c73 int reg, prev_state; in check_vbus_state() local
113 prev_state = tu->vbus_state; in check_vbus_state()
115 if (prev_state != tu->vbus_state) { in check_vbus_state()

1234