x86: mtrr fix debug boot parameter
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> Acked-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
a1e46212a4
commit
731f1872f4
1 changed files with 7 additions and 5 deletions
|
@ -33,11 +33,13 @@ u64 mtrr_tom2;
|
||||||
struct mtrr_state_type mtrr_state = {};
|
struct mtrr_state_type mtrr_state = {};
|
||||||
EXPORT_SYMBOL_GPL(mtrr_state);
|
EXPORT_SYMBOL_GPL(mtrr_state);
|
||||||
|
|
||||||
#undef MODULE_PARAM_PREFIX
|
static int __initdata mtrr_show;
|
||||||
#define MODULE_PARAM_PREFIX "mtrr."
|
static int __init mtrr_debug(char *opt)
|
||||||
|
{
|
||||||
static int mtrr_show;
|
mtrr_show = 1;
|
||||||
module_param_named(show, mtrr_show, bool, 0);
|
return 0;
|
||||||
|
}
|
||||||
|
early_param("mtrr.show", mtrr_debug);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Returns the effective MTRR type for the region
|
* Returns the effective MTRR type for the region
|
||||||
|
|
Loading…
Add table
Reference in a new issue