[Public] > -----Original Message----- > From: Jan Beulich <jbeul...@suse.com> > Sent: Wednesday, June 11, 2025 11:34 PM > To: Penny, Zheng <penny.zh...@amd.com> > Cc: Huang, Ray <ray.hu...@amd.com>; xen-devel@lists.xenproject.org > Subject: Re: [PATCH v5 03/18] xen/cpufreq: extract _PSD info from "struct > xen_processor_performance" > > On 27.05.2025 10:48, Penny Zheng wrote: > > @@ -545,14 +597,9 @@ int set_px_pminfo(uint32_t acpi_id, struct > > xen_processor_performance *perf) > > > > if ( perf->flags & XEN_PX_PSD ) > > { > > - /* check domain coordination */ > > - if ( perf->shared_type != CPUFREQ_SHARED_TYPE_ALL && > > - perf->shared_type != CPUFREQ_SHARED_TYPE_ANY && > > - perf->shared_type != CPUFREQ_SHARED_TYPE_HW ) > > - { > > - ret = -EINVAL; > > + ret = check_psd_pminfo(perf->shared_type); > > + if ( ret ) > > goto out; > > - } > > > > pxpt->shared_type = perf->shared_type; > > memcpy(&pxpt->domain_info, &perf->domain_info, > > ... the need for this change. And even if there is a need, a follow-on > question would > be how this relates to the subject of this patch. >
I extracted this snippet out for sharing the same checking logic both in Px and later CPPC. They both need _PSD info I could change title to "xen/cpufreq: make _PSD info common" and also add description in commit message for introducing check_psd_pminfo() > Jan