[AMD Official Use Only - AMD Internal Distribution Only] Hi Stephen,
> -----Original Message----- > From: Stephen Hemminger <step...@networkplumber.org> > Sent: Monday, August 26, 2024 8:56 PM > To: Tummala, Sivaprasad <sivaprasad.tumm...@amd.com> > Cc: david.h...@intel.com; anatoly.bura...@intel.com; jer...@marvell.com; > radu.nico...@intel.com; gak...@marvell.com; cristian.dumitre...@intel.com; > Yigit, > Ferruh <ferruh.yi...@amd.com>; konstantin.anan...@huawei.com; > dev@dpdk.org > Subject: Re: [PATCH v2 1/4] power: refactor core power management library > > Caution: This message originated from an External Source. Use proper caution > when opening attachments, clicking links, or responding. > > > On Mon, 26 Aug 2024 13:06:46 +0000 > Sivaprasad Tummala <sivaprasad.tumm...@amd.com> wrote: > > > +static struct rte_power_core_ops acpi_ops = { > > + .name = "acpi", > > + .init = power_acpi_cpufreq_init, > > + .exit = power_acpi_cpufreq_exit, > > + .check_env_support = power_acpi_cpufreq_check_supported, > > + .get_avail_freqs = power_acpi_cpufreq_freqs, > > + .get_freq = power_acpi_cpufreq_get_freq, > > + .set_freq = power_acpi_cpufreq_set_freq, > > + .freq_down = power_acpi_cpufreq_freq_down, > > + .freq_up = power_acpi_cpufreq_freq_up, > > + .freq_max = power_acpi_cpufreq_freq_max, > > + .freq_min = power_acpi_cpufreq_freq_min, > > + .turbo_status = power_acpi_turbo_status, > > + .enable_turbo = power_acpi_enable_turbo, > > + .disable_turbo = power_acpi_disable_turbo, > > + .get_caps = power_acpi_get_capabilities }; > > + > > Can this be made const? > It is good for security and overall safety to have structures with function > pointers > marked const. The struct relies on dynamic list operations, it makes sense to keep it mutable. This will ensure we can effectively manage the operations as needed without running into issues with read-only restrictions.