Symbol: hrt
arch/arm64/kvm/arch_timer.c
188
static void soft_timer_start(struct hrtimer *hrt, u64 ns)
arch/arm64/kvm/arch_timer.c
190
hrtimer_start(hrt, ktime_add_ns(ktime_get(), ns),
arch/arm64/kvm/arch_timer.c
194
static void soft_timer_cancel(struct hrtimer *hrt)
arch/arm64/kvm/arch_timer.c
196
hrtimer_cancel(hrt);
arch/arm64/kvm/arch_timer.c
305
static enum hrtimer_restart kvm_bg_timer_expire(struct hrtimer *hrt)
arch/arm64/kvm/arch_timer.c
311
timer = container_of(hrt, struct arch_timer_cpu, bg_timer);
arch/arm64/kvm/arch_timer.c
321
hrtimer_forward_now(hrt, ns_to_ktime(ns));
arch/arm64/kvm/arch_timer.c
329
static enum hrtimer_restart kvm_hrtimer_expire(struct hrtimer *hrt)
arch/arm64/kvm/arch_timer.c
335
ctx = container_of(hrt, struct arch_timer_context, hrtimer);
arch/arm64/kvm/arch_timer.c
347
hrtimer_forward_now(hrt, ns_to_ktime(ns));
arch/riscv/include/asm/kvm_vcpu_timer.h
30
struct hrtimer hrt;
arch/riscv/kvm/vcpu_timer.c
113
struct kvm_vcpu_timer *t = container_of(h, struct kvm_vcpu_timer, hrt);
arch/riscv/kvm/vcpu_timer.c
119
hrtimer_forward_now(&t->hrt, ktime_set(0, delta_ns));
arch/riscv/kvm/vcpu_timer.c
151
hrtimer_start(&t->hrt, ktime_set(0, delta_ns), HRTIMER_MODE_REL);
arch/riscv/kvm/vcpu_timer.c
258
hrtimer_setup(&t->hrt, kvm_riscv_vcpu_vstimer_expired, CLOCK_MONOTONIC,
arch/riscv/kvm/vcpu_timer.c
263
hrtimer_setup(&t->hrt, kvm_riscv_vcpu_hrtimer_expired, CLOCK_MONOTONIC,
arch/riscv/kvm/vcpu_timer.c
45
struct kvm_vcpu_timer *t = container_of(h, struct kvm_vcpu_timer, hrt);
arch/riscv/kvm/vcpu_timer.c
51
hrtimer_forward_now(&t->hrt, ktime_set(0, delta_ns));
arch/riscv/kvm/vcpu_timer.c
66
hrtimer_cancel(&t->hrt);
arch/riscv/kvm/vcpu_timer.c
97
hrtimer_start(&t->hrt, ktime_set(0, delta_ns), HRTIMER_MODE_REL);
drivers/ata/pata_octeon_cf.c
705
static enum hrtimer_restart octeon_cf_delayed_finish(struct hrtimer *hrt)
drivers/ata/pata_octeon_cf.c
707
struct octeon_cf_port *cf_port = container_of(hrt,
drivers/ata/pata_octeon_cf.c
730
hrtimer_forward_now(hrt,
drivers/pci/hotplug/cpqphp.h
184
SIG0 = offsetof(struct hrt, sig0),
drivers/pci/hotplug/cpqphp.h
185
SIG1 = offsetof(struct hrt, sig1),
drivers/pci/hotplug/cpqphp.h
186
SIG2 = offsetof(struct hrt, sig2),
drivers/pci/hotplug/cpqphp.h
187
SIG3 = offsetof(struct hrt, sig3),
drivers/pci/hotplug/cpqphp.h
188
UNUSED_IRQ = offsetof(struct hrt, unused_IRQ),
drivers/pci/hotplug/cpqphp.h
189
PCIIRQ = offsetof(struct hrt, PCIIRQ),
drivers/pci/hotplug/cpqphp.h
190
NUMBER_OF_ENTRIES = offsetof(struct hrt, number_of_entries),
drivers/pci/hotplug/cpqphp.h
191
REVISION = offsetof(struct hrt, revision),
drivers/pci/hotplug/cpqphp.h
192
HRT_RESERVED1 = offsetof(struct hrt, reserved1),
drivers/pci/hotplug/cpqphp.h
193
HRT_RESERVED2 = offsetof(struct hrt, reserved2),
drivers/pci/hotplug/cpqphp_pci.c
1220
one_slot = rom_resource_table + sizeof(struct hrt);
drivers/pci/hotplug/cpqphp_pci.c
49
endp = (end - sizeof(struct hrt) + 1);
drivers/scsi/scsi_debug.c
460
struct hrtimer hrt;
drivers/scsi/scsi_debug.c
6419
hrt);
drivers/scsi/scsi_debug.c
6727
int res = hrtimer_try_to_cancel(&sd_dp->hrt);
drivers/scsi/scsi_debug.c
7290
hrtimer_start(&sd_dp->hrt, kt, HRTIMER_MODE_REL_PINNED);
drivers/scsi/scsi_debug.c
9509
hrtimer_setup(&sd_dp->hrt, sdebug_q_cmd_hrt_complete, CLOCK_MONOTONIC,
drivers/tty/serial/8250/8250_bcm7271.c
1059
hrtimer_setup(&priv->hrt, brcmuart_hrtimer_func, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
drivers/tty/serial/8250/8250_bcm7271.c
1126
hrtimer_cancel(&priv->hrt);
drivers/tty/serial/8250/8250_bcm7271.c
214
struct hrtimer hrt;
drivers/tty/serial/8250/8250_bcm7271.c
824
hrtimer_start(&priv->hrt, priv->char_wait,
drivers/tty/serial/8250/8250_bcm7271.c
841
struct brcmuart_priv *priv = container_of(t, struct brcmuart_priv, hrt);
drivers/tty/serial/8250/8250_port.c
1334
static void start_hrtimer_ms(struct hrtimer *hrt, unsigned long msec)
drivers/tty/serial/8250/8250_port.c
1336
hrtimer_start(hrt, ms_to_ktime(msec), HRTIMER_MODE_REL);
drivers/tty/serial/imx.c
336
static void start_hrtimer_ms(struct hrtimer *hrt, unsigned long msec)
drivers/tty/serial/imx.c
338
hrtimer_start(hrt, ms_to_ktime(msec), HRTIMER_MODE_REL);
drivers/tty/serial/sh-sci.c
1502
static void start_hrtimer_us(struct hrtimer *hrt, unsigned long usec)
drivers/tty/serial/sh-sci.c
1508
hrtimer_start(hrt, t, HRTIMER_MODE_REL);
kernel/time/sched_clock.c
169
static enum hrtimer_restart sched_clock_poll(struct hrtimer *hrt)
kernel/time/sched_clock.c
172
hrtimer_forward_now(hrt, cd.wrap_kt);
lib/test_objpool.c
156
static enum hrtimer_restart ot_hrtimer_handler(struct hrtimer *hrt)
lib/test_objpool.c
158
struct ot_item *item = container_of(hrt, struct ot_item, hrtimer);
lib/test_objpool.c
167
hrtimer_forward_now(hrt, item->hrtcycle);
lib/test_objpool.c
187
struct hrtimer *hrt = &item->hrtimer;
lib/test_objpool.c
193
hrtimer_setup(hrt, ot_hrtimer_handler, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
net/can/bcm.c
433
static bool bcm_tx_set_expiry(struct bcm_op *op, struct hrtimer *hrt)
net/can/bcm.c
444
hrtimer_set_expires(hrt, ktime_add(ktime_get(), ival));
sound/core/hrtimer.c
110
hrtimer_try_to_cancel(&stime->hrt);
sound/core/hrtimer.c
27
struct hrtimer hrt;
sound/core/hrtimer.c
31
static enum hrtimer_restart snd_hrtimer_callback(struct hrtimer *hrt)
sound/core/hrtimer.c
33
struct snd_hrtimer *stime = container_of(hrt, struct snd_hrtimer, hrt);
sound/core/hrtimer.c
47
delta = ktime_sub(hrtimer_cb_get_time(hrt), hrtimer_get_expires(hrt));
sound/core/hrtimer.c
55
hrtimer_add_expires_ns(hrt, t->sticks * resolution);
sound/core/hrtimer.c
71
hrtimer_setup(&stime->hrt, snd_hrtimer_callback, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
sound/core/hrtimer.c
86
hrtimer_cancel(&stime->hrt);
sound/core/hrtimer.c
99
hrtimer_start(&stime->hrt, ns_to_ktime(t->sticks * resolution),
sound/soc/fsl/imx-pcm-fiq.c
122
hrtimer_start(&iprtd->hrt, ns_to_ktime(iprtd->poll_time_ns),
sound/soc/fsl/imx-pcm-fiq.c
188
hrtimer_setup(&iprtd->hrt, snd_hrtimer_callback, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
sound/soc/fsl/imx-pcm-fiq.c
207
hrtimer_cancel(&iprtd->hrt);
sound/soc/fsl/imx-pcm-fiq.c
37
struct hrtimer hrt;
sound/soc/fsl/imx-pcm-fiq.c
44
static enum hrtimer_restart snd_hrtimer_callback(struct hrtimer *hrt)
sound/soc/fsl/imx-pcm-fiq.c
47
container_of(hrt, struct imx_pcm_runtime_data, hrt);
sound/soc/fsl/imx-pcm-fiq.c
63
hrtimer_forward_now(hrt, ns_to_ktime(iprtd->poll_time_ns));