* [PATCH] x86: mtrr fix debug parameter
@ 2009-01-20 9:37 Thomas Renninger
2009-01-20 10:10 ` Jan Beulich
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Renninger @ 2009-01-20 9:37 UTC (permalink / raw)
To: linux-kernel; +Cc: mingo, Jan Beulich
while looking at:
http://bugzilla.kernel.org/show_bug.cgi?id=11541
I realized that the mtrr.show param cannot work, because
the code is processed much too early.
This patch:
- Declares mtrr.show as early_param
- Stays consistent with the previous param (which I doubt
that it ever worked), so mtrr.show=1 would still work
- Declares mtrr_show as initdata
Signed-off-by: Thomas Renninger <trenn@suse.de>
---
arch/x86/kernel/cpu/mtrr/generic.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
Index: linux-2.6/arch/x86/kernel/cpu/mtrr/generic.c
===================================================================
--- linux-2.6.orig/arch/x86/kernel/cpu/mtrr/generic.c
+++ linux-2.6/arch/x86/kernel/cpu/mtrr/generic.c
@@ -33,11 +33,13 @@ u64 mtrr_tom2;
struct mtrr_state_type mtrr_state = {};
EXPORT_SYMBOL_GPL(mtrr_state);
-#undef MODULE_PARAM_PREFIX
-#define MODULE_PARAM_PREFIX "mtrr."
-
-static int mtrr_show;
-module_param_named(show, mtrr_show, bool, 0);
+static int __initdata mtrr_show;
+static int __init mtrr_debug(char *opt)
+{
+ mtrr_show = 1;
+ return 0;
+}
+early_param("mtrr.show", mtrr_debug);
/*
* Returns the effective MTRR type for the region
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] x86: mtrr fix debug parameter
2009-01-20 9:37 [PATCH] x86: mtrr fix debug parameter Thomas Renninger
@ 2009-01-20 10:10 ` Jan Beulich
2009-01-21 11:27 ` Ingo Molnar
0 siblings, 1 reply; 3+ messages in thread
From: Jan Beulich @ 2009-01-20 10:10 UTC (permalink / raw)
To: linux-kernel; +Cc: mingo, Thomas Renninger
I've been carrying a change like this for quite some time in a bigger patch,
but never got to actually split it out and submit it. Thanks for doing this,
Thomas! (And yes, it did work at the time it was added.)
Signed-off-by: Jan Beulich <jbeulich@novell.com>
>>> Thomas Renninger <trenn@suse.de> 20.01.09 10:37 >>>
while looking at:
http://bugzilla.kernel.org/show_bug.cgi?id=11541
I realized that the mtrr.show param cannot work, because
the code is processed much too early.
This patch:
- Declares mtrr.show as early_param
- Stays consistent with the previous param (which I doubt
that it ever worked), so mtrr.show=1 would still work
- Declares mtrr_show as initdata
Signed-off-by: Thomas Renninger <trenn@suse.de>
---
arch/x86/kernel/cpu/mtrr/generic.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
Index: linux-2.6/arch/x86/kernel/cpu/mtrr/generic.c
===================================================================
--- linux-2.6.orig/arch/x86/kernel/cpu/mtrr/generic.c
+++ linux-2.6/arch/x86/kernel/cpu/mtrr/generic.c
@@ -33,11 +33,13 @@ u64 mtrr_tom2;
struct mtrr_state_type mtrr_state = {};
EXPORT_SYMBOL_GPL(mtrr_state);
-#undef MODULE_PARAM_PREFIX
-#define MODULE_PARAM_PREFIX "mtrr."
-
-static int mtrr_show;
-module_param_named(show, mtrr_show, bool, 0);
+static int __initdata mtrr_show;
+static int __init mtrr_debug(char *opt)
+{
+ mtrr_show = 1;
+ return 0;
+}
+early_param("mtrr.show", mtrr_debug);
/*
* Returns the effective MTRR type for the region
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] x86: mtrr fix debug parameter
2009-01-20 10:10 ` Jan Beulich
@ 2009-01-21 11:27 ` Ingo Molnar
0 siblings, 0 replies; 3+ messages in thread
From: Ingo Molnar @ 2009-01-21 11:27 UTC (permalink / raw)
To: Jan Beulich; +Cc: linux-kernel, Thomas Renninger
* Jan Beulich <jbeulich@novell.com> wrote:
> I've been carrying a change like this for quite some time in a bigger patch,
> but never got to actually split it out and submit it. Thanks for doing this,
> Thomas! (And yes, it did work at the time it was added.)
>
> Signed-off-by: Jan Beulich <jbeulich@novell.com>
applied to tip/x86/urgent, thanks guys!
Ingo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-01-21 11:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-20 9:37 [PATCH] x86: mtrr fix debug parameter Thomas Renninger
2009-01-20 10:10 ` Jan Beulich
2009-01-21 11:27 ` Ingo Molnar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox