Home
last modified time | relevance | path

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

/Linux-v6.1/drivers/base/power/
Ddomain_governor.c126 ktime_t next_wakeup; in update_domain_next_wakeup() local
142 next_wakeup = to_gpd_data(pdd)->td->next_wakeup; in update_domain_next_wakeup()
143 if (next_wakeup != KTIME_MAX && !ktime_before(next_wakeup, now)) in update_domain_next_wakeup()
144 if (ktime_before(next_wakeup, domain_wakeup)) in update_domain_next_wakeup()
145 domain_wakeup = next_wakeup; in update_domain_next_wakeup()
151 next_wakeup = cgd ? cgd->next_wakeup : KTIME_MAX; in update_domain_next_wakeup()
152 if (next_wakeup != KTIME_MAX && !ktime_before(next_wakeup, now)) in update_domain_next_wakeup()
153 if (ktime_before(next_wakeup, domain_wakeup)) in update_domain_next_wakeup()
154 domain_wakeup = next_wakeup; in update_domain_next_wakeup()
157 genpd->gd->next_wakeup = domain_wakeup; in update_domain_next_wakeup()
[all …]
Ddomain.c493 td->next_wakeup = next; in dev_pm_genpd_set_next_wakeup()
1532 td->next_wakeup = KTIME_MAX; in genpd_alloc_dev_data()
1996 gd->next_wakeup = KTIME_MAX; in genpd_alloc_data()
/Linux-v6.1/include/linux/
Dpm_domain.h97 ktime_t next_wakeup; member
189 ktime_t next_wakeup; member
/Linux-v6.1/fs/ext4/
Dsuper.c3733 unsigned long next_wakeup, cur; in ext4_lazyinit_thread() local
3740 next_wakeup = MAX_JIFFY_OFFSET; in ext4_lazyinit_thread()
3754 if (time_before(elr->lr_next_sched, next_wakeup)) in ext4_lazyinit_thread()
3755 next_wakeup = elr->lr_next_sched; in ext4_lazyinit_thread()
3783 if (time_before(elr->lr_next_sched, next_wakeup)) in ext4_lazyinit_thread()
3784 next_wakeup = elr->lr_next_sched; in ext4_lazyinit_thread()
3791 if ((time_after_eq(cur, next_wakeup)) || in ext4_lazyinit_thread()
3792 (MAX_JIFFY_OFFSET == next_wakeup)) { in ext4_lazyinit_thread()
3797 schedule_timeout_interruptible(next_wakeup - cur); in ext4_lazyinit_thread()