Home
last modified time | relevance | path

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

/Linux-v5.15/drivers/base/power/
Ddomain_governor.c123 ktime_t next_wakeup; in update_domain_next_wakeup() local
139 next_wakeup = to_gpd_data(pdd)->next_wakeup; in update_domain_next_wakeup()
140 if (next_wakeup != KTIME_MAX && !ktime_before(next_wakeup, now)) in update_domain_next_wakeup()
141 if (ktime_before(next_wakeup, domain_wakeup)) in update_domain_next_wakeup()
142 domain_wakeup = next_wakeup; in update_domain_next_wakeup()
146 next_wakeup = link->child->next_wakeup; in update_domain_next_wakeup()
147 if (next_wakeup != KTIME_MAX && !ktime_before(next_wakeup, now)) in update_domain_next_wakeup()
148 if (ktime_before(next_wakeup, domain_wakeup)) in update_domain_next_wakeup()
149 domain_wakeup = next_wakeup; in update_domain_next_wakeup()
152 genpd->next_wakeup = domain_wakeup; in update_domain_next_wakeup()
[all …]
Ddomain.c487 gpd_data->next_wakeup = next; in dev_pm_genpd_set_next_wakeup()
1503 gpd_data->next_wakeup = KTIME_MAX; in genpd_alloc_dev_data()
/Linux-v5.15/include/linux/
Dpm_domain.h138 ktime_t next_wakeup; /* Maintained by the domain governor */ member
203 ktime_t next_wakeup; member
/Linux-v5.15/fs/ext4/
Dsuper.c3364 unsigned long next_wakeup, cur; in ext4_lazyinit_thread() local
3370 next_wakeup = MAX_JIFFY_OFFSET; in ext4_lazyinit_thread()
3384 if (time_before(elr->lr_next_sched, next_wakeup)) in ext4_lazyinit_thread()
3385 next_wakeup = elr->lr_next_sched; in ext4_lazyinit_thread()
3414 if (time_before(elr->lr_next_sched, next_wakeup)) in ext4_lazyinit_thread()
3415 next_wakeup = elr->lr_next_sched; in ext4_lazyinit_thread()
3422 if ((time_after_eq(cur, next_wakeup)) || in ext4_lazyinit_thread()
3423 (MAX_JIFFY_OFFSET == next_wakeup)) { in ext4_lazyinit_thread()
3428 schedule_timeout_interruptible(next_wakeup - cur); in ext4_lazyinit_thread()