]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
x86/apic: Make TSC deadline timer detection message visible
authorBorislav Petkov <bp@suse.de>
Mon, 25 May 2020 10:38:39 +0000 (12:38 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Jun 2020 13:41:55 +0000 (15:41 +0200)
[ Upstream commit de308d1815c9e8fe602a958c5c76142ff6501d75 ]

The commit

  c84cb3735fd5 ("x86/apic: Move TSC deadline timer debug printk")

removed the message which said that the deadline timer was enabled.
It added a pr_debug() message which is issued when deadline timer
validation succeeds.

Well, issued only when CONFIG_DYNAMIC_DEBUG is enabled - otherwise
pr_debug() calls get optimized away if DEBUG is not defined in the
compilation unit.

Therefore, make the above message pr_info() so that it is visible in
dmesg.

Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20200525104218.27018-1-bp@alien8.de
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/kernel/apic/apic.c

index 48ab5fdd104425cf39d88f8043f0cca6de066fe6..ee33f095132232770d4e4cd84724c6ee52aa4d7b 100644 (file)
@@ -1915,7 +1915,7 @@ void __init init_apic_mappings(void)
        unsigned int new_apicid;
 
        if (apic_validate_deadline_timer())
-               pr_debug("TSC deadline timer available\n");
+               pr_info("TSC deadline timer available\n");
 
        if (x2apic_mode) {
                boot_cpu_physical_apicid = read_apic_id();