Home
last modified time | relevance | path

Searched refs:next_wakeup (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/pmdomain/
H A Dgovernor.c128 ktime_t next_wakeup; in update_domain_next_wakeup() local
144 next_wakeup = to_gpd_data(pdd)->td->next_wakeup; in update_domain_next_wakeup()
145 if (next_wakeup != KTIME_MAX && !ktime_before(next_wakeup, now)) in update_domain_next_wakeup()
146 if (ktime_before(next_wakeup, domain_wakeup)) in update_domain_next_wakeup()
147 domain_wakeup = next_wakeup; in update_domain_next_wakeup()
153 next_wakeup = cgd ? cgd->next_wakeup : KTIME_MAX; in update_domain_next_wakeup()
154 if (next_wakeup != KTIME_MAX && !ktime_before(next_wakeup, now)) in update_domain_next_wakeup()
155 if (ktime_before(next_wakeup, domain_wakeup)) in update_domain_next_wakeup()
156 domain_wakeup = next_wakeup; in update_domain_next_wakeup()
159 genpd->gd->next_wakeup = domain_wakeup; in update_domain_next_wakeup()
[all …]
H A Dcore.c579 td->next_wakeup = next; in dev_pm_genpd_set_next_wakeup()
1690 td->next_wakeup = KTIME_MAX; in genpd_alloc_dev_data()
2157 gd->next_wakeup = KTIME_MAX; in genpd_alloc_data()
/linux/include/linux/
H A Dpm_domain.h130 ktime_t next_wakeup; member
228 ktime_t next_wakeup; member
/linux/fs/ext4/
H A Dsuper.c3770 unsigned long next_wakeup, cur; in ext4_lazyinit_thread() local
3777 next_wakeup = MAX_JIFFY_OFFSET; in ext4_lazyinit_thread()
3791 if (time_before(elr->lr_next_sched, next_wakeup)) in ext4_lazyinit_thread()
3792 next_wakeup = elr->lr_next_sched; in ext4_lazyinit_thread()
3820 if (time_before(elr->lr_next_sched, next_wakeup)) in ext4_lazyinit_thread()
3821 next_wakeup = elr->lr_next_sched; in ext4_lazyinit_thread()
3828 if ((time_after_eq(cur, next_wakeup)) || in ext4_lazyinit_thread()
3829 (MAX_JIFFY_OFFSET == next_wakeup)) { in ext4_lazyinit_thread()
3834 schedule_timeout_interruptible(next_wakeup - cur); in ext4_lazyinit_thread()