Home
last modified time | relevance | path

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

/freebsd-11-stable/sys/kern/
HDkern_cpu.c72 SLIST_HEAD(, cf_saved_freq) saved_freq;
160 SLIST_INIT(&sc->saved_freq); in cpufreq_attach()
216 struct cf_saved_freq *saved_freq; in cpufreq_detach() local
223 while ((saved_freq = SLIST_FIRST(&sc->saved_freq)) != NULL) { in cpufreq_detach()
224 SLIST_REMOVE_HEAD(&sc->saved_freq, link); in cpufreq_detach()
225 free(saved_freq, M_TEMP); in cpufreq_detach()
243 struct cf_saved_freq *saved_freq, *curr_freq; in cf_set_method() local
250 saved_freq = NULL; in cf_set_method()
296 saved_freq = SLIST_FIRST(&sc->saved_freq); in cf_set_method()
297 if (saved_freq == NULL) { in cf_set_method()
[all …]