/linux-4.1.27/include/linux/ |
D | ktime.h | 41 typedef union ktime ktime_t; /* Kill this */ typedef 50 static inline ktime_t ktime_set(const s64 secs, const unsigned long nsecs) in ktime_set() 53 return (ktime_t){ .tv64 = KTIME_MAX }; in ktime_set() 55 return (ktime_t) { .tv64 = secs * NSEC_PER_SEC + (s64)nsecs }; in ktime_set() 60 ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; }) 64 ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; }) 71 ({ (ktime_t){ .tv64 = (kt).tv64 + (nsval) }; }) 78 ({ (ktime_t){ .tv64 = (kt).tv64 - (nsval) }; }) 81 static inline ktime_t timespec_to_ktime(struct timespec ts) in timespec_to_ktime() 87 static inline ktime_t timespec64_to_ktime(struct timespec64 ts) in timespec64_to_ktime() [all …]
|
D | hrtimer.h | 110 ktime_t _softexpires; 150 ktime_t resolution; 151 ktime_t (*get_time)(void); 152 ktime_t softirq_time; 153 ktime_t offset; 188 ktime_t expires_next; 195 ktime_t max_hang_time; 200 static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time) in hrtimer_set_expires() 206 static inline void hrtimer_set_expires_range(struct hrtimer *timer, ktime_t time, ktime_t delta) in hrtimer_set_expires_range() 212 static inline void hrtimer_set_expires_range_ns(struct hrtimer *timer, ktime_t time, unsigned long … in hrtimer_set_expires_range_ns() [all …]
|
D | alarmtimer.h | 38 enum alarmtimer_restart (*function)(struct alarm *, ktime_t now); 45 enum alarmtimer_restart (*function)(struct alarm *, ktime_t)); 46 int alarm_start(struct alarm *alarm, ktime_t start); 47 int alarm_start_relative(struct alarm *alarm, ktime_t start); 52 u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval); 53 u64 alarm_forward_now(struct alarm *alarm, ktime_t interval); 54 ktime_t alarm_expires_remaining(const struct alarm *alarm);
|
D | timekeeping.h | 162 extern ktime_t ktime_get(void); 163 extern ktime_t ktime_get_with_offset(enum tk_offsets offs); 164 extern ktime_t ktime_mono_to_any(ktime_t tmono, enum tk_offsets offs); 165 extern ktime_t ktime_get_raw(void); 170 static inline ktime_t ktime_get_real(void) in ktime_get_real() 181 static inline ktime_t ktime_get_boottime(void) in ktime_get_boottime() 189 static inline ktime_t ktime_get_clocktai(void) in ktime_get_clocktai() 197 static inline ktime_t ktime_mono_to_real(ktime_t mono) in ktime_mono_to_real()
|
D | timekeeper_internal.h | 38 ktime_t base; 84 ktime_t offs_real; 85 ktime_t offs_boot; 86 ktime_t offs_tai;
|
D | pm_wakeup.h | 52 ktime_t total_time; 53 ktime_t max_time; 54 ktime_t last_time; 55 ktime_t start_prevent_time; 56 ktime_t prevent_sleep_time;
|
D | rtc.h | 24 ktime_t rtc_tm_to_ktime(struct rtc_time tm); 25 struct rtc_time rtc_ktime_to_tm(ktime_t kt); 96 ktime_t period; 203 ktime_t expires, ktime_t period);
|
D | tick.h | 98 extern ktime_t tick_nohz_get_sleep_length(void); 106 static inline ktime_t tick_nohz_get_sleep_length(void) in tick_nohz_get_sleep_length() 108 ktime_t len = { .tv64 = NSEC_PER_SEC/HZ }; in tick_nohz_get_sleep_length()
|
D | clockchips.h | 109 int (*set_next_ktime)(ktime_t expires, struct clock_event_device *); 110 ktime_t next_event;
|
D | posix-timers.h | 82 ktime_t interval; 93 ktime_t interval;
|
D | iopoll.h | 45 ktime_t timeout = ktime_add_us(ktime_get(), timeout_us); \ 80 ktime_t timeout = ktime_add_us(ktime_get(), timeout_us); \
|
D | timerqueue.h | 10 ktime_t expires;
|
D | freezer.h | 233 static inline int freezable_schedule_hrtimeout_range(ktime_t *expires, in freezable_schedule_hrtimeout_range()
|
D | poll.h | 98 ktime_t *expires, unsigned long slack);
|
D | fence.h | 80 ktime_t timestamp;
|
D | skbuff.h | 260 ktime_t hwtstamp; 528 ktime_t tstamp; 2801 static inline ktime_t skb_get_ktime(const struct sk_buff *skb) in skb_get_ktime() 2832 static inline ktime_t net_timedelta(ktime_t t) in net_timedelta() 2837 static inline ktime_t net_invalid_timestamp(void) in net_invalid_timestamp()
|
D | interrupt.h | 595 int tasklet_hrtimer_start(struct tasklet_hrtimer *ttimer, ktime_t time, in tasklet_hrtimer_start()
|
D | jbd.h | 497 ktime_t t_start_time;
|
D | jbd2.h | 633 ktime_t t_start_time;
|
D | perf_event.h | 566 ktime_t hrtimer_interval;
|
D | sched.h | 658 ktime_t it_real_incr;
|
/linux-4.1.27/fs/ocfs2/cluster/ |
D | tcp_internal.h | 175 ktime_t sc_tv_timer; 176 ktime_t sc_tv_data_ready; 177 ktime_t sc_tv_advance_start; 178 ktime_t sc_tv_advance_stop; 179 ktime_t sc_tv_func_start; 180 ktime_t sc_tv_func_stop; 183 ktime_t sc_tv_acquiry_total; 184 ktime_t sc_tv_send_total; 185 ktime_t sc_tv_status_total; 188 ktime_t sc_tv_process_total; [all …]
|
D | netdebug.c | 133 ktime_t now; in nst_seq_show()
|
D | tcp.c | 230 static ktime_t o2net_get_func_run_time(struct o2net_sock_container *sc) in o2net_get_func_run_time()
|
/linux-4.1.27/kernel/time/ |
D | timekeeping.h | 6 extern ktime_t ktime_get_update_offsets_tick(ktime_t *offs_real, 7 ktime_t *offs_boot, 8 ktime_t *offs_tai); 9 extern ktime_t ktime_get_update_offsets_now(ktime_t *offs_real, 10 ktime_t *offs_boot, 11 ktime_t *offs_tai);
|
D | tick-sched.h | 46 ktime_t last_tick; 53 ktime_t idle_entrytime; 54 ktime_t idle_waketime; 55 ktime_t idle_exittime; 56 ktime_t idle_sleeptime; 57 ktime_t iowait_sleeptime; 58 ktime_t sleep_length; 61 ktime_t idle_expires;
|
D | tick-sched.c | 42 static ktime_t last_jiffies_update; 52 static void tick_do_update_jiffies64(ktime_t now) in tick_do_update_jiffies64() 55 ktime_t delta; in tick_do_update_jiffies64() 98 static ktime_t tick_init_jiffy_update(void) in tick_init_jiffy_update() 100 ktime_t period; in tick_init_jiffy_update() 112 static void tick_sched_do_timer(ktime_t now) in tick_sched_do_timer() 200 static void tick_nohz_restart_sched_tick(struct tick_sched *ts, ktime_t now); 434 static void tick_nohz_update_jiffies(ktime_t now) in tick_nohz_update_jiffies() 451 update_ts_time_stats(int cpu, struct tick_sched *ts, ktime_t now, u64 *last_update_time) in update_ts_time_stats() 453 ktime_t delta; in update_ts_time_stats() [all …]
|
D | alarmtimer.c | 40 ktime_t (*gettime)(void); 45 static ktime_t freezer_delta; 202 ktime_t alarm_expires_remaining(const struct alarm *alarm) in alarm_expires_remaining() 223 ktime_t min, now; in alarmtimer_suspend() 243 ktime_t delta; in alarmtimer_suspend() 281 static void alarmtimer_freezerset(ktime_t absexp, enum alarmtimer_type type) in alarmtimer_freezerset() 283 ktime_t delta; in alarmtimer_freezerset() 303 enum alarmtimer_restart (*function)(struct alarm *, ktime_t)) in alarm_init() argument 320 int alarm_start(struct alarm *alarm, ktime_t start) in alarm_start() 341 int alarm_start_relative(struct alarm *alarm, ktime_t start) in alarm_start_relative() [all …]
|
D | tick-internal.h | 16 extern ktime_t tick_next_period; 17 extern ktime_t tick_period; 45 ktime_t expires, bool force); 92 ktime_t nextevt); 93 extern int tick_program_event(ktime_t expires, int force); 106 ktime_t nextevt) { BUG(); } in tick_setup_oneshot() 108 static inline int tick_program_event(ktime_t expires, int force) { return 0; } in tick_program_event()
|
D | hrtimer.c | 119 ktime_t xtim, mono, boot, tai; in hrtimer_get_softirq_time() 120 ktime_t off_real, off_boot, off_tai; in hrtimer_get_softirq_time() 181 ktime_t expires; in hrtimer_check_target() 269 s64 __ktime_divns(const ktime_t kt, s64 div) in __ktime_divns() 293 ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs) in ktime_add_safe() 295 ktime_t res = ktime_add(lhs, rhs); in ktime_add_safe() 446 static ktime_t __hrtimer_get_next_event(struct hrtimer_cpu_base *cpu_base) in __hrtimer_get_next_event() 449 ktime_t expires, expires_next = { .tv64 = KTIME_MAX }; in __hrtimer_get_next_event() 524 ktime_t expires_next = __hrtimer_get_next_event(cpu_base); in hrtimer_force_reprogram() 570 ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset); in hrtimer_reprogram() [all …]
|
D | timekeeping.c | 114 static inline void tk_update_sleep_time(struct timekeeper *tk, ktime_t delta) in tk_update_sleep_time() 681 ktime_t ktime_get(void) in ktime_get() 685 ktime_t base; in ktime_get() 701 static ktime_t *offsets[TK_OFFS_MAX] = { 707 ktime_t ktime_get_with_offset(enum tk_offsets offs) in ktime_get_with_offset() 711 ktime_t base, *offset = offsets[offs]; in ktime_get_with_offset() 733 ktime_t ktime_mono_to_any(ktime_t tmono, enum tk_offsets offs) in ktime_mono_to_any() 735 ktime_t *offset = offsets[offs]; in ktime_mono_to_any() 737 ktime_t tconv; in ktime_mono_to_any() 751 ktime_t ktime_get_raw(void) in ktime_get_raw() [all …]
|
D | tick-common.c | 34 ktime_t tick_next_period; 35 ktime_t tick_period; 101 ktime_t next = dev->next_event; in tick_handle_periodic() 146 ktime_t next; in tick_setup_periodic() 170 ktime_t next_event; in tick_setup_device()
|
D | tick-oneshot.c | 27 int tick_program_event(ktime_t expires, int force) in tick_program_event() 50 ktime_t next_event) in tick_setup_oneshot()
|
D | tick-broadcast.c | 299 ktime_t next; in tick_handle_periodic_broadcast() 536 ktime_t expires, int force) in tick_broadcast_set_event() 581 ktime_t now, next_event; in tick_handle_oneshot_broadcast() 692 ktime_t now; in tick_broadcast_oneshot_control() 824 ktime_t expires) in tick_broadcast_init_next_event()
|
D | tick-broadcast-hrtimer.c | 50 static int bc_set_next(ktime_t expires, struct clock_event_device *bc) in bc_set_next()
|
D | timer_stats.c | 104 static ktime_t time_start, time_stop; 286 ktime_t time; in tstats_show()
|
D | itimer.c | 29 ktime_t rem = hrtimer_get_remaining(timer); in itimer_get_remtime() 194 ktime_t expires; in do_setitimer()
|
D | sched_clock.c | 65 ktime_t wrap_kt;
|
D | posix-timers.c | 455 ktime_t now = hrtimer_cb_get_time(timer); in posix_timer_fn() 481 ktime_t kj = ktime_set(0, NSEC_PER_SEC / HZ); in posix_timer_fn() 731 ktime_t now, remaining, iv; in common_timer_get()
|
D | timer.c | 1317 ktime_t hr_delta = hrtimer_get_next_event(); in cmp_next_hrtimer_event() 1702 ktime_t kmin; in do_usleep_range()
|
D | clockevents.c | 306 int clockevents_program_event(struct clock_event_device *dev, ktime_t expires, in clockevents_program_event()
|
/linux-4.1.27/net/dccp/ccids/ |
D | ccid3.h | 107 ktime_t tx_t_last_win_count; 109 ktime_t tx_t_ld; 110 ktime_t tx_t_nom; 146 ktime_t rx_tstamp_last_feedback;
|
D | ccid3.c | 106 static u32 ccid3_hc_tx_idle_rtt(struct ccid3_hc_tx_sock *hc, ktime_t now) in ccid3_hc_tx_idle_rtt() 124 static void ccid3_hc_tx_update_x(struct sock *sk, ktime_t *stamp) in ccid3_hc_tx_update_x() 129 ktime_t now = stamp ? *stamp : ktime_get_real(); in ccid3_hc_tx_update_x() 186 ktime_t now) in ccid3_hc_tx_update_win_count() 284 ktime_t now = ktime_get_real(); in ccid3_hc_tx_send_packet() 371 ktime_t now; in ccid3_hc_tx_packet_recv() 602 ktime_t now = ktime_get_real(); in ccid3_hc_rx_send_feedback()
|
/linux-4.1.27/drivers/net/can/softing/ |
D | softing.h | 41 ktime_t ts_ref; 42 ktime_t ts_overflow; /* timestamp overflow value, in ktime */ 76 ktime_t softing_raw2ktime(struct softing *card, u32 raw); 101 ktime_t ktime);
|
D | softing_fw.c | 396 ktime_t softing_raw2ktime(struct softing *card, u32 raw) in softing_raw2ktime() 399 ktime_t now, real_offset; in softing_raw2ktime() 400 ktime_t target; in softing_raw2ktime() 401 ktime_t tmp; in softing_raw2ktime()
|
D | softing_main.c | 143 ktime_t ktime) in softing_netdev_rx() 164 ktime_t ktime; in softing_handle_1()
|
/linux-4.1.27/drivers/base/power/ |
D | wakeup.c | 475 static void update_prevent_sleep_time(struct wakeup_source *ws, ktime_t now) in update_prevent_sleep_time() 477 ktime_t delta = ktime_sub(now, ws->start_prevent_time); in update_prevent_sleep_time() 482 ktime_t now) {} in update_prevent_sleep_time() 496 ktime_t duration; in wakeup_source_deactivate() 497 ktime_t now; in wakeup_source_deactivate() 810 ktime_t now = ktime_get(); in pm_wakep_autosleep_enabled() 841 ktime_t total_time; in print_wakeup_source_stats() 842 ktime_t max_time; in print_wakeup_source_stats() 844 ktime_t active_time; in print_wakeup_source_stats() 845 ktime_t prevent_sleep_time; in print_wakeup_source_stats() [all …]
|
D | main.c | 190 static ktime_t initcall_debug_start(struct device *dev) in initcall_debug_start() 192 ktime_t calltime = ktime_set(0, 0); in initcall_debug_start() 204 static void initcall_debug_report(struct device *dev, ktime_t calltime, in initcall_debug_report() 207 ktime_t rettime; in initcall_debug_report() 358 static void dpm_show_time(ktime_t starttime, pm_message_t state, char *info) in dpm_show_time() 360 ktime_t calltime; in dpm_show_time() 378 ktime_t calltime; in dpm_run_callback() 546 ktime_t starttime = ktime_get(); in dpm_resume_noirq() 668 ktime_t starttime = ktime_get(); in dpm_resume_early() 840 ktime_t starttime = ktime_get(); in dpm_resume() [all …]
|
D | domain.c | 36 ktime_t __start = ktime_get(); \ 186 ktime_t time_start; in genpd_power_on() 213 ktime_t time_start; in genpd_power_off()
|
/linux-4.1.27/fs/ |
D | timerfd.c | 34 ktime_t tintv; 35 ktime_t moffs; 80 ktime_t now) in timerfd_alarmproc() 96 ktime_t moffs = ktime_mono_to_real((ktime_t){ .tv64 = 0 }); in timerfd_clock_was_set() 129 ctx->moffs = ktime_mono_to_real((ktime_t){ .tv64 = 0 }); in timerfd_canceled() 149 static ktime_t timerfd_get_remaining(struct timerfd_ctx *ctx) in timerfd_get_remaining() 151 ktime_t remaining; in timerfd_get_remaining() 165 ktime_t texp; in timerfd_setup() 408 ctx->moffs = ktime_mono_to_real((ktime_t){ .tv64 = 0 }); in SYSCALL_DEFINE2()
|
D | select.c | 235 ktime_t *expires, unsigned long slack) in poll_schedule_timeout() 401 ktime_t expire, *to = NULL; in do_select() 785 ktime_t expire, *to = NULL; in do_poll()
|
D | eventpoll.c | 1592 ktime_t expires, *to = NULL; in ep_poll()
|
D | aio.c | 1255 ktime_t until = { .tv64 = KTIME_MAX }; in read_events()
|
/linux-4.1.27/arch/mips/kernel/ |
D | spinlock_test.c | 12 ktime_t start, finish; in ss_get() 51 ktime_t start; 92 ktime_t finish; in multi_get()
|
/linux-4.1.27/samples/kprobes/ |
D | kretprobe_example.c | 35 ktime_t entry_stamp; 61 ktime_t now; in ret_handler()
|
/linux-4.1.27/include/trace/events/ |
D | timer.h | 182 (unsigned long long)ktime_to_ns((ktime_t) { 184 (unsigned long long)ktime_to_ns((ktime_t) { 198 TP_PROTO(struct hrtimer *hrtimer, ktime_t *now), 215 (unsigned long long)ktime_to_ns((ktime_t) { .tv64 = __entry->now }))
|
/linux-4.1.27/net/dccp/ccids/lib/ |
D | packet_history.h | 52 ktime_t stamp; 84 ktime_t tfrchrx_tstamp;
|
/linux-4.1.27/drivers/power/reset/ |
D | ltc2952-poweroff.c | 72 ktime_t trigger_delay; 73 ktime_t wde_interval; 104 ktime_t now; in ltc2952_poweroff_timer_wde()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_display.h | 71 int *, int *, ktime_t *, ktime_t *);
|
D | nouveau_display.c | 96 ktime_t *stime, ktime_t *etime) in nouveau_display_scanoutpos_head() 135 int *vpos, int *hpos, ktime_t *stime, ktime_t *etime) in nouveau_display_scanoutpos()
|
D | nouveau_fence.c | 321 ktime_t kt; in nouveau_fence_wait_legacy()
|
/linux-4.1.27/drivers/rtc/ |
D | rtc-lib.c | 129 ktime_t rtc_tm_to_ktime(struct rtc_time tm) in rtc_tm_to_ktime() 138 struct rtc_time rtc_ktime_to_tm(ktime_t kt) in rtc_ktime_to_tm()
|
D | interface.c | 495 ktime_t now, onesec; in rtc_update_irq_enable() 590 ktime_t period; in rtc_pie_update_irq() 705 ktime_t period = ktime_set(0, NSEC_PER_SEC / rtc->irq_freq); in rtc_update_hrtimer() 873 ktime_t now; in rtc_timer_do_work() 957 ktime_t expires, ktime_t period) in rtc_timer_start()
|
/linux-4.1.27/arch/powerpc/oprofile/cell/ |
D | spu_profiler.c | 139 ktime_t kt; in profile_spus() 204 ktime_t kt; in start_spu_profiling_cycles()
|
/linux-4.1.27/drivers/platform/x86/ |
D | msi-wmi.c | 87 static ktime_t last_pressed; 209 ktime_t cur = ktime_get_real(); in msi_wmi_notify() 210 ktime_t diff = ktime_sub(cur, last_pressed); in msi_wmi_notify()
|
/linux-4.1.27/kernel/power/ |
D | power.h | 177 extern void swsusp_show_speed(ktime_t, ktime_t, unsigned int, char *);
|
D | swap.c | 449 ktime_t start; in save_image() 450 ktime_t stop; in save_image() 584 ktime_t start; in save_image_lzo() 585 ktime_t stop; in save_image_lzo() 969 ktime_t start; in load_image() 970 ktime_t stop; in load_image() 1071 ktime_t start; in load_image_lzo() 1072 ktime_t stop; in load_image_lzo()
|
D | hibernate.c | 236 void swsusp_show_speed(ktime_t start, ktime_t stop, in swsusp_show_speed() 239 ktime_t diff; in swsusp_show_speed()
|
D | wakelock.c | 102 ktime_t now; in wakelocks_gc()
|
D | snapshot.c | 1564 ktime_t start, stop; in hibernate_preallocate_memory()
|
/linux-4.1.27/drivers/media/rc/ |
D | rc-core-priv.h | 39 ktime_t last_event; /* when last event occurred */ 107 ktime_t gap_start;
|
D | rc-ir-raw.c | 108 ktime_t now; in ir_raw_event_store_edge()
|
D | ir-lirc-codec.c | 116 ktime_t start; in ir_lirc_transmit_ir()
|
/linux-4.1.27/drivers/idle/ |
D | i7300_idle.c | 86 static ktime_t start_ktime; 448 ktime_t now_ktime; in i7300_idle_notifier() 449 static ktime_t idle_begin_time; in i7300_idle_notifier() 497 ktime_t idle_ktime; in i7300_idle_notifier()
|
/linux-4.1.27/fs/dlm/ |
D | dlm_internal.h | 252 ktime_t lkb_timestamp; 253 ktime_t lkb_wait_time; 262 ktime_t lkb_last_cast_time; /* for debugging */ 263 ktime_t lkb_last_bast_time; /* for debugging */
|
D | lock.c | 1398 ktime_t zero = ktime_set(0, 0); in dlm_scan_waiters()
|
/linux-4.1.27/include/linux/sunrpc/ |
D | metrics.h | 65 ktime_t om_queue, /* queued for xmit */
|
D | xprt.h | 95 ktime_t rq_rtt; /* round-trip time */ 107 ktime_t rq_xtime; /* transmit time stamp */
|
D | sched.h | 75 ktime_t tk_start; /* RPC task init timestamp */
|
/linux-4.1.27/kernel/ |
D | async.c | 114 ktime_t uninitialized_var(calltime), delta, rettime; in async_run_entry_fn() 285 ktime_t uninitialized_var(starttime), delta, endtime; in async_synchronize_cookie_domain()
|
D | futex_compat.c | 179 ktime_t t, *tp = NULL; in COMPAT_SYSCALL_DEFINE6()
|
D | futex.c | 2175 ktime_t *abs_time, u32 bitset) in futex_wait() 2252 ktime_t t, *tp = NULL; in futex_wait_restart() 2272 ktime_t *time, int trylock) in futex_lock_pi() 2565 u32 val, ktime_t *abs_time, u32 bitset, in futex_wait_requeue_pi() 2939 long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout, in do_futex() 3001 ktime_t t, *tp = NULL; in SYSCALL_DEFINE6()
|
/linux-4.1.27/arch/mips/kvm/ |
D | emulate.c | 246 static uint32_t kvm_mips_ktime_to_count(struct kvm_vcpu *vcpu, ktime_t now) in kvm_mips_ktime_to_count() 285 static inline ktime_t kvm_mips_count_time(struct kvm_vcpu *vcpu) in kvm_mips_count_time() 303 static uint32_t kvm_mips_read_count_running(struct kvm_vcpu *vcpu, ktime_t now) in kvm_mips_read_count_running() 306 ktime_t expires, threshold; in kvm_mips_read_count_running() 390 static ktime_t kvm_mips_freeze_hrtimer(struct kvm_vcpu *vcpu, in kvm_mips_freeze_hrtimer() 393 ktime_t now; in kvm_mips_freeze_hrtimer() 422 ktime_t now, uint32_t count) in kvm_mips_resume_hrtimer() 427 ktime_t expire; in kvm_mips_resume_hrtimer() 450 ktime_t now; in kvm_mips_write_count() 498 ktime_t now; in kvm_mips_set_count_hz() [all …]
|
/linux-4.1.27/arch/x86/kvm/ |
D | i8254.h | 21 ktime_t count_load_time;
|
D | lapic.c | 941 ktime_t remaining; in apic_get_tmcct() 1174 ktime_t now; in start_apic_timer() 1221 ktime_t expire; in start_apic_timer()
|
D | i8254.c | 109 ktime_t remaining; in __kpit_elapsed()
|
D | vmx.c | 531 ktime_t entry_time; 9698 ktime_t remaining = in vmx_get_preemption_timer_value()
|
/linux-4.1.27/drivers/devfreq/exynos/ |
D | exynos_ppmu.h | 67 ktime_t reset_time;
|
/linux-4.1.27/drivers/gpu/host1x/ |
D | cdma.h | 57 ktime_t start_ktime; /* starting time */
|
/linux-4.1.27/drivers/net/irda/ |
D | irda-usb.h | 160 ktime_t stamp;
|
D | ali-ircc.h | 212 ktime_t stamp;
|
D | nsc-ircc.h | 266 ktime_t stamp;
|
D | vlsi_ir.h | 726 ktime_t last_rx;
|
D | stir4200.c | 178 ktime_t rx_time;
|
/linux-4.1.27/net/ipv4/ |
D | tcp_probe.c | 60 ktime_t tstamp; 79 ktime_t start;
|
/linux-4.1.27/drivers/atm/ |
D | eni.h | 62 ktime_t timestamp; /* for RX timing */
|
/linux-4.1.27/drivers/scsi/ufs/ |
D | ufshcd.h | 311 ktime_t busy_start_t; 457 ktime_t last_dme_cmd_tstamp;
|
/linux-4.1.27/drivers/usb/host/ |
D | ehci-timer.c | 87 ktime_t *timeout = &ehci->hr_timeouts[event]; in ehci_enable_event() 408 ktime_t now; in ehci_hrtimer_func()
|
D | fotg210.h | 79 ktime_t hr_timeouts[FOTG210_HRTIMER_NUM_EVENTS]; 161 ktime_t last_periodic_enable;
|
D | fusbh200.h | 79 ktime_t hr_timeouts[FUSBH200_HRTIMER_NUM_EVENTS]; 160 ktime_t last_periodic_enable;
|
D | ehci.h | 127 ktime_t hr_timeouts[EHCI_HRTIMER_NUM_EVENTS]; 212 ktime_t last_periodic_enable;
|
D | fusbh200-hcd.c | 1073 ktime_t *timeout = &fusbh200->hr_timeouts[event]; in fusbh200_enable_event() 1352 ktime_t now; in fusbh200_hrtimer_func()
|
D | fotg210-hcd.c | 1106 ktime_t *timeout = &fotg210->hr_timeouts[event]; in fotg210_enable_event() 1394 ktime_t now; in fotg210_hrtimer_func()
|
/linux-4.1.27/drivers/phy/ |
D | phy-qcom-ufs-i.h | 29 ktime_t timeout = ktime_add_us(ktime_get(), timeout_us); \
|
/linux-4.1.27/include/net/ |
D | inet_frag.h | 56 ktime_t stamp;
|
D | red.h | 151 ktime_t qidlestart; /* Start of current idle period */
|
D | sock.h | 420 ktime_t sk_stamp; 2124 ktime_t kt = skb->tstamp; in sock_recv_timestamp()
|
/linux-4.1.27/drivers/net/ethernet/sfc/ |
D | ptp.c | 191 ktime_t hwtimestamp; 289 ktime_t (*nic_to_kernel_time)(u32 nic_major, u32 nic_minor, 412 static ktime_t efx_ptp_s_ns_to_ktime_correction(u32 nic_major, u32 nic_minor, in efx_ptp_s_ns_to_ktime_correction() 415 ktime_t kt = ktime_set(nic_major, nic_minor); in efx_ptp_s_ns_to_ktime_correction() 454 static inline ktime_t efx_ptp_s27_to_ktime(u32 nic_major, u32 nic_minor) in efx_ptp_s27_to_ktime() 461 static ktime_t efx_ptp_s27_to_ktime_correction(u32 nic_major, u32 nic_minor, in efx_ptp_s27_to_ktime_correction() 717 ktime_t mc_time; in efx_ptp_process_times() 1849 ktime_t kt; in efx_phc_gettime()
|
/linux-4.1.27/drivers/net/ethernet/cisco/enic/ |
D | vnic_cq.h | 69 ktime_t prev_ts;
|
D | enic_main.c | 1238 ktime_t now = ktime_get(); in enic_calc_int_moderation()
|
/linux-4.1.27/net/bluetooth/ |
D | selftest.c | 176 ktime_t calltime, delta, rettime; in test_ecdh()
|
D | smp.c | 3574 ktime_t calltime, delta, rettime; in run_selftests()
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
D | msm_gpu.h | 73 ktime_t time;
|
D | msm_gpu.c | 349 ktime_t time; in update_sw_cntrs()
|
/linux-4.1.27/drivers/staging/android/ |
D | timed_gpio.c | 50 ktime_t t; in gpio_get_time()
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
D | comedi_test.c | 65 ktime_t last; /* time last timer interrupt occurred */ 178 ktime_t now; in waveform_ai_interrupt()
|
/linux-4.1.27/Documentation/timers/ |
D | hrtimers.txt | 126 special nanosecond-resolution type: ktime_t. The kernel-internal 127 representation of ktime_t values and operations is implemented via 131 CPUs. This build-time-selectable ktime_t storage format was implemented
|
/linux-4.1.27/drivers/pps/generators/ |
D | pps_gen_parport.c | 181 static inline ktime_t next_intr_time(struct pps_generator_pp *dev) in next_intr_time()
|
/linux-4.1.27/net/dccp/ |
D | timer.c | 252 static ktime_t dccp_timestamp_seed;
|
/linux-4.1.27/drivers/cpufreq/ |
D | cpufreq_governor.h | 152 ktime_t time_stamp;
|
D | cpufreq_governor.c | 216 ktime_t time_now = ktime_get(); in need_load_eval()
|
D | intel_pstate.c | 72 ktime_t time; 109 ktime_t last_sample_time;
|
/linux-4.1.27/include/net/sctp/ |
D | structs.h | 286 ktime_t expiration; 850 ktime_t last_time_heard; 1541 ktime_t cookie_life;
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_drv.c | 128 int *vpos, int *hpos, ktime_t *stime, 129 ktime_t *etime);
|
D | radeon_mode.h | 881 int *vpos, int *hpos, ktime_t *stime, 882 ktime_t *etime);
|
D | radeon_display.c | 1792 int *vpos, int *hpos, ktime_t *stime, ktime_t *etime) in radeon_get_crtc_scanoutpos()
|
/linux-4.1.27/drivers/clk/samsung/ |
D | clk-pll.c | 400 ktime_t start; in samsung_pll45xx_set_rate() 454 ktime_t delta = ktime_sub(ktime_get(), start); in samsung_pll45xx_set_rate() 551 ktime_t start; in samsung_pll46xx_set_rate() 613 ktime_t delta = ktime_sub(ktime_get(), start); in samsung_pll46xx_set_rate()
|
/linux-4.1.27/net/core/ |
D | pktgen.c | 277 ktime_t next_tx; 278 ktime_t started_at; 279 ktime_t stopped_at; 532 ktime_t stopped; in pktgen_if_show() 2188 static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until) in spin() 2190 ktime_t start_time, end_time; in spin() 3162 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at, in show_results() 3164 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc); in show_results() 3294 ktime_t idle_start = ktime_get(); in pktgen_resched() 3301 ktime_t idle_start = ktime_get(); in pktgen_wait_for_skb()
|
/linux-4.1.27/drivers/usb/chipidea/ |
D | ci.h | 212 ktime_t hr_timeouts[NUM_OTG_FSM_TIMERS];
|
D | otg_fsm.c | 369 ktime_t now, *timeout; in ci_otg_hrtimer_func()
|
/linux-4.1.27/include/drm/ |
D | drmP.h | 499 int *vpos, int *hpos, ktime_t *stime, 500 ktime_t *etime);
|
/linux-4.1.27/ipc/ |
D | mqueue.c | 563 ktime_t *timeout, struct ext_wait_queue *ewp) in wq_sleep() 673 ktime_t *expires, struct timespec *ts) in prepare_timeout() 961 ktime_t expires, *timeout = NULL; in SYSCALL_DEFINE5() 1080 ktime_t expires, *timeout = NULL; in SYSCALL_DEFINE5()
|
/linux-4.1.27/kernel/trace/ |
D | ring_buffer_benchmark.c | 215 ktime_t start_time, end_time, timeout; in ring_buffer_producer()
|
/linux-4.1.27/net/sunrpc/ |
D | stats.c | 151 ktime_t delta, now; in rpc_count_iostats_metrics()
|
/linux-4.1.27/kernel/sched/ |
D | sched.h | 131 ktime_t rt_period; 213 ktime_t period; 1410 extern void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period);
|
D | deadline.c | 505 ktime_t now, act; in start_dl_timer() 506 ktime_t soft, hard; in start_dl_timer()
|
D | core.c | 93 void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period) in start_bandwidth_timer() 96 ktime_t soft, hard, now; in start_bandwidth_timer() 361 ktime_t time = hrtimer_get_softexpires(timer); in __hrtick_restart() 387 ktime_t time; in hrtick_start() 1257 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ); in wait_task_inactive()
|
D | rt.c | 21 ktime_t now; in sched_rt_period_timer()
|
D | fair.c | 4011 ktime_t now; in sched_cfs_period_timer()
|
/linux-4.1.27/drivers/virtio/ |
D | virtio_ring.c | 92 ktime_t last_add_time; 149 ktime_t now = ktime_get(); in virtqueue_add()
|
/linux-4.1.27/drivers/hwmon/pmbus/ |
D | zl6100.c | 37 ktime_t access; /* chip access time */
|
/linux-4.1.27/drivers/input/ |
D | evdev.c | 114 ktime_t time; in __evdev_queue_syn_dropped() 213 ktime_t *ev_time) in evdev_pass_values() 251 ktime_t ev_time[EV_CLK_MAX]; in evdev_events()
|
/linux-4.1.27/drivers/ptp/ |
D | ptp_clock.c | 137 ktime_t kt; in ptp_clock_adjtime()
|
/linux-4.1.27/sound/sh/ |
D | sh_dac_audio.c | 58 ktime_t wakeups_per_second;
|
/linux-4.1.27/drivers/cpuidle/ |
D | cpuidle.c | 162 ktime_t time_start, time_end; in cpuidle_enter_state()
|
/linux-4.1.27/drivers/lguest/ |
D | interrupts_and_traps.c | 670 ktime_t expires; in guest_set_clockevent()
|
/linux-4.1.27/drivers/video/fbdev/omap2/dss/ |
D | pll.c | 201 ktime_t wait; in wait_for_bit_change()
|
D | dsi.c | 365 ktime_t perf_setup_time; 366 ktime_t perf_start_time; 505 ktime_t wait; in wait_for_bit_change() 561 ktime_t t, setup_time, trans_time; in dsi_perf_show() 2156 ktime_t wait = ns_to_ktime(1000 * 1000); in dsi_cio_init()
|
/linux-4.1.27/fs/nfs/ |
D | nfs4_fs.h | 71 ktime_t create_time;
|
/linux-4.1.27/drivers/power/ |
D | charger-manager.c | 1100 ktime_t now, add; in cm_setup_timer() 1617 static enum alarmtimer_restart cm_timer_func(struct alarm *alarm, ktime_t now) in cm_timer_func() 1945 ktime_t remain; in cm_suspend_complete()
|
/linux-4.1.27/drivers/pci/ |
D | quirks.c | 2994 static ktime_t fixup_debug_start(struct pci_dev *dev, in fixup_debug_start() 2997 ktime_t calltime = ktime_set(0, 0); in fixup_debug_start() 3009 static void fixup_debug_report(struct pci_dev *dev, ktime_t calltime, in fixup_debug_report() 3012 ktime_t delta, rettime; in fixup_debug_report() 3240 ktime_t calltime; in pci_do_fixups()
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_irq.c | 671 ktime_t stime, etime; in drm_calc_vbltimestamp_from_scanoutpos() 783 ktime_t now; in get_drm_timestamp()
|
/linux-4.1.27/drivers/ata/ |
D | pata_pdc2027x.c | 609 ktime_t start_time, end_time; in pdc_detect_pll_input_clock()
|
/linux-4.1.27/init/ |
D | main.c | 761 ktime_t calltime, delta, rettime; in do_one_initcall_debug()
|
/linux-4.1.27/sound/drivers/ |
D | dummy.c | 375 ktime_t base_time; 376 ktime_t period_time;
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
D | perf_event_intel_rapl.c | 126 ktime_t timer_interval; /* in ktime_t unit */
|
/linux-4.1.27/fs/gfs2/ |
D | incore.h | 349 ktime_t gl_dstamp;
|
D | lock_dlm.c | 104 ktime_t dstamp; in gfs2_update_request_times()
|
/linux-4.1.27/drivers/block/ |
D | null_blk.c | 258 ktime_t kt = ktime_set(0, completion_nsec); in null_cmd_end_timer()
|
/linux-4.1.27/drivers/misc/ |
D | lkdtm.c | 215 static int jp_hrtimer_start(struct hrtimer *timer, ktime_t tim, in jp_hrtimer_start()
|
/linux-4.1.27/drivers/s390/crypto/ |
D | ap_bus.c | 1152 ktime_t hr_time; in poll_timeout_store() 1529 ktime_t hr_time; in __ap_schedule_poll_timer()
|
/linux-4.1.27/drivers/video/fbdev/msm/ |
D | msm_fb.c | 87 ktime_t vsync_request_time;
|
/linux-4.1.27/fs/jbd/ |
D | commit.c | 305 ktime_t start_time; in journal_commit_transaction()
|
D | transaction.c | 1428 ktime_t expires = ktime_add_ns(ktime_get(), in journal_stop()
|
/linux-4.1.27/drivers/misc/mei/ |
D | hw-txe.c | 227 ktime_t stop, start; in mei_txe_aliveness_poll()
|
/linux-4.1.27/arch/mips/include/asm/ |
D | kvm_host.h | 412 ktime_t count_resume;
|
/linux-4.1.27/drivers/media/pci/pt3/ |
D | pt3.c | 446 ktime_t delay; in pt3_fetch_thread()
|
/linux-4.1.27/drivers/dma/ |
D | dmatest.c | 419 ktime_t ktime; in dmatest_func()
|
/linux-4.1.27/fs/jbd2/ |
D | commit.c | 381 ktime_t start_time; in jbd2_journal_commit_transaction()
|
D | transaction.c | 1616 ktime_t expires = ktime_add_ns(ktime_get(), in jbd2_journal_stop()
|
/linux-4.1.27/drivers/i2c/busses/ |
D | i2c-s3c2410.c | 663 ktime_t start, now; in s3c24xx_i2c_wait_idle()
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb/ |
D | sge.c | 236 ktime_t last_updated; /* last time quotas were computed */ 400 ktime_t now = ktime_get(); in sched_update_avail()
|
/linux-4.1.27/net/sched/ |
D | sch_cbq.c | 493 ktime_t expires; in cbq_ovl_delay() 616 ktime_t time; in cbq_undelay()
|
D | sch_netem.c | 149 ktime_t tstamp_save;
|
D | sch_htb.c | 932 ktime_t time = ns_to_ktime(next_event); in htb_dequeue()
|
/linux-4.1.27/fs/ubifs/ |
D | ubifs.h | 701 ktime_t softlimit;
|
/linux-4.1.27/sound/pci/pcxhr/ |
D | pcxhr_core.c | 913 ktime_t start_time, stop_time, diff_time; in pcxhr_set_pipe_state()
|
D | pcxhr.c | 714 ktime_t start_time, stop_time, diff_time; in pcxhr_start_linked_stream()
|
/linux-4.1.27/fs/ext4/ |
D | extents_status.c | 977 ktime_t start_time; in __es_shrink()
|
/linux-4.1.27/drivers/char/ |
D | random.c | 1292 ktime_t now = ktime_get_real(); in init_std_data()
|
/linux-4.1.27/sound/pci/ |
D | es1968.c | 1713 ktime_t start_time, stop_time; in es1968_measure_clock() 1714 ktime_t diff; in es1968_measure_clock()
|
D | intel8x0.c | 2767 ktime_t start_time, stop_time; in intel8x0_measure_ac97_clock()
|
/linux-4.1.27/net/can/ |
D | bcm.c | 102 ktime_t rx_stamp, kt_ival1, kt_ival2, kt_lastmsg;
|
/linux-4.1.27/virt/kvm/ |
D | kvm_main.c | 1782 ktime_t start, cur; in kvm_vcpu_block() 1788 ktime_t stop = ktime_add_ns(ktime_get(), halt_poll_ns); in kvm_vcpu_block()
|
/linux-4.1.27/drivers/md/ |
D | dm.c | 227 ktime_t last_rq_start_time; 2069 ktime_t kt_deadline; in dm_request_peeked_before_merge_deadline()
|
/linux-4.1.27/drivers/net/ieee802154/ |
D | at86rf230.c | 599 ktime_t tim; in at86rf230_async_state_delay()
|
/linux-4.1.27/drivers/md/bcache/ |
D | bset.c | 451 ktime_t start = ktime_get();
|
/linux-4.1.27/Documentation/networking/ |
D | timestamping.txt | 428 ktime_t hwtstamp;
|
/linux-4.1.27/drivers/bus/ |
D | arm-ccn.c | 535 static ktime_t arm_ccn_pmu_timer_period(void) in arm_ccn_pmu_timer_period()
|
/linux-4.1.27/fs/ocfs2/ |
D | dlmglue.c | 67 ktime_t mw_lock_start; 443 ktime_t kt; in ocfs2_update_lock_stats()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | i915_irq.c | 639 ktime_t *stime, ktime_t *etime) in i915_get_crtc_scanoutpos()
|
/linux-4.1.27/drivers/crypto/ |
D | hifn_795x.c | 459 ktime_t rngtime;
|
/linux-4.1.27/net/sctp/ |
D | sm_make_chunk.c | 1704 ktime_t kt; in sctp_unpack_cookie()
|
/linux-4.1.27/drivers/bluetooth/ |
D | btusb.c | 2351 ktime_t calltime, delta, rettime; in btusb_setup_intel_new()
|
/linux-4.1.27/drivers/net/wireless/ |
D | mac80211_hwsim.c | 1464 ktime_t next_bcn; in mac80211_hwsim_beacon()
|
/linux-4.1.27/drivers/scsi/ |
D | scsi_debug.c | 4023 ktime_t kt = ktime_set(0, scsi_debug_ndelay); in schedule_resp()
|
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_main.c | 13376 ktime_t now = ktime_get_boottime(); in bnx2x_init_one() 13377 ktime_t fw_ready_time = ktime_set(5, 0); in bnx2x_init_one()
|
/linux-4.1.27/kernel/events/ |
D | core.c | 6912 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer); in perf_swevent_cancel_hrtimer()
|
/linux-4.1.27/fs/btrfs/ |
D | extent-tree.c | 2363 ktime_t start = ktime_get(); in __btrfs_run_delayed_refs()
|