We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c11ca45 commit 7882b69Copy full SHA for 7882b69
arch/x86/kernel/cpu/mtrr/mtrr.c
@@ -629,6 +629,7 @@ int __initdata changed_by_mtrr_cleanup;
629
*/
630
void __init mtrr_bp_init(void)
631
{
632
+ const char *why = "(not available)";
633
u32 phys_addr;
634
635
phys_addr = 32;
@@ -705,12 +706,13 @@ void __init mtrr_bp_init(void)
705
706
changed_by_mtrr_cleanup = mtrr_cleanup(phys_addr);
707
} else {
708
mtrr_if = NULL;
709
+ why = "by BIOS";
710
}
711
712
713
714
if (!mtrr_enabled())
- pr_info("Disabled\n");
715
+ pr_info("MTRRs disabled %s\n", why);
716
717
718
/**
0 commit comments