| /kernel/linux/linux-5.10/include/trace/events/ |
| D | alarmtimer.h | 25 TP_PROTO(ktime_t expires, int flag), 27 TP_ARGS(expires, flag), 30 __field(s64, expires) 35 __entry->expires = expires; 39 TP_printk("alarmtimer type:%s expires:%llu", 41 __entry->expires 54 __field(s64, expires) 61 __entry->expires = alarm->node.expires; 65 TP_printk("alarmtimer:%p type:%s expires:%llu now:%llu", 68 __entry->expires,
|
| D | timer.h | 50 * @expires: the timers expiry time 55 unsigned long expires, 58 TP_ARGS(timer, expires, flags), 63 __field( unsigned long, expires ) 71 __entry->expires = expires; 76 TP_printk("timer=%p function=%ps expires=%lu [timeout=%ld] cpu=%u idx=%u flags=%s", 77 __entry->timer, __entry->function, __entry->expires, 78 (long)__entry->expires - __entry->now, 204 __field( s64, expires ) 212 __entry->expires = hrtimer_get_expires(hrtimer); [all …]
|
| D | rtc.h | 167 __field(ktime_t, expires) 173 __entry->expires = timer->node.expires; 177 TP_printk("RTC timer:(%p) expires:%lld period:%lld", 178 __entry->timer, __entry->expires, __entry->period
|
| /kernel/linux/linux-5.10/arch/s390/kernel/ |
| D | vtime.c | 44 static inline void set_vtimer(u64 expires) in set_vtimer() argument 51 : "=Q" (timer) : "Q" (expires)); in set_vtimer() 53 S390_lowcore.last_update_timer = expires; in set_vtimer() 264 if (tmp->expires > timer->expires) { in list_add_sorted() 285 if (timer->expires < elapsed) in virt_timer_expire() 289 timer->expires -= elapsed; in virt_timer_expire() 294 atomic64_set(&virt_timer_current, timer->expires); in virt_timer_expire() 305 timer->expires = timer->interval + in virt_timer_expire() 330 atomic64_set(&virt_timer_current, timer->expires); in internal_add_vtimer() 335 timer->expires += atomic64_read(&virt_timer_elapsed); in internal_add_vtimer() [all …]
|
| /kernel/linux/linux-5.10/net/rose/ |
| D | rose_timer.c | 37 sk->sk_timer.expires = jiffies + 5 * HZ; in rose_start_heartbeat() 39 sk_reset_timer(sk, &sk->sk_timer, sk->sk_timer.expires); in rose_start_heartbeat() 49 rose->timer.expires = jiffies + rose->t1; in rose_start_t1timer() 51 sk_reset_timer(sk, &rose->timer, rose->timer.expires); in rose_start_t1timer() 61 rose->timer.expires = jiffies + rose->t2; in rose_start_t2timer() 63 sk_reset_timer(sk, &rose->timer, rose->timer.expires); in rose_start_t2timer() 73 rose->timer.expires = jiffies + rose->t3; in rose_start_t3timer() 75 sk_reset_timer(sk, &rose->timer, rose->timer.expires); in rose_start_t3timer() 85 rose->timer.expires = jiffies + rose->hb; in rose_start_hbtimer() 87 sk_reset_timer(sk, &rose->timer, rose->timer.expires); in rose_start_hbtimer() [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | hrtimer.h | 102 * @node: timerqueue node, which also manages node.expires, 137 * task is set to NULL, when the timer expires. 245 timer->node.expires = time; in hrtimer_set_expires() 252 timer->node.expires = ktime_add_safe(time, delta); in hrtimer_set_expires_range() 258 timer->node.expires = ktime_add_safe(time, ns_to_ktime(delta)); in hrtimer_set_expires_range_ns() 263 timer->node.expires = tv64; in hrtimer_set_expires_tv64() 269 timer->node.expires = ktime_add_safe(timer->node.expires, time); in hrtimer_add_expires() 275 timer->node.expires = ktime_add_ns(timer->node.expires, ns); in hrtimer_add_expires_ns() 281 return timer->node.expires; in hrtimer_get_expires() 291 return timer->node.expires; in hrtimer_get_expires_tv64() [all …]
|
| /kernel/linux/linux-5.10/kernel/time/ |
| D | alarmtimer.c | 195 * the next future alarm timer expires. 214 hrtimer_set_expires(&alarm->timer, alarm->node.expires); in alarmtimer_fired() 228 return ktime_sub(alarm->node.expires, base->get_ktime()); in alarm_expires_remaining() 244 ktime_t min, now, expires; in alarmtimer_suspend() local 252 expires = freezer_expires; in alarmtimer_suspend() 273 delta = ktime_sub(next->expires, base->get_ktime()); in alarmtimer_suspend() 275 expires = next->expires; in alarmtimer_suspend() 288 trace_alarmtimer_suspend(expires, type); in alarmtimer_suspend() 362 alarm->node.expires = start; in alarm_start() 364 hrtimer_start(&alarm->timer, alarm->node.expires, HRTIMER_MODE_ABS); in alarm_start() [all …]
|
| D | timer.c | 85 * the timeout expires it indicates that normal operation is disturbed, so it 493 static inline unsigned calc_index(unsigned long expires, unsigned lvl, in calc_index() argument 505 expires = (expires + LVL_GRAN(lvl)) >> LVL_SHIFT(lvl); in calc_index() 506 *bucket_expiry = expires << LVL_SHIFT(lvl); in calc_index() 507 return LVL_OFFS(lvl) + (expires & LVL_MASK); in calc_index() 510 static int calc_wheel_index(unsigned long expires, unsigned long clk, in calc_wheel_index() argument 513 unsigned long delta = expires - clk; in calc_wheel_index() 517 idx = calc_index(expires, 0, bucket_expiry); in calc_wheel_index() 519 idx = calc_index(expires, 1, bucket_expiry); in calc_wheel_index() 521 idx = calc_index(expires, 2, bucket_expiry); in calc_wheel_index() [all …]
|
| D | hrtimer.c | 195 ktime_t expires; in hrtimer_check_target() local 197 expires = ktime_sub(hrtimer_get_expires(timer), new_base->offset); in hrtimer_check_target() 198 return expires < new_base->cpu_base->expires_next; in hrtimer_check_target() 508 ktime_t expires; in __hrtimer_next_event_base() local 524 expires = ktime_sub(hrtimer_get_expires(timer), base->offset); in __hrtimer_next_event_base() 525 if (expires < expires_next) { in __hrtimer_next_event_base() 526 expires_next = expires; in __hrtimer_next_event_base() 680 * T1 expires 50ms from now in hrtimer_force_reprogram() 681 * T2 expires 5s from now in hrtimer_force_reprogram() 770 * When a timer is enqueued and expires earlier than the already enqueued [all …]
|
| D | posix-cpu-timers.c | 117 u64 delta, incr, expires = timer->it.cpu.node.expires; in bump_cpu_timer() local 121 return expires; in bump_cpu_timer() 123 if (now < expires) in bump_cpu_timer() 124 return expires; in bump_cpu_timer() 127 delta = now + incr - expires; in bump_cpu_timer() 137 timer->it.cpu.node.expires += incr; in bump_cpu_timer() 141 return timer->it.cpu.node.expires; in bump_cpu_timer() 728 u64 now, expires = cpu_timer_getexpires(ctmr); in posix_cpu_timer_get() local 741 if (!expires) in posix_cpu_timer_get() 752 if (now < expires) { in posix_cpu_timer_get() [all …]
|
| D | itimer.c | 34 * Racy but safe: if the itimer expires after the above in itimer_get_remtime() 55 val = it->expires; in get_cpu_itimer() 180 oval = it->expires; in set_cpu_itimer() 187 it->expires = nval; in set_cpu_itimer() 211 ktime_t expires; in do_setitimer() local 229 expires = timespec64_to_ktime(value->it_value); in do_setitimer() 230 if (expires != 0) { in do_setitimer() 233 hrtimer_start(timer, expires, HRTIMER_MODE_REL); in do_setitimer()
|
| /kernel/linux/linux-5.10/arch/x86/platform/uv/ |
| D | uv_time.c | 55 u64 expires; /* next timer expiration for this cpu */ member 93 static int uv_setup_intr(int cpu, u64 expires) in uv_setup_intr() argument 112 uv_write_global_mmr64(pnode, UVH_INT_CMPB, expires); in uv_setup_intr() 114 if (uv_read_rtc(NULL) <= expires) in uv_setup_intr() 164 head->cpu[bcpu].expires = ULLONG_MAX; in uv_rtc_allocate_timers() 178 u64 exp = head->cpu[c].expires; in uv_rtc_find_next_timer() 201 static int uv_rtc_set_timer(int cpu, u64 expires) in uv_rtc_set_timer() argument 207 u64 *t = &head->cpu[bcpu].expires; in uv_rtc_set_timer() 214 *t = expires; in uv_rtc_set_timer() 218 expires < head->cpu[next_cpu].expires) { in uv_rtc_set_timer() [all …]
|
| /kernel/linux/linux-5.10/drivers/rtc/ |
| D | rtc-test.c | 29 alarm = (rtd->alarm.expires - jiffies) / HZ; in test_rtc_read_alarm() 42 u64 expires; in test_rtc_set_alarm() local 49 expires = jiffies + timeout * HZ; in test_rtc_set_alarm() 50 if (expires > U32_MAX) in test_rtc_set_alarm() 51 expires = U32_MAX; in test_rtc_set_alarm() 54 rtd->alarm.expires = expires; in test_rtc_set_alarm() 140 rtd->alarm.expires = 0; in test_probe()
|
| D | interface.c | 400 alarm->time = rtc_ktime_to_tm(rtc->aie_timer.node.expires); in rtc_read_alarm() 471 rtc->aie_timer.node.expires = rtc_tm_to_ktime(alarm->time); in rtc_set_alarm() 500 rtc->aie_timer.node.expires = rtc_tm_to_ktime(alarm->time); in rtc_initialize_alarm() 505 rtc->aie_timer.node.expires)) { in rtc_initialize_alarm() 578 rtc->uie_rtctimer.node.expires = ktime_add(now, onesec); in rtc_update_irq_enable() 637 * This functions is called when the aie_timer expires. 648 * This functions is called when the uie_timer expires. 661 * hrtimer expires. 817 if (next->expires >= now) in rtc_timer_enqueue() 824 if (!next || ktime_before(timer->node.expires, next->expires)) { in rtc_timer_enqueue() [all …]
|
| /kernel/linux/linux-5.10/net/ipv6/ |
| D | ip6_flowlabel.c | 133 if (time_after(ttd, fl->expires)) in fl_release() 134 fl->expires = ttd; in fl_release() 135 ttd = fl->expires; in fl_release() 142 time_after(ip6_fl_gc_timer.expires, ttd)) in fl_release() 165 if (time_after(ttd, fl->expires)) in ip6_fl_gc() 166 fl->expires = ttd; in ip6_fl_gc() 167 ttd = fl->expires; in ip6_fl_gc() 350 static int fl6_renew(struct ip6_flowlabel *fl, unsigned long linger, unsigned long expires) in fl6_renew() argument 355 expires = check_linger(expires); in fl6_renew() 356 if (!expires) in fl6_renew() [all …]
|
| /kernel/linux/linux-5.10/drivers/md/ |
| D | dm-delay.c | 46 unsigned long expires; member 58 static void queue_timeout(struct delay_c *dc, unsigned long expires) in queue_timeout() argument 62 if (!timer_pending(&dc->delay_timer) || expires < dc->delay_timer.expires) in queue_timeout() 63 mod_timer(&dc->delay_timer, expires); in queue_timeout() 89 if (flush_all || time_after_eq(jiffies, delayed->expires)) { in flush_delayed_bios() 100 next_expires = delayed->expires; in flush_delayed_bios() 102 next_expires = min(next_expires, delayed->expires); in flush_delayed_bios() 246 unsigned long expires = 0; in delay_bio() local 254 delayed->expires = expires = jiffies + msecs_to_jiffies(c->delay); in delay_bio() 261 queue_timeout(dc, expires); in delay_bio()
|
| /kernel/linux/linux-5.10/drivers/watchdog/ |
| D | xen_wdt.c | 48 time64_t expires; in xen_wdt_start() local 51 expires = set_timeout(wdd); in xen_wdt_start() 58 wdt_expires = expires; in xen_wdt_start() 81 time64_t expires; in xen_wdt_kick() local 84 expires = set_timeout(wdd); in xen_wdt_kick() 90 wdt_expires = expires; in xen_wdt_kick()
|
| /kernel/linux/linux-5.10/arch/s390/include/asm/ |
| D | vtimer.h | 16 u64 expires; member 25 extern int mod_virt_timer(struct vtimer_list *timer, u64 expires); 26 extern int mod_virt_timer_periodic(struct vtimer_list *timer, u64 expires);
|
| /kernel/linux/linux-5.10/include/net/ |
| D | pkt_sched.h | 77 void qdisc_watchdog_schedule_range_ns(struct qdisc_watchdog *wd, u64 expires, 81 u64 expires) in qdisc_watchdog_schedule_ns() argument 83 return qdisc_watchdog_schedule_range_ns(wd, expires, 0ULL); in qdisc_watchdog_schedule_ns() 87 psched_time_t expires) in qdisc_watchdog_schedule() argument 89 qdisc_watchdog_schedule_ns(wd, PSCHED_TICKS2NS(expires)); in qdisc_watchdog_schedule()
|
| D | dst.h | 28 unsigned long expires; member 431 unsigned long expires = jiffies + timeout; in dst_set_expires() local 433 if (expires == 0) in dst_set_expires() 434 expires = 1; in dst_set_expires() 436 if (dst->expires == 0 || time_before(expires, dst->expires)) in dst_set_expires() 437 dst->expires = expires; in dst_set_expires()
|
| /kernel/liteos_a/kernel/include/ |
| D | los_queue.h | 123 * Queue error code: The time set for waiting to processing the queue expires. 144 * processing the queue expires. 275 * when the time for waiting to processing the queue expires. 316 * time for waiting to processing the queue expires. 415 * waiting to processing the queue expires. 418 * waiting to processing the queue expires. 421 …al #LOS_ERRNO_QUEUE_TIMEOUT The time set for waiting to processing the queue expires. 463 * for waiting to processing the queue expires. 470 …al #LOS_ERRNO_QUEUE_TIMEOUT The time set for waiting to processing the queue expires. 515 * waiting to processing the queue expires. [all …]
|
| /kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/ |
| D | mcu.c | 31 unsigned long expires) in mt76_mcu_get_response() argument 35 if (!time_is_after_jiffies(expires)) in mt76_mcu_get_response() 38 timeout = expires - jiffies; in mt76_mcu_get_response()
|
| /kernel/linux/linux-5.10/drivers/s390/cio/ |
| D | device_ops.c | 171 * @expires: timeout value in jiffies 177 * completed during the time specified by @expires. If a timeout occurs, the 193 unsigned long flags, int expires) in ccw_device_start_timeout_key() argument 233 if (expires) in ccw_device_start_timeout_key() 234 ccw_device_set_timeout(cdev, expires); in ccw_device_start_timeout_key() 323 * @expires: timeout value in jiffies 329 * completed during the time specified by @expires. If a timeout occurs, the 345 unsigned long flags, int expires) in ccw_device_start_timeout() argument 349 expires); in ccw_device_start_timeout() 534 * @expires: time span in jiffies after which to abort request [all …]
|
| /kernel/liteos_m/kernel/include/ |
| D | los_queue.h | 123 * Queue error code: The time set for waiting to processing the queue expires. 144 * processing the queue expires. 275 * when the time for waiting to processing the queue expires. 316 * time for waiting to processing the queue expires. 472 * waiting to processing the queue expires. 475 * waiting to processing the queue expires. 478 …al #LOS_ERRNO_QUEUE_TIMEOUT The time set for waiting to processing the queue expires. 519 * for waiting to processing the queue expires. 526 … #LOS_ERRNO_QUEUE_TIMEOUT The time set for waiting to processing the queue expires. 569 * waiting to processing the queue expires. [all …]
|
| /kernel/linux/linux-5.10/scripts/gdb/linux/ |
| D | timerlist.py | 35 expires = timer['node']['expires'] 40 text += " # expires at {}-{} nsecs [in {} to {} nsecs]\n".format( 41 softexpires, expires, softexpires - now, expires - now)
|