Home
last modified time | relevance | path

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

/openbmc/linux/arch/arm64/kvm/
H A Dtrace_arm.h292 TP_PROTO(struct arch_timer_context *ctx, bool should_fire),
293 TP_ARGS(ctx, should_fire),
297 __field( bool, should_fire )
302 __entry->should_fire = should_fire;
306 __entry->timer_idx, __entry->should_fire)
H A Darch_timer.c466 bool should_fire = kvm_timer_should_fire(ctx); in timer_emulate() local
468 trace_kvm_timer_emulate(ctx, should_fire); in timer_emulate()
470 if (should_fire != ctx->irq.level) { in timer_emulate()
471 kvm_timer_update_irq(ctx->vcpu, should_fire, ctx); in timer_emulate()
480 if (should_fire || !kvm_timer_irq_can_fire(ctx)) in timer_emulate()