Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/drivers/base/power/
H A Ddomain_governor.c125 ktime_t next_wakeup; in update_domain_next_wakeup() local
141 next_wakeup = to_gpd_data(pdd)->next_wakeup; in update_domain_next_wakeup()
142 if (next_wakeup != KTIME_MAX && !ktime_before(next_wakeup, now)) in update_domain_next_wakeup()
143 if (ktime_before(next_wakeup, domain_wakeup)) in update_domain_next_wakeup()
144 domain_wakeup = next_wakeup; in update_domain_next_wakeup()
148 next_wakeup = link->child->next_wakeup; in update_domain_next_wakeup()
149 if (next_wakeup != KTIME_MAX && !ktime_before(next_wakeup, now)) in update_domain_next_wakeup()
150 if (ktime_before(next_wakeup, domain_wakeup)) in update_domain_next_wakeup()
151 domain_wakeup = next_wakeup; in update_domain_next_wakeup()
154 genpd->next_wakeup = domain_wakeup; in update_domain_next_wakeup()
[all …]
H A Ddomain.c454 gpd_data->next_wakeup = next; in dev_pm_genpd_set_next_wakeup()
1500 gpd_data->next_wakeup = KTIME_MAX; in genpd_alloc_dev_data()
1978 genpd->next_wakeup = KTIME_MAX; in pm_genpd_init()
/OK3568_Linux_fs/kernel/include/linux/
H A Dpm_domain.h138 ktime_t next_wakeup; /* Maintained by the domain governor */ member
201 ktime_t next_wakeup; member
/OK3568_Linux_fs/kernel/fs/ext4/
H A Dsuper.c3544 unsigned long next_wakeup, cur; in ext4_lazyinit_thread() local
3551 next_wakeup = MAX_JIFFY_OFFSET; in ext4_lazyinit_thread()
3565 if (time_before(elr->lr_next_sched, next_wakeup)) in ext4_lazyinit_thread()
3566 next_wakeup = elr->lr_next_sched; in ext4_lazyinit_thread()
3595 if (time_before(elr->lr_next_sched, next_wakeup)) in ext4_lazyinit_thread()
3596 next_wakeup = elr->lr_next_sched; in ext4_lazyinit_thread()
3603 if ((time_after_eq(cur, next_wakeup)) || in ext4_lazyinit_thread()
3604 (MAX_JIFFY_OFFSET == next_wakeup)) { in ext4_lazyinit_thread()
3609 schedule_timeout_interruptible(next_wakeup - cur); in ext4_lazyinit_thread()