linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] Clean up x86 CPU auto-loading
@ 2012-02-11 22:44 Ben Hutchings
  2012-02-11 22:46 ` [PATCH 1/5] x86/cpu: Fix overrun check in arch_print_cpu_modalias() Ben Hutchings
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Ben Hutchings @ 2012-02-11 22:44 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Thomas Gleixner, Ingo Molnar, H. Peter Anvin
  Cc: x86, Thomas Renninger, Andi Kleen, linux-kernel, Len Brown,
	linux-pm, Dave Jones, cpufreq

[-- Attachment #1: Type: text/plain, Size: 662 bytes --]

This series fixes a number of apparent bugs in the recent changes to
enable auto-loading by x86 CPU ID.

Ben.

Ben Hutchings (5):
  x86/cpu: Fix overrun check in arch_print_cpu_modalias()
  x86/cpu: Clean up modalias feature matching
  intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
  intel_idle: Revert change of auto_demotion_flags for Nehalem
  powernow-k7: Fix CPU family number

 arch/x86/kernel/cpu/match.c   |    5 ++---
 drivers/cpufreq/powernow-k7.c |    2 +-
 drivers/idle/intel_idle.c     |   12 ++++--------
 scripts/mod/file2alias.c      |    5 +++--
 4 files changed, 10 insertions(+), 14 deletions(-)

-- 
1.7.9



[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* [PATCH 1/5] x86/cpu: Fix overrun check in arch_print_cpu_modalias()
  2012-02-11 22:44 [PATCH 0/5] Clean up x86 CPU auto-loading Ben Hutchings
@ 2012-02-11 22:46 ` Ben Hutchings
  2012-02-11 22:52 ` [PATCH 2/5] x86/cpu: Clean up modalias feature matching Ben Hutchings
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 14+ messages in thread
From: Ben Hutchings @ 2012-02-11 22:46 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Thomas Gleixner, Ingo Molnar, H. Peter Anvin
  Cc: x86, Thomas Renninger, Andi Kleen, linux-kernel

snprintf() does not return a negative value when truncating.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 arch/x86/kernel/cpu/match.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/cpu/match.c b/arch/x86/kernel/cpu/match.c
index 940e2d4..2dfa52b 100644
--- a/arch/x86/kernel/cpu/match.c
+++ b/arch/x86/kernel/cpu/match.c
@@ -67,7 +67,7 @@ ssize_t arch_print_cpu_modalias(struct device *dev,
 	for (i = 0; i < NCAPINTS*32; i++) {
 		if (boot_cpu_has(i)) {
 			n = snprintf(buf, size, ",%04X", i);
-			if (n < 0) {
+			if (n >= size) {
 				WARN(1, "x86 features overflow page\n");
 				break;
 			}
-- 
1.7.9




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

* [PATCH 2/5] x86/cpu: Clean up modalias feature matching
  2012-02-11 22:44 [PATCH 0/5] Clean up x86 CPU auto-loading Ben Hutchings
  2012-02-11 22:46 ` [PATCH 1/5] x86/cpu: Fix overrun check in arch_print_cpu_modalias() Ben Hutchings
@ 2012-02-11 22:52 ` Ben Hutchings
  2012-02-11 22:54 ` [PATCH 3/5] intel_idle: Fix ID for Nehalem-EX Xeon in device ID table Ben Hutchings
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 14+ messages in thread
From: Ben Hutchings @ 2012-02-11 22:52 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Thomas Gleixner, Ingo Molnar, H. Peter Anvin
  Cc: x86, Thomas Renninger, Andi Kleen, linux-kernel

We currently include commas on both sides of the feature ID in a
modalias, but this prevents the lowest numbered feature of a CPU from
being matched.  Since all feature IDs have the same length, we do not
need to worry about substring matches, so omit commas from the
modalias entirely.

Avoid generating multiple adjacent wildcards when there is no
feature ID to match.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 arch/x86/kernel/cpu/match.c |    3 +--
 scripts/mod/file2alias.c    |    5 +++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kernel/cpu/match.c b/arch/x86/kernel/cpu/match.c
index 2dfa52b..5502b28 100644
--- a/arch/x86/kernel/cpu/match.c
+++ b/arch/x86/kernel/cpu/match.c
@@ -63,7 +63,7 @@ ssize_t arch_print_cpu_modalias(struct device *dev,
 		boot_cpu_data.x86_model);
 	size -= n;
 	buf += n;
-	size -= 2;
+	size -= 1;
 	for (i = 0; i < NCAPINTS*32; i++) {
 		if (boot_cpu_has(i)) {
 			n = snprintf(buf, size, ",%04X", i);
@@ -75,7 +75,6 @@ ssize_t arch_print_cpu_modalias(struct device *dev,
 			buf += n;
 		}
 	}
-	*buf++ = ',';
 	*buf++ = '\n';
 	return buf - bufptr;
 }
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c
index a468af0..78fd81f 100644
--- a/scripts/mod/file2alias.c
+++ b/scripts/mod/file2alias.c
@@ -1021,8 +1021,9 @@ static int do_x86cpu_entry(const char *filename, struct x86_cpu_id *id,
 	ADD(alias, "vendor:",  id->vendor != X86_VENDOR_ANY, id->vendor);
 	ADD(alias, ":family:", id->family != X86_FAMILY_ANY, id->family);
 	ADD(alias, ":model:",  id->model  != X86_MODEL_ANY,  id->model);
-	ADD(alias, ":feature:*,", id->feature != X86_FEATURE_ANY, id->feature);
-	strcat(alias, ",*");
+	strcat(alias, ":feature:*");
+	if (id->feature != X86_FEATURE_ANY)
+		sprintf(alias + strlen(alias), "%04X*", id->feature);
 	return 1;
 }
 ADD_TO_DEVTABLE("x86cpu", struct x86_cpu_id, do_x86cpu_entry);
-- 
1.7.9




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

* [PATCH 3/5] intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
  2012-02-11 22:44 [PATCH 0/5] Clean up x86 CPU auto-loading Ben Hutchings
  2012-02-11 22:46 ` [PATCH 1/5] x86/cpu: Fix overrun check in arch_print_cpu_modalias() Ben Hutchings
  2012-02-11 22:52 ` [PATCH 2/5] x86/cpu: Clean up modalias feature matching Ben Hutchings
@ 2012-02-11 22:54 ` Ben Hutchings
  2012-02-11 22:55 ` [PATCH 4/5] intel_idle: Revert change of auto_demotion_flags for Nehalem Ben Hutchings
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 14+ messages in thread
From: Ben Hutchings @ 2012-02-11 22:54 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Thomas Gleixner, Ingo Molnar, H. Peter Anvin
  Cc: x86, Thomas Renninger, Andi Kleen, linux-kernel, Len Brown, linux-pm

Commit b66b8b9a4a79087dde1b358a016e5c8739ccf186 ('intel-idle: convert
to x86_cpu_id auto probing') put two entries for model 0x2f
(Westmere-EX Xeon) in the device ID table and left out model 0x2e
(Nehalem-EX Xeon).

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 drivers/idle/intel_idle.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c
index 237fe57..a238649 100644
--- a/drivers/idle/intel_idle.c
+++ b/drivers/idle/intel_idle.c
@@ -360,7 +360,7 @@ static const struct x86_cpu_id intel_idle_ids[] = {
 	ICPU(0x1f, idle_cpu_nehalem),
 	ICPU(0x25, idle_cpu_westmere),
 	ICPU(0x2c, idle_cpu_westmere),
-	ICPU(0x2f, idle_cpu_westmere),
+	ICPU(0x2e, idle_cpu_westmere),
 	ICPU(0x1c, idle_cpu_atom),
 	ICPU(0x26, idle_cpu_lincroft),
 	ICPU(0x2f, idle_cpu_westmere),
-- 
1.7.9




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

* [PATCH 4/5] intel_idle: Revert change of auto_demotion_flags for Nehalem
  2012-02-11 22:44 [PATCH 0/5] Clean up x86 CPU auto-loading Ben Hutchings
                   ` (2 preceding siblings ...)
  2012-02-11 22:54 ` [PATCH 3/5] intel_idle: Fix ID for Nehalem-EX Xeon in device ID table Ben Hutchings
@ 2012-02-11 22:55 ` Ben Hutchings
  2012-02-12 17:10   ` Thomas Renninger
  2012-02-11 22:55 ` [PATCH 5/5] powernow-k7: Fix CPU family number Ben Hutchings
  2012-02-12 23:10 ` [PATCH 0/5] Clean up x86 CPU auto-loading Thomas Renninger
  5 siblings, 1 reply; 14+ messages in thread
From: Ben Hutchings @ 2012-02-11 22:55 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Thomas Gleixner, Ingo Molnar, H. Peter Anvin
  Cc: x86, Thomas Renninger, Andi Kleen, linux-kernel, Len Brown, linux-pm

Commit b66b8b9a4a79087dde1b358a016e5c8739ccf186 ('intel-idle: convert
to x86_cpu_id auto probing') added a distinction between Nehalem and
Westemere processors and changed auto_demotion_flags for the former to
0.  This was not explained in the commit message, so change it back.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
I have very little idea what I'm doing here...

Ben.

 drivers/idle/intel_idle.c |   12 ++++--------
 1 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c
index a238649..1c15e9b 100644
--- a/drivers/idle/intel_idle.c
+++ b/drivers/idle/intel_idle.c
@@ -331,10 +331,6 @@ static void auto_demotion_disable(void *dummy)
 
 static const struct idle_cpu idle_cpu_nehalem = {
 	.state_table = nehalem_cstates,
-};
-
-static const struct idle_cpu idle_cpu_westmere = {
-	.state_table = nehalem_cstates,
 	.auto_demotion_disable_flags = NHM_C1_AUTO_DEMOTE | NHM_C3_AUTO_DEMOTE,
 };
 
@@ -358,12 +354,12 @@ static const struct x86_cpu_id intel_idle_ids[] = {
 	ICPU(0x1a, idle_cpu_nehalem),
 	ICPU(0x1e, idle_cpu_nehalem),
 	ICPU(0x1f, idle_cpu_nehalem),
-	ICPU(0x25, idle_cpu_westmere),
-	ICPU(0x2c, idle_cpu_westmere),
-	ICPU(0x2e, idle_cpu_westmere),
+	ICPU(0x25, idle_cpu_nehalem),
+	ICPU(0x2c, idle_cpu_nehalem),
+	ICPU(0x2e, idle_cpu_nehalem),
 	ICPU(0x1c, idle_cpu_atom),
 	ICPU(0x26, idle_cpu_lincroft),
-	ICPU(0x2f, idle_cpu_westmere),
+	ICPU(0x2f, idle_cpu_nehalem),
 	ICPU(0x2a, idle_cpu_snb),
 	ICPU(0x2d, idle_cpu_snb),
 	{}
-- 
1.7.9




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

* [PATCH 5/5] powernow-k7: Fix CPU family number
  2012-02-11 22:44 [PATCH 0/5] Clean up x86 CPU auto-loading Ben Hutchings
                   ` (3 preceding siblings ...)
  2012-02-11 22:55 ` [PATCH 4/5] intel_idle: Revert change of auto_demotion_flags for Nehalem Ben Hutchings
@ 2012-02-11 22:55 ` Ben Hutchings
  2012-02-12 23:10 ` [PATCH 0/5] Clean up x86 CPU auto-loading Thomas Renninger
  5 siblings, 0 replies; 14+ messages in thread
From: Ben Hutchings @ 2012-02-11 22:55 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Thomas Gleixner, Ingo Molnar, H. Peter Anvin
  Cc: x86, Thomas Renninger, Andi Kleen, linux-kernel, Dave Jones, cpufreq

Commit fa8031aefec0cf7ea6c2387c93610d99d9659aa2 ('cpufreq: Add support
for x86 cpuinfo auto loading v4') seems to have inadvertently changed
the matched CPU family number from 6 to 7.  Change it back.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 drivers/cpufreq/powernow-k7.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/cpufreq/powernow-k7.c b/drivers/cpufreq/powernow-k7.c
index 501d167..cf7e1ee 100644
--- a/drivers/cpufreq/powernow-k7.c
+++ b/drivers/cpufreq/powernow-k7.c
@@ -112,7 +112,7 @@ static int check_fsb(unsigned int fsbspeed)
 }
 
 static const struct x86_cpu_id powernow_k7_cpuids[] = {
-	{ X86_VENDOR_AMD, 7, },
+	{ X86_VENDOR_AMD, 6, },
 	{}
 };
 MODULE_DEVICE_TABLE(x86cpu, powernow_k7_cpuids);
-- 
1.7.9



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

* Re: [PATCH 4/5] intel_idle: Revert change of auto_demotion_flags for Nehalem
  2012-02-11 22:55 ` [PATCH 4/5] intel_idle: Revert change of auto_demotion_flags for Nehalem Ben Hutchings
@ 2012-02-12 17:10   ` Thomas Renninger
  0 siblings, 0 replies; 14+ messages in thread
From: Thomas Renninger @ 2012-02-12 17:10 UTC (permalink / raw)
  To: Ben Hutchings
  Cc: Greg Kroah-Hartman, Thomas Gleixner, Ingo Molnar, H. Peter Anvin,
	x86, Andi Kleen, linux-kernel, Len Brown, linux-pm

On Saturday 11 February 2012 23:55:10 Ben Hutchings wrote:
> Commit b66b8b9a4a79087dde1b358a016e5c8739ccf186 ('intel-idle: convert
> to x86_cpu_id auto probing') added a distinction between Nehalem and
> Westemere processors and changed auto_demotion_flags for the former to
> 0.  This was not explained in the commit message, so change it back.

Yep, it looks like the change slipped in unintentionally.

   Thomas

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

* Re: [PATCH 0/5] Clean up x86 CPU auto-loading
  2012-02-11 22:44 [PATCH 0/5] Clean up x86 CPU auto-loading Ben Hutchings
                   ` (4 preceding siblings ...)
  2012-02-11 22:55 ` [PATCH 5/5] powernow-k7: Fix CPU family number Ben Hutchings
@ 2012-02-12 23:10 ` Thomas Renninger
  2012-02-13  1:26   ` H. Peter Anvin
  2012-02-13  2:18   ` Greg KH
  5 siblings, 2 replies; 14+ messages in thread
From: Thomas Renninger @ 2012-02-12 23:10 UTC (permalink / raw)
  To: Ben Hutchings, gregkh
  Cc: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, Andi Kleen,
	linux-kernel, Len Brown, linux-pm, Dave Jones, cpufreq

On Saturday 11 February 2012 23:44:16 Ben Hutchings wrote:
> This series fixes a number of apparent bugs in the recent changes to
> enable auto-loading by x86 CPU ID.

These all look correct.
I should have spotted the intel_idle modifications myself.
Good catch(es).

Greg: I expect these should get queued in your driver-core-next branch?

Thanks,

    Thomas
> 
> Ben.
> 
> Ben Hutchings (5):
>   x86/cpu: Fix overrun check in arch_print_cpu_modalias()
>   x86/cpu: Clean up modalias feature matching
>   intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
>   intel_idle: Revert change of auto_demotion_flags for Nehalem
>   powernow-k7: Fix CPU family number
> 
>  arch/x86/kernel/cpu/match.c   |    5 ++---
>  drivers/cpufreq/powernow-k7.c |    2 +-
>  drivers/idle/intel_idle.c     |   12 ++++--------
>  scripts/mod/file2alias.c      |    5 +++--
>  4 files changed, 10 insertions(+), 14 deletions(-)
> 
> -- 
> 1.7.9
> 
> 
> 


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

* Re: [PATCH 0/5] Clean up x86 CPU auto-loading
  2012-02-12 23:10 ` [PATCH 0/5] Clean up x86 CPU auto-loading Thomas Renninger
@ 2012-02-13  1:26   ` H. Peter Anvin
  2012-02-13 22:26     ` Greg KH
  2012-02-13  2:18   ` Greg KH
  1 sibling, 1 reply; 14+ messages in thread
From: H. Peter Anvin @ 2012-02-13  1:26 UTC (permalink / raw)
  To: Thomas Renninger
  Cc: Ben Hutchings, gregkh, Thomas Gleixner, Ingo Molnar, x86,
	Andi Kleen, linux-kernel, Len Brown, linux-pm, Dave Jones,
	cpufreq

On 02/12/2012 03:10 PM, Thomas Renninger wrote:
> On Saturday 11 February 2012 23:44:16 Ben Hutchings wrote:
>> This series fixes a number of apparent bugs in the recent changes to
>> enable auto-loading by x86 CPU ID.
> 
> These all look correct.
> I should have spotted the intel_idle modifications myself.
> Good catch(es).
> 
> Greg: I expect these should get queued in your driver-core-next branch?
> 

Either that or we can carry them in -tip as x86 patches, since there
isn't a pending conflict this time.

	-hpa


-- 
H. Peter Anvin, Intel Open Source Technology Center
I work for Intel.  I don't speak on their behalf.


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

* Re: [PATCH 0/5] Clean up x86 CPU auto-loading
  2012-02-12 23:10 ` [PATCH 0/5] Clean up x86 CPU auto-loading Thomas Renninger
  2012-02-13  1:26   ` H. Peter Anvin
@ 2012-02-13  2:18   ` Greg KH
  2012-02-13  3:00     ` H. Peter Anvin
  1 sibling, 1 reply; 14+ messages in thread
From: Greg KH @ 2012-02-13  2:18 UTC (permalink / raw)
  To: Thomas Renninger
  Cc: Ben Hutchings, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86,
	Andi Kleen, linux-kernel, Len Brown, linux-pm, Dave Jones,
	cpufreq

On Mon, Feb 13, 2012 at 12:10:56AM +0100, Thomas Renninger wrote:
> On Saturday 11 February 2012 23:44:16 Ben Hutchings wrote:
> > This series fixes a number of apparent bugs in the recent changes to
> > enable auto-loading by x86 CPU ID.
> 
> These all look correct.
> I should have spotted the intel_idle modifications myself.
> Good catch(es).
> 
> Greg: I expect these should get queued in your driver-core-next branch?

I can take them, unless the x86 maintainers object and want to take them
through their tree.

thanks,

greg k-h

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

* Re: [PATCH 0/5] Clean up x86 CPU auto-loading
  2012-02-13  2:18   ` Greg KH
@ 2012-02-13  3:00     ` H. Peter Anvin
  2012-02-13  6:43       ` Greg KH
  0 siblings, 1 reply; 14+ messages in thread
From: H. Peter Anvin @ 2012-02-13  3:00 UTC (permalink / raw)
  To: Greg KH
  Cc: Thomas Renninger, Ben Hutchings, Thomas Gleixner, Ingo Molnar,
	x86, Andi Kleen, linux-kernel, Len Brown, linux-pm, Dave Jones,
	cpufreq

On 02/12/2012 06:18 PM, Greg KH wrote:
> I can take them, unless the x86 maintainers object and want to take them
> through their tree.

Why don't we take them... I think it makes more sense long-term.

	-hpa

-- 
H. Peter Anvin, Intel Open Source Technology Center
I work for Intel.  I don't speak on their behalf.


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

* Re: [PATCH 0/5] Clean up x86 CPU auto-loading
  2012-02-13  3:00     ` H. Peter Anvin
@ 2012-02-13  6:43       ` Greg KH
  0 siblings, 0 replies; 14+ messages in thread
From: Greg KH @ 2012-02-13  6:43 UTC (permalink / raw)
  To: H. Peter Anvin
  Cc: Thomas Renninger, Ben Hutchings, Thomas Gleixner, Ingo Molnar,
	x86, Andi Kleen, linux-kernel, Len Brown, linux-pm, Dave Jones,
	cpufreq

On Sun, Feb 12, 2012 at 07:00:31PM -0800, H. Peter Anvin wrote:
> On 02/12/2012 06:18 PM, Greg KH wrote:
> > I can take them, unless the x86 maintainers object and want to take them
> > through their tree.
> 
> Why don't we take them... I think it makes more sense long-term.

Ok, but for some reason I thought they depended on the patches already
in my driver-core-next tree.  If that's not the case, please feel free
to take them through yours.

greg k-h

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

* Re: [PATCH 0/5] Clean up x86 CPU auto-loading
  2012-02-13  1:26   ` H. Peter Anvin
@ 2012-02-13 22:26     ` Greg KH
  2012-02-13 22:55       ` H. Peter Anvin
  0 siblings, 1 reply; 14+ messages in thread
From: Greg KH @ 2012-02-13 22:26 UTC (permalink / raw)
  To: H. Peter Anvin
  Cc: Thomas Renninger, Ben Hutchings, Thomas Gleixner, Ingo Molnar,
	x86, Andi Kleen, linux-kernel, Len Brown, linux-pm, Dave Jones,
	cpufreq

On Sun, Feb 12, 2012 at 05:26:44PM -0800, H. Peter Anvin wrote:
> On 02/12/2012 03:10 PM, Thomas Renninger wrote:
> > On Saturday 11 February 2012 23:44:16 Ben Hutchings wrote:
> >> This series fixes a number of apparent bugs in the recent changes to
> >> enable auto-loading by x86 CPU ID.
> > 
> > These all look correct.
> > I should have spotted the intel_idle modifications myself.
> > Good catch(es).
> > 
> > Greg: I expect these should get queued in your driver-core-next branch?
> > 
> 
> Either that or we can carry them in -tip as x86 patches, since there
> isn't a pending conflict this time.

Ok, if there are no dependancies on the driver-core-next tree, please
take this through the x86 trees.

thanks,

greg k-h

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

* Re: [PATCH 0/5] Clean up x86 CPU auto-loading
  2012-02-13 22:26     ` Greg KH
@ 2012-02-13 22:55       ` H. Peter Anvin
  0 siblings, 0 replies; 14+ messages in thread
From: H. Peter Anvin @ 2012-02-13 22:55 UTC (permalink / raw)
  To: Greg KH
  Cc: Thomas Renninger, Ben Hutchings, Thomas Gleixner, Ingo Molnar,
	x86, Andi Kleen, linux-kernel, Len Brown, linux-pm, Dave Jones,
	cpufreq

On 02/13/2012 02:26 PM, Greg KH wrote:
> On Sun, Feb 12, 2012 at 05:26:44PM -0800, H. Peter Anvin wrote:
> 
> Ok, if there are no dependancies on the driver-core-next tree, please
> take this through the x86 trees.
> 

My mistake; I thought these changes were upstream already.  So yes,
please take them.

Acked-by: H. Peter Anvin <hpa@zytor.com>

	-hpa
-- 
H. Peter Anvin, Intel Open Source Technology Center
I work for Intel.  I don't speak on their behalf.


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

end of thread, other threads:[~2012-02-13 22:55 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-11 22:44 [PATCH 0/5] Clean up x86 CPU auto-loading Ben Hutchings
2012-02-11 22:46 ` [PATCH 1/5] x86/cpu: Fix overrun check in arch_print_cpu_modalias() Ben Hutchings
2012-02-11 22:52 ` [PATCH 2/5] x86/cpu: Clean up modalias feature matching Ben Hutchings
2012-02-11 22:54 ` [PATCH 3/5] intel_idle: Fix ID for Nehalem-EX Xeon in device ID table Ben Hutchings
2012-02-11 22:55 ` [PATCH 4/5] intel_idle: Revert change of auto_demotion_flags for Nehalem Ben Hutchings
2012-02-12 17:10   ` Thomas Renninger
2012-02-11 22:55 ` [PATCH 5/5] powernow-k7: Fix CPU family number Ben Hutchings
2012-02-12 23:10 ` [PATCH 0/5] Clean up x86 CPU auto-loading Thomas Renninger
2012-02-13  1:26   ` H. Peter Anvin
2012-02-13 22:26     ` Greg KH
2012-02-13 22:55       ` H. Peter Anvin
2012-02-13  2:18   ` Greg KH
2012-02-13  3:00     ` H. Peter Anvin
2012-02-13  6:43       ` Greg KH

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).