Home
last modified time | relevance | path

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

/linux/arch/arm64/kvm/
H A Dtrace_arm.h317 TP_PROTO(struct arch_timer_context *ctx, bool should_fire),
318 TP_ARGS(ctx, should_fire),
322 __field( bool, should_fire )
327 __entry->should_fire = should_fire;
331 __entry->timer_idx, __entry->should_fire)
H A Darch_timer.c459 bool should_fire = kvm_timer_should_fire(ctx); in timer_emulate() local
461 trace_kvm_timer_emulate(ctx, should_fire); in timer_emulate()
463 if (should_fire != ctx->irq.level) in timer_emulate()
464 kvm_timer_update_irq(timer_context_to_vcpu(ctx), should_fire, ctx); in timer_emulate()
466 kvm_timer_update_status(ctx, should_fire); in timer_emulate()
473 if (should_fire || !kvm_timer_irq_can_fire(ctx)) in timer_emulate()