]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
x86/spectre: Drop the warning about ibrs being obsolete.
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tue, 23 Jan 2018 17:14:06 +0000 (12:14 -0500)
committerJack Vogel <jack.vogel@oracle.com>
Sat, 27 Jan 2018 00:37:13 +0000 (16:37 -0800)
They scare folks thinking in that they don't work if you
use 'noibrs'. And create support tickets. Just let us
be quiet and support both options.

OraBug: 27439976
Reviewed-by: John Haxby <john.haxby@oracle.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
arch/x86/kernel/cpu/bugs_64.c

index c0e809762c3f2fca4194c368c8e67155f9e79288..ecf137d898397b1f5c40287a23073bcfeedfa7b4 100644 (file)
@@ -82,14 +82,10 @@ static void __init spectre_v2_parse_cmdline(void)
        int ret;
 
        if (cmdline_find_option_bool(boot_command_line, "noibrs")) {
-               pr_warn("Deprecated command option noibrs. "
-                       "Use nospectre_v2 instead.\n");
                set_ibrs_disabled();
        }
 
        if (cmdline_find_option_bool(boot_command_line, "noibpb")) {
-               pr_warn("Deprecated command option noibpb. "
-                       "Use nospectre_v2 instead.\n");
                set_ibpb_disabled();
        }