All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][retry] Report the number of processors in PowerNow-k8 correctly [2/2]
@ 2007-03-27 19:23 Mark Langsdorf
  2007-04-05 20:29 ` Dave Jones
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Langsdorf @ 2007-03-27 19:23 UTC (permalink / raw)
  To: cpufreq

The PowerNow! driver for Opteron reports the number of cores
in the system, but claims to report the number of processors.
Fix this minor cosmetic bug.

Signed-Off-By: Bhavana Nagendra <bhavana.nagendra@amd.com>
Acked-by: Mark Langsdorf <mark.langsdorf@amd.com>

--- linux-2.6.18.x86_64/arch/i386/kernel/cpu/cpufreq/powernow-k8.c.orig	2007-03-22 16:13:04.630175768 -0500
+++ linux-2.6.18.x86_64/arch/i386/kernel/cpu/cpufreq/powernow-k8.c	2007-03-22 16:19:40.153047152 -0500
@@ -840,7 +840,8 @@ static int powernow_k8_cpu_init_acpi(str
 
 	/* fill in data */
 	data->numps = data->acpi_data.state_count;
-	print_basics(data);
+	if (first_cpu(cpu_core_map[data->cpu]) == data->cpu)
+		print_basics(data);
 	powernow_k8_acpi_pst_values(data, 0);
 
 	/* notify BIOS that we exist */

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

* Re: [PATCH][retry] Report the number of processors in PowerNow-k8 correctly [2/2]
  2007-03-27 19:23 [PATCH][retry] Report the number of processors in PowerNow-k8 correctly [2/2] Mark Langsdorf
@ 2007-04-05 20:29 ` Dave Jones
  2007-04-05 21:21   ` [PATCH][retry 2] Report the number of processors in PowerNow-k8 correctly Mark Langsdorf
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Jones @ 2007-04-05 20:29 UTC (permalink / raw)
  To: Mark Langsdorf; +Cc: cpufreq

On Tue, Mar 27, 2007 at 02:23:11PM -0500, Mark Langsdorf wrote:
 > The PowerNow! driver for Opteron reports the number of cores
 > in the system, but claims to report the number of processors.
 > Fix this minor cosmetic bug.
 > 
 > Signed-Off-By: Bhavana Nagendra <bhavana.nagendra@amd.com>
 > Acked-by: Mark Langsdorf <mark.langsdorf@amd.com>
 > 
 > --- linux-2.6.18.x86_64/arch/i386/kernel/cpu/cpufreq/powernow-k8.c.orig 
 > 2007-03-22 16:13:04.630175768 -0500
 > +++ linux-2.6.18.x86_64/arch/i386/kernel/cpu/cpufreq/powernow-k8.c 
 > 2007-03-22 16:19:40.153047152 -0500
 > @@ -840,7 +840,8 @@ static int powernow_k8_cpu_init_acpi(str
 > 
 > 	/* fill in data */
 > 	data->numps = data->acpi_data.state_count;
 > -	print_basics(data);
 > +	if (first_cpu(cpu_core_map[data->cpu]) == data->cpu)
 > +		print_basics(data);
 > 	powernow_k8_acpi_pst_values(data, 0);
 > 
 > 	/* notify BIOS that we exist */

Back from vacation..

I rolled both of these together into the same diff, as they're both
the same changelog, so it doesn't make a huge amount of sense to me
to have them as separate commits.
But sadly..

(16:23:19:davej@hera:cpufreq)$ git-applymbox -k ~/Mail/mbox 
1 patch(es) to process.

Applying '[CPUFREQ] Report the number of processors in PowerNow-k8 correctly'

error: i386/kernel/cpu/cpufreq/powernow-k8.c: does not exist in index

Bah.. some hand fixing up of the path in the diff later..

(16:23:28:davej@hera:cpufreq)$ vim ~/Mail/mbox 
(16:23:41:davej@hera:cpufreq)$ git-applymbox -k ~/Mail/mbox 
1 patch(es) to process.

Applying '[CPUFREQ] Report the number of processors in PowerNow-k8 correctly'

error: patch failed: arch/i386/kernel/cpu/cpufreq/powernow-k8.c:661
error: arch/i386/kernel/cpu/cpufreq/powernow-k8.c: patch does not apply


I give up..

	Dave

-- 
http://www.codemonkey.org.uk

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

* Re: [PATCH][retry 2] Report the number of processors in PowerNow-k8 correctly
  2007-04-05 20:29 ` Dave Jones
@ 2007-04-05 21:21   ` Mark Langsdorf
  2007-04-05 21:30     ` Dave Jones
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Langsdorf @ 2007-04-05 21:21 UTC (permalink / raw)
  To: Dave Jones; +Cc: cpufreq

I hope you had a good vacation.
> Applying '[CPUFREQ] Report the number of processors in PowerNow-k8 correctly'
> 
> error: patch failed: arch/i386/kernel/cpu/cpufreq/powernow-k8.c:661
> error: arch/i386/kernel/cpu/cpufreq/powernow-k8.c: patch does not apply

Weird.  I'm not doing anything complicated.  Consolidated
patch below.

The PowerNow! driver for Opteron reports the number of cores
in the system, but claims to report the number of processors.
Fix this minor cosmetic bug.

Signed-Off-By: Bhavana Nagendra <bhavana.nagendra@amd.com>
Acked-by: Mark Langsdorf <mark.langsdorf@amd.com>

--- linux-2.6.20/arch/i386/kernel/cpu/cpufreq/powernow-k8.c.old 
2007-04-05 15:43:36.000000000 -0500
+++ linux-2.6.20/arch/i386/kernel/cpu/cpufreq/powernow-k8.c 
2007-04-05 15:45:03.000000000 -0500
@@ -661,7 +661,8 @@ static int fill_powernow_table(struct po

    dprintk("cfid 0x%x, cvid 0x%x\n", data->currfid, data->currvid);
    data->powernow_table = powernow_table;
-  print_basics(data);
+  if (first_cpu(cpu_core_map[data->cpu]) == data->cpu)
+       print_basics(data);

    for (j = 0; j < data->numps; j++)
         if ((pst[j].fid==data->currfid) && (pst[j].vid==data->currvid))
@@ -814,7 +815,8 @@ static int powernow_k8_cpu_init_acpi(str

    /* fill in data */
    data->numps = data->acpi_data.state_count;
-  print_basics(data);
+  if (first_cpu(cpu_core_map[data->cpu]) == data->cpu)
+       print_basics(data);
    powernow_k8_acpi_pst_values(data, 0);

    /* notify BIOS that we exist */

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

* Re: [PATCH][retry 2] Report the number of processors in PowerNow-k8 correctly
  2007-04-05 21:21   ` [PATCH][retry 2] Report the number of processors in PowerNow-k8 correctly Mark Langsdorf
@ 2007-04-05 21:30     ` Dave Jones
  0 siblings, 0 replies; 4+ messages in thread
From: Dave Jones @ 2007-04-05 21:30 UTC (permalink / raw)
  To: Mark Langsdorf; +Cc: cpufreq

On Thu, Apr 05, 2007 at 04:21:02PM -0500, Mark Langsdorf wrote:
 > I hope you had a good vacation.
 > >Applying '[CPUFREQ] Report the number of processors in PowerNow-k8 
 > >correctly'
 > >
 > >error: patch failed: arch/i386/kernel/cpu/cpufreq/powernow-k8.c:661
 > >error: arch/i386/kernel/cpu/cpufreq/powernow-k8.c: patch does not apply
 > 
 > Weird.  I'm not doing anything complicated.  Consolidated
 > patch below.

It's thunderbird. It's changing tabs to spaces.

	Dave

-- 
http://www.codemonkey.org.uk

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

end of thread, other threads:[~2007-04-05 21:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-27 19:23 [PATCH][retry] Report the number of processors in PowerNow-k8 correctly [2/2] Mark Langsdorf
2007-04-05 20:29 ` Dave Jones
2007-04-05 21:21   ` [PATCH][retry 2] Report the number of processors in PowerNow-k8 correctly Mark Langsdorf
2007-04-05 21:30     ` Dave Jones

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.