Home
last modified time | relevance | path

Searched refs:gov (Results 1 – 25 of 59) sorted by relevance

123

/openbmc/linux/drivers/watchdog/
H A Dwatchdog_pretimeout.c36 struct watchdog_governor *gov; member
45 if (sysfs_streq(gov_name, priv->gov->name)) in find_governor_by_name()
59 count += sysfs_emit_at(buf, count, "%s\n", priv->gov->name); in watchdog_pretimeout_available_governors_get()
71 if (wdd->gov) in watchdog_pretimeout_governor_get()
72 count = sysfs_emit(buf, "%s\n", wdd->gov->name); in watchdog_pretimeout_governor_get()
92 wdd->gov = priv->gov; in watchdog_pretimeout_governor_set()
105 if (!wdd->gov) { in watchdog_notify_pretimeout()
110 wdd->gov->pretimeout(wdd); in watchdog_notify_pretimeout()
115 int watchdog_register_governor(struct watchdog_governor *gov) in watchdog_register_governor() argument
126 if (find_governor_by_name(gov->name)) { in watchdog_register_governor()
[all …]
H A Dwatchdog_pretimeout.h16 int watchdog_register_governor(struct watchdog_governor *gov);
17 void watchdog_unregister_governor(struct watchdog_governor *gov);
/openbmc/linux/drivers/cpuidle/
H A Dgovernor.c33 struct cpuidle_governor *gov; in cpuidle_find_governor() local
35 list_for_each_entry(gov, &cpuidle_governors, governor_list) in cpuidle_find_governor()
36 if (!strncasecmp(str, gov->name, CPUIDLE_NAME_LEN)) in cpuidle_find_governor()
37 return gov; in cpuidle_find_governor()
47 int cpuidle_switch_governor(struct cpuidle_governor *gov) in cpuidle_switch_governor() argument
51 if (!gov) in cpuidle_switch_governor()
54 if (gov == cpuidle_curr_governor) in cpuidle_switch_governor()
64 cpuidle_curr_governor = gov; in cpuidle_switch_governor()
70 pr_info("cpuidle: using governor %s\n", gov->name); in cpuidle_switch_governor()
79 int cpuidle_register_governor(struct cpuidle_governor *gov) in cpuidle_register_governor() argument
[all …]
H A Ddriver.c271 struct cpuidle_governor *gov; in cpuidle_register_driver() local
281 gov = cpuidle_find_governor(drv->governor); in cpuidle_register_driver()
282 if (gov) { in cpuidle_register_driver()
284 if (cpuidle_switch_governor(gov) < 0) in cpuidle_register_driver()
H A Dcpuidle.h27 extern int cpuidle_switch_governor(struct cpuidle_governor *gov);
H A Dsysfs.c82 struct cpuidle_governor *gov; in store_current_governor() local
90 list_for_each_entry(gov, &cpuidle_governors, governor_list) { in store_current_governor()
91 if (!strncmp(gov->name, gov_name, CPUIDLE_NAME_LEN)) { in store_current_governor()
92 ret = cpuidle_switch_governor(gov); in store_current_governor()
/openbmc/linux/drivers/cpufreq/
H A Dcpufreq_governor.c236 struct dbs_governor *gov; in dbs_work_handler() local
240 gov = dbs_governor_of(policy); in dbs_work_handler()
247 gov_update_sample_delay(policy_dbs, gov->gov_dbs_update(policy)); in dbs_work_handler()
350 struct dbs_governor *gov) in alloc_policy_dbs_info() argument
356 policy_dbs = gov->alloc(); in alloc_policy_dbs_info()
376 struct dbs_governor *gov) in free_policy_dbs_info() argument
388 gov->free(policy_dbs); in free_policy_dbs_info()
394 struct dbs_governor *gov = dbs_data->gov; in cpufreq_dbs_data_release() local
396 gov->exit(dbs_data); in cpufreq_dbs_data_release()
402 struct dbs_governor *gov = dbs_governor_of(policy); in cpufreq_dbs_governor_init() local
[all …]
H A Dcpufreq_governor.h40 struct dbs_governor *gov; member
126 struct cpufreq_governor gov; member
145 return container_of(policy->governor, struct dbs_governor, gov); in dbs_governor_of()
H A Dcpufreq.c1108 struct cpufreq_governor *gov = NULL; in cpufreq_init_policy() local
1114 gov = get_governor(policy->last_governor); in cpufreq_init_policy()
1115 if (gov) { in cpufreq_init_policy()
1117 gov->name, policy->cpu); in cpufreq_init_policy()
1119 gov = get_governor(default_governor); in cpufreq_init_policy()
1122 if (!gov) { in cpufreq_init_policy()
1123 gov = cpufreq_default_governor(); in cpufreq_init_policy()
1124 __module_get(gov->owner); in cpufreq_init_policy()
1147 ret = cpufreq_set_policy(policy, gov, pol); in cpufreq_init_policy()
1148 if (gov) in cpufreq_init_policy()
[all …]
H A Dcpufreq_conservative.c318 .gov = CPUFREQ_DBS_GOVERNOR_INITIALIZER("conservative"),
328 #define CPU_FREQ_GOV_CONSERVATIVE (cs_governor.gov)
/openbmc/openbmc/poky/meta/conf/distro/include/
H A Dcve-extra-exclusions.inc18 # strace https://nvd.nist.gov/vuln/detail/CVE-2000-0006
22 # epiphany https://nvd.nist.gov/vuln/detail/CVE-2005-0238
30 # glibc https://nvd.nist.gov/vuln/detail/CVE-2010-4756
37 # go https://nvd.nist.gov/vuln/detail/CVE-2020-29509
38 # go https://nvd.nist.gov/vuln/detail/CVE-2020-29511
68 # qemu:qemu-native:qemu-system-native https://nvd.nist.gov/vuln/detail/CVE-2021-20255
74 # qemu:qemu-native:qemu-system-native https://nvd.nist.gov/vuln/detail/CVE-2019-12067
80 # nasm:nasm-native https://nvd.nist.gov/vuln/detail/CVE-2020-18974
/openbmc/linux/drivers/pmdomain/renesas/
H A Drmobile-sysc.c34 struct dev_power_governor *gov; member
101 struct dev_power_governor *gov = rmobile_pd->gov; in rmobile_init_pm_domain() local
113 pm_genpd_init(genpd, gov ? : &simple_qos_governor, false); in rmobile_init_pm_domain()
232 pd->gov = &pm_domain_always_on_gov; in rmobile_setup_pm_domain()
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DJPL-image3 …ges and video on JPL public web sites (public sites ending with a jpl.nasa.gov address) may be use…
13 … Washington, DC 20546, telephone (202) 358-1713, fax (202) 358-4331, email bert.ulrich@hq.nasa.gov.
15 …e JPL logo may be directed to the Institutional Communications Office, email instcomm@jpl.nasa.gov.
19 …als should direct requests to the Institutional Communications Office, email instcomm@jpl.nasa.gov.
H A Dmpich210 … (630) 252-5986; e-mail: gropp@mcs.anl.gov E. Lusk: (630) 252-7852; FAX: (630) 252-5986; e-mail: l…
/openbmc/linux/tools/power/cpupower/utils/
H A Dcpufreq-set.c203 char gov[20]; in cmd_freq_set() local
264 if ((sscanf(optarg, "%19s", gov)) != 1) { in cmd_freq_set()
268 new_pol.governor = gov; in cmd_freq_set()
/openbmc/linux/drivers/thermal/
H A Dthermal_core.c198 struct thermal_governor *gov; in thermal_zone_device_set_policy() local
207 gov = __find_governor(strim(policy)); in thermal_zone_device_set_policy()
208 if (!gov) in thermal_zone_device_set_policy()
211 ret = thermal_set_governor(tz, gov); in thermal_zone_device_set_policy()
265 struct thermal_governor **gov; in thermal_register_governors() local
267 for_each_governor_table(gov) { in thermal_register_governors()
268 if (gov == governor) in thermal_register_governors()
270 thermal_unregister_governor(*gov); in thermal_register_governors()
535 struct thermal_governor *gov; in for_each_thermal_governor() local
539 list_for_each_entry(gov, &thermal_governor_list, governor_list) { in for_each_thermal_governor()
[all …]
/openbmc/openbmc/poky/meta/recipes-core/glibc/
H A Dglibc_2.40.bb4 # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-1010022
5 # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-1010023
6 # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-1010024
13 # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-1010025
/openbmc/linux/drivers/devfreq/
H A Dimx-bus.c90 const char *gov = DEVFREQ_GOV_USERSPACE; in imx_bus_probe() local
126 gov, NULL); in imx_bus_probe()
H A Dimx8m-ddrc.c370 const char *gov = DEVFREQ_GOV_USERSPACE; in imx8m_ddrc_probe() local
426 gov, NULL); in imx8m_ddrc_probe()
H A Ddevfreq.c792 const struct devfreq_governor *gov);
794 const struct devfreq_governor *gov);
1932 const struct devfreq_governor *gov) in create_sysfs_files() argument
1934 if (IS_SUPPORTED_ATTR(gov->attrs, POLLING_INTERVAL)) in create_sysfs_files()
1936 if (IS_SUPPORTED_ATTR(gov->attrs, TIMER)) in create_sysfs_files()
1942 const struct devfreq_governor *gov) in remove_sysfs_files() argument
1944 if (IS_SUPPORTED_ATTR(gov->attrs, POLLING_INTERVAL)) in remove_sysfs_files()
1947 if (IS_SUPPORTED_ATTR(gov->attrs, TIMER)) in remove_sysfs_files()
/openbmc/openbmc/meta-security/recipes-scanners/arpwatch/
H A Darpwatch_3.3.bb3 HOME_PAGE = "http://ee.lbl.gov/"
8 SRC_URI = "https://ee.lbl.gov/downloads/arpwatch/${BP}.tar.gz \
/openbmc/linux/include/linux/
H A Dpm_domain.h126 struct dev_power_governor *gov; member
232 struct dev_power_governor *gov, bool is_off);
272 struct dev_power_governor *gov, bool is_off) in pm_genpd_init() argument
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/dvb-apps/files/dvb-scan-table/dvb-t/
H A Dco-All4 # See: https://www.crcom.gov.co/recursos_user/Documentos_CRC_2012/Actividades_Regulatorias/TDT/docu…
/openbmc/linux/tools/power/cpupower/lib/
H A Dcpufreq.c602 char gov[SYSFS_PATH_MAX]; in cpufreq_set_policy() local
613 if (verify_gov(gov, policy->governor)) in cpufreq_set_policy()
642 gov, strlen(gov)); in cpufreq_set_policy()
/openbmc/linux/drivers/base/power/
H A Ddomain.c720 if (genpd->gov && genpd->gov->power_down_ok) { in genpd_power_off()
721 if (!genpd->gov->power_down_ok(&genpd->domain)) in genpd_power_off()
726 if (!genpd->gov) in genpd_power_off()
952 suspend_ok = genpd->gov ? genpd->gov->suspend_ok : NULL; in genpd_runtime_suspend()
1992 if (genpd->gov) { in genpd_alloc_data()
2052 struct dev_power_governor *gov, bool is_off) in pm_genpd_init() argument
2064 genpd->gov = gov; in pm_genpd_init()
2090 if (gov == &pm_domain_always_on_gov) in pm_genpd_init()
2101 if (!gov && genpd->state_count > 1) in pm_genpd_init()

123