linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cpupower tools: Fix error when running cpupower monitor
@ 2015-08-03  6:16 Shreyas B. Prabhu
  2015-08-10 12:28 ` Thomas Renninger
  0 siblings, 1 reply; 7+ messages in thread
From: Shreyas B. Prabhu @ 2015-08-03  6:16 UTC (permalink / raw)
  To: rjw, trenn; +Cc: linux-kernel, linux-pm, pavsubra, Shreyas B. Prabhu

get_cpu_topology() tries to get topology info from all cpus by reading
files in the topology sysfs dir. If a cpu is offlined, since it doesn't
have topology dir, this function fails and returns -1. This causes
functions relying on get_cpu_topology() to fail. For example-

$ cpupower monitor
Cannot read number of available processors

Fix this by skipping fetching topology info for offline cpus.

Signed-off-by: Shreyas B. Prabhu <shreyas@linux.vnet.ibm.com>
Reported-by: Pavaman Subramaniyam <pavsubra@linux.vnet.ibm.com>
---
 tools/power/cpupower/utils/helpers/topology.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/power/cpupower/utils/helpers/topology.c b/tools/power/cpupower/utils/helpers/topology.c
index c13120af519b..cea398c176e7 100644
--- a/tools/power/cpupower/utils/helpers/topology.c
+++ b/tools/power/cpupower/utils/helpers/topology.c
@@ -73,6 +73,8 @@ int get_cpu_topology(struct cpupower_topology *cpu_top)
 	for (cpu = 0; cpu < cpus; cpu++) {
 		cpu_top->core_info[cpu].cpu = cpu;
 		cpu_top->core_info[cpu].is_online = sysfs_is_cpu_online(cpu);
+		if (!cpu_top->core_info[cpu].is_online)
+			continue;
 		if(sysfs_topology_read_file(
 			cpu,
 			"physical_package_id",
-- 
1.9.3


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] cpupower tools: Fix error when running cpupower monitor
  2015-08-03  6:16 [PATCH] cpupower tools: Fix error when running cpupower monitor Shreyas B. Prabhu
@ 2015-08-10 12:28 ` Thomas Renninger
  2015-08-17  7:52   ` Shreyas B Prabhu
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Renninger @ 2015-08-10 12:28 UTC (permalink / raw)
  To: Shreyas B. Prabhu; +Cc: rjw, pavsubra, linux-kernel, linux-pm

On Monday, August 03, 2015 11:46:00 AM Shreyas B. Prabhu wrote:
> get_cpu_topology() tries to get topology info from all cpus by reading
> files in the topology sysfs dir. If a cpu is offlined, since it doesn't
> have topology dir, this function fails and returns -1. This causes
> functions relying on get_cpu_topology() to fail. For example-
> 
> $ cpupower monitor
> Cannot read number of available processors
> 
> Fix this by skipping fetching topology info for offline cpus.

Looks fine.

Thanks!

Acked-by: Thomas Renninger <trenn@suse.de>


> 
> Signed-off-by: Shreyas B. Prabhu <shreyas@linux.vnet.ibm.com>
> Reported-by: Pavaman Subramaniyam <pavsubra@linux.vnet.ibm.com>
> ---
>  tools/power/cpupower/utils/helpers/topology.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/tools/power/cpupower/utils/helpers/topology.c
> b/tools/power/cpupower/utils/helpers/topology.c index
> c13120af519b..cea398c176e7 100644
> --- a/tools/power/cpupower/utils/helpers/topology.c
> +++ b/tools/power/cpupower/utils/helpers/topology.c
> @@ -73,6 +73,8 @@ int get_cpu_topology(struct cpupower_topology *cpu_top)
>  	for (cpu = 0; cpu < cpus; cpu++) {
>  		cpu_top->core_info[cpu].cpu = cpu;
>  		cpu_top->core_info[cpu].is_online = sysfs_is_cpu_online(cpu);
> +		if (!cpu_top->core_info[cpu].is_online)
> +			continue;
>  		if(sysfs_topology_read_file(
>  			cpu,
>  			"physical_package_id",


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cpupower tools: Fix error when running cpupower monitor
  2015-08-10 12:28 ` Thomas Renninger
@ 2015-08-17  7:52   ` Shreyas B Prabhu
  2015-08-25 11:59     ` Shreyas B Prabhu
  0 siblings, 1 reply; 7+ messages in thread
From: Shreyas B Prabhu @ 2015-08-17  7:52 UTC (permalink / raw)
  To: Thomas Renninger; +Cc: rjw, pavsubra, linux-kernel, linux-pm



On 08/10/2015 05:58 PM, Thomas Renninger wrote:
> On Monday, August 03, 2015 11:46:00 AM Shreyas B. Prabhu wrote:
>> get_cpu_topology() tries to get topology info from all cpus by reading
>> files in the topology sysfs dir. If a cpu is offlined, since it doesn't
>> have topology dir, this function fails and returns -1. This causes
>> functions relying on get_cpu_topology() to fail. For example-
>>
>> $ cpupower monitor
>> Cannot read number of available processors
>>
>> Fix this by skipping fetching topology info for offline cpus.
> 
> Looks fine.
> 
> Thanks!
> 
> Acked-by: Thomas Renninger <trenn@suse.de>
> 

Thanks Thomas!
Rafael, can you please pick this patch?


Thanks,
Shreyas

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cpupower tools: Fix error when running cpupower monitor
  2015-08-17  7:52   ` Shreyas B Prabhu
@ 2015-08-25 11:59     ` Shreyas B Prabhu
  2015-09-03  6:21       ` Shreyas B Prabhu
  0 siblings, 1 reply; 7+ messages in thread
From: Shreyas B Prabhu @ 2015-08-25 11:59 UTC (permalink / raw)
  To: rjw; +Cc: Thomas Renninger, pavsubra, linux-kernel, linux-pm



On 08/17/2015 01:22 PM, Shreyas B Prabhu wrote:
> 
> 
> On 08/10/2015 05:58 PM, Thomas Renninger wrote:
>> On Monday, August 03, 2015 11:46:00 AM Shreyas B. Prabhu wrote:
>>> get_cpu_topology() tries to get topology info from all cpus by reading
>>> files in the topology sysfs dir. If a cpu is offlined, since it doesn't
>>> have topology dir, this function fails and returns -1. This causes
>>> functions relying on get_cpu_topology() to fail. For example-
>>>
>>> $ cpupower monitor
>>> Cannot read number of available processors
>>>
>>> Fix this by skipping fetching topology info for offline cpus.
>>
>> Looks fine.
>>
>> Thanks!
>>
>> Acked-by: Thomas Renninger <trenn@suse.de>
>>
> 
> Thanks Thomas!
> Rafael, can you please pick this patch?
> 
> 


Hi Rafael,

If this patch looks good can you please pick this up?


Thanks,
Shreyas

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cpupower tools: Fix error when running cpupower monitor
  2015-08-25 11:59     ` Shreyas B Prabhu
@ 2015-09-03  6:21       ` Shreyas B Prabhu
  2015-09-04 14:51         ` Rafael J. Wysocki
  0 siblings, 1 reply; 7+ messages in thread
From: Shreyas B Prabhu @ 2015-09-03  6:21 UTC (permalink / raw)
  To: rjw; +Cc: Thomas Renninger, pavsubra, linux-kernel, linux-pm



On 08/25/2015 05:29 PM, Shreyas B Prabhu wrote:
> 
> 
> On 08/17/2015 01:22 PM, Shreyas B Prabhu wrote:
>>
>>
>> On 08/10/2015 05:58 PM, Thomas Renninger wrote:
>>> On Monday, August 03, 2015 11:46:00 AM Shreyas B. Prabhu wrote:
>>>> get_cpu_topology() tries to get topology info from all cpus by reading
>>>> files in the topology sysfs dir. If a cpu is offlined, since it doesn't
>>>> have topology dir, this function fails and returns -1. This causes
>>>> functions relying on get_cpu_topology() to fail. For example-
>>>>
>>>> $ cpupower monitor
>>>> Cannot read number of available processors
>>>>
>>>> Fix this by skipping fetching topology info for offline cpus.
>>>
>>> Looks fine.
>>>
>>> Thanks!
>>>
>>> Acked-by: Thomas Renninger <trenn@suse.de>
>>>
>>
>> Thanks Thomas!
>> Rafael, can you please pick this patch?
>>
>>
> 
> 
> Hi Rafael,
> 
> If this patch looks good can you please pick this up?
> 
> 
> Thanks,
> Shreyas
> 

Hi Rafael,

If this patch looks good can you please pick this up?


Thanks,
Shreyas


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cpupower tools: Fix error when running cpupower monitor
  2015-09-04 14:51         ` Rafael J. Wysocki
@ 2015-09-04 14:29           ` Shreyas B Prabhu
  0 siblings, 0 replies; 7+ messages in thread
From: Shreyas B Prabhu @ 2015-09-04 14:29 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Thomas Renninger, pavsubra, linux-kernel, linux-pm


>>
>> Hi Rafael,
>>
>> If this patch looks good can you please pick this up?
> 
> I picked it up last week, sorry for being silent about that.
> 
> It should be in the Linus' tree already.
> 

Thanks! Sorry I missed the fact that you had picked it last week.

Thanks,
Shreyas


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cpupower tools: Fix error when running cpupower monitor
  2015-09-03  6:21       ` Shreyas B Prabhu
@ 2015-09-04 14:51         ` Rafael J. Wysocki
  2015-09-04 14:29           ` Shreyas B Prabhu
  0 siblings, 1 reply; 7+ messages in thread
From: Rafael J. Wysocki @ 2015-09-04 14:51 UTC (permalink / raw)
  To: Shreyas B Prabhu; +Cc: Thomas Renninger, pavsubra, linux-kernel, linux-pm

On Thursday, September 03, 2015 11:51:22 AM Shreyas B Prabhu wrote:
> 
> On 08/25/2015 05:29 PM, Shreyas B Prabhu wrote:
> > 
> > 
> > On 08/17/2015 01:22 PM, Shreyas B Prabhu wrote:
> >>
> >>
> >> On 08/10/2015 05:58 PM, Thomas Renninger wrote:
> >>> On Monday, August 03, 2015 11:46:00 AM Shreyas B. Prabhu wrote:
> >>>> get_cpu_topology() tries to get topology info from all cpus by reading
> >>>> files in the topology sysfs dir. If a cpu is offlined, since it doesn't
> >>>> have topology dir, this function fails and returns -1. This causes
> >>>> functions relying on get_cpu_topology() to fail. For example-
> >>>>
> >>>> $ cpupower monitor
> >>>> Cannot read number of available processors
> >>>>
> >>>> Fix this by skipping fetching topology info for offline cpus.
> >>>
> >>> Looks fine.
> >>>
> >>> Thanks!
> >>>
> >>> Acked-by: Thomas Renninger <trenn@suse.de>
> >>>
> >>
> >> Thanks Thomas!
> >> Rafael, can you please pick this patch?
> >>
> >>
> > 
> > 
> > Hi Rafael,
> > 
> > If this patch looks good can you please pick this up?
> > 
> > 
> > Thanks,
> > Shreyas
> > 
> 
> Hi Rafael,
> 
> If this patch looks good can you please pick this up?

I picked it up last week, sorry for being silent about that.

It should be in the Linus' tree already.

Thanks,
Rafael

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-09-04 14:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-03  6:16 [PATCH] cpupower tools: Fix error when running cpupower monitor Shreyas B. Prabhu
2015-08-10 12:28 ` Thomas Renninger
2015-08-17  7:52   ` Shreyas B Prabhu
2015-08-25 11:59     ` Shreyas B Prabhu
2015-09-03  6:21       ` Shreyas B Prabhu
2015-09-04 14:51         ` Rafael J. Wysocki
2015-09-04 14:29           ` Shreyas B Prabhu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).