Home
last modified time | relevance | path

Searched refs:hrtimer (Results 1 – 25 of 254) sorted by last modified time

1234567891011

/linux/net/xfrm/
H A Dxfrm_state.c563 static enum hrtimer_restart xfrm_timer_handler(struct hrtimer *me) in xfrm_timer_handler()
/linux/net/sched/
H A Dsch_taprio.c101 struct hrtimer advance_timer;
912 static enum hrtimer_restart advance_sched(struct hrtimer *timer) in advance_sched()
H A Dsch_api.c608 static enum hrtimer_restart qdisc_watchdog(struct hrtimer *timer) in qdisc_watchdog()
/linux/net/ipv4/
H A Dtcp_output.c1235 enum hrtimer_restart tcp_pace_kick(struct hrtimer *timer) in tcp_pace_kick()
H A Dtcp_timer.c831 static enum hrtimer_restart tcp_compressed_ack_kick(struct hrtimer *timer) in tcp_compressed_ack_kick()
/linux/net/core/
H A Ddev.c6484 static enum hrtimer_restart napi_watchdog(struct hrtimer *timer) in napi_watchdog()
/linux/kernel/
H A Dwatchdog.c309 static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
667 static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer) in watchdog_timer_fn() argument
689 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period)); in watchdog_timer_fn()
771 struct hrtimer *hrtimer = this_cpu_ptr(&watchdog_hrtimer); in watchdog_enable() local
783 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD); in watchdog_enable()
784 hrtimer->function = watchdog_timer_fn; in watchdog_enable()
785 hrtimer_start(hrtimer, ns_to_ktime(sample_period), in watchdog_enable()
797 struct hrtimer *hrtimer = this_cpu_ptr(&watchdog_hrtimer); in watchdog_disable() local
807 hrtimer_cancel(hrtimer); in watchdog_disable()
/linux/lib/
H A DKconfig.debug1108 With the buddy detector, each CPU uses its softlockup hrtimer
1109 to check that the next CPU is processing hrtimer interrupts by
1140 # Both the "perf" and "buddy" hardlockup detectors count hrtimer
/linux/kernel/time/
H A Dhrtimer.c352 return ((struct hrtimer *) addr)->function; in hrtimer_debug_hint()
361 struct hrtimer *timer = addr; in hrtimer_fixup_init()
395 struct hrtimer *timer = addr; in hrtimer_fixup_free()
506 const struct hrtimer *exclude, in __hrtimer_next_event_base()
515 struct hrtimer *timer; in __hrtimer_next_event_base()
575 struct hrtimer *next_timer = NULL; in __hrtimer_get_next_event()
654 struct hrtimer *next_timer, in __hrtimer_reprogram()
1440 int hrtimer_cancel(struct hrtimer *timer) in hrtimer_cancel()
1646 struct hrtimer *timer, ktime_t *now, in __run_hrtimer()
1732 struct hrtimer *timer; in __hrtimer_run_queues()
[all …]
/linux/kernel/bpf/
H A Dhelpers.c1109 struct hrtimer timer;
1139 static enum hrtimer_restart bpf_timer_cb(struct hrtimer *hrtimer) in bpf_timer_cb() argument
1141 struct bpf_hrtimer *t = container_of(hrtimer, struct bpf_hrtimer, timer); in bpf_timer_cb()
/linux/include/net/
H A Dtcp.h2533 enum hrtimer_restart tcp_pace_kick(struct hrtimer *timer);
H A Dxfrm.h267 struct hrtimer mtimer;
/linux/include/linux/
H A Dtcp.h406 struct hrtimer pacing_timer;
407 struct hrtimer compressed_ack_timer;
H A Dnetdevice.h372 struct hrtimer timer;
H A Dintel_rapl.h177 struct hrtimer hrtimer; member
/linux/drivers/scsi/lpfc/
H A Dlpfc_init.c5677 lpfc_cmf_stats_timer(struct hrtimer *timer) in lpfc_cmf_stats_timer()
5948 lpfc_cmf_timer(struct hrtimer *timer) in lpfc_cmf_timer()
H A Dlpfc.h1517 struct hrtimer cmf_timer;
1518 struct hrtimer cmf_stats_timer; /* 1 minute stats timer */
/linux/drivers/powercap/
H A Dintel_rapl_common.c1640 hrtimer_start(&data->hrtimer, data->timer_interval, in __rapl_pmu_event_start()
1704 hrtimer_cancel(&data->hrtimer); in rapl_pmu_event_stop()
1818 static enum hrtimer_restart rapl_hrtimer_handle(struct hrtimer *hrtimer) in rapl_hrtimer_handle() argument
1821 container_of(hrtimer, struct rapl_package_pmu_data, hrtimer); in rapl_hrtimer_handle()
1835 hrtimer_forward_now(hrtimer, data->timer_interval); in rapl_hrtimer_handle()
2064 hrtimer_init(&data->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); in rapl_package_add_pmu()
2065 data->hrtimer.function = rapl_hrtimer_handle; in rapl_package_add_pmu()
/linux/drivers/perf/
H A Dthunderx2_pmu.c107 struct hrtimer hrtimer; member
110 enum hrtimer_restart (*hrtimer_callback)(struct hrtimer *cb);
623 hrtimer_start(&tx2_pmu->hrtimer, in tx2_uncore_event_start()
690 hrtimer_cancel(&tx2_pmu->hrtimer); in tx2_uncore_event_del()
698 static enum hrtimer_restart tx2_hrtimer_callback(struct hrtimer *timer) in tx2_hrtimer_callback()
703 tx2_pmu = container_of(timer, struct tx2_uncore_pmu, hrtimer); in tx2_hrtimer_callback()
755 hrtimer_init(&tx2_pmu->hrtimer, in tx2_uncore_pmu_add_dev()
757 tx2_pmu->hrtimer.function = tx2_pmu->hrtimer_callback; in tx2_uncore_pmu_add_dev()
941 hrtimer_cancel(&tx2_pmu->hrtimer); in tx2_uncore_pmu_offline_cpu()
H A Darm-ccn.c161 struct hrtimer hrtimer; member
1109 hrtimer_start(&ccn->dt.hrtimer, arm_ccn_pmu_timer_period(), in arm_ccn_pmu_event_add()
1131 hrtimer_cancel(&ccn->dt.hrtimer); in arm_ccn_pmu_event_del()
1185 static enum hrtimer_restart arm_ccn_pmu_timer_handler(struct hrtimer *hrtimer) in arm_ccn_pmu_timer_handler() argument
1187 struct arm_ccn_dt *dt = container_of(hrtimer, struct arm_ccn_dt, in arm_ccn_pmu_timer_handler()
1188 hrtimer); in arm_ccn_pmu_timer_handler()
1195 hrtimer_forward_now(hrtimer, arm_ccn_pmu_timer_period()); in arm_ccn_pmu_timer_handler()
1285 hrtimer_init(&ccn->dt.hrtimer, CLOCK_MONOTONIC, in arm_ccn_pmu_init()
1287 ccn->dt.hrtimer.function = arm_ccn_pmu_timer_handler; in arm_ccn_pmu_init()
/linux/drivers/net/wireless/virtual/
H A Dmac80211_hwsim.c654 struct hrtimer beacon_timer;
2323 mac80211_hwsim_beacon(struct hrtimer *timer) in mac80211_hwsim_beacon()
/linux/drivers/net/usb/
H A Dcdc_ncm.c67 static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *hr_timer);
1487 static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *timer) in cdc_ncm_tx_timer_cb()
/linux/drivers/net/ethernet/ti/icssg/
H A Dicssg_common.c194 static enum hrtimer_restart emac_tx_timer_callback(struct hrtimer *timer) in emac_tx_timer_callback()
H A Dicssg_prueth.c246 static enum hrtimer_restart emac_rx_timer_callback(struct hrtimer *timer) in emac_rx_timer_callback()
H A Dicssg_prueth.h111 struct hrtimer tx_hrtimer;
193 struct hrtimer rx_hrtimer;

1234567891011