|
@@ -129,7 +129,8 @@ static const char *spectre_v2_strings[] = {
|
|
#undef pr_fmt
|
|
#undef pr_fmt
|
|
#define pr_fmt(fmt) "Spectre V2 : " fmt
|
|
#define pr_fmt(fmt) "Spectre V2 : " fmt
|
|
|
|
|
|
-static enum spectre_v2_mitigation spectre_v2_enabled = SPECTRE_V2_NONE;
|
|
|
|
|
|
+static enum spectre_v2_mitigation spectre_v2_enabled __ro_after_init =
|
|
|
|
+ SPECTRE_V2_NONE;
|
|
|
|
|
|
void x86_spec_ctrl_set(u64 val)
|
|
void x86_spec_ctrl_set(u64 val)
|
|
{
|
|
{
|
|
@@ -407,7 +408,7 @@ retpoline_auto:
|
|
#undef pr_fmt
|
|
#undef pr_fmt
|
|
#define pr_fmt(fmt) "Speculative Store Bypass: " fmt
|
|
#define pr_fmt(fmt) "Speculative Store Bypass: " fmt
|
|
|
|
|
|
-static enum ssb_mitigation ssb_mode = SPEC_STORE_BYPASS_NONE;
|
|
|
|
|
|
+static enum ssb_mitigation ssb_mode __ro_after_init = SPEC_STORE_BYPASS_NONE;
|
|
|
|
|
|
/* The kernel command line selection */
|
|
/* The kernel command line selection */
|
|
enum ssb_mitigation_cmd {
|
|
enum ssb_mitigation_cmd {
|