projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60a56dc
)
x86: write to correct variable in parse_pv_l1tf()
author
Jan Beulich
<jbeulich@suse.com>
Wed, 15 Aug 2018 12:15:30 +0000
(14:15 +0200)
committer
Jan Beulich
<jbeulich@suse.com>
Wed, 15 Aug 2018 12:15:30 +0000
(14:15 +0200)
Apparently a copy-and-paste mistake.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/spec_ctrl.c
patch
|
blob
|
history
diff --git
a/xen/arch/x86/spec_ctrl.c
b/xen/arch/x86/spec_ctrl.c
index f0c50d67035ccd0c353ba19ca3c6cf6ba577a153..c430b25b840b6dc1474ba75963cc54a1b6f3aa47 100644
(file)
--- a/
xen/arch/x86/spec_ctrl.c
+++ b/
xen/arch/x86/spec_ctrl.c
@@
-232,7
+232,7
@@
static __init int parse_pv_l1tf(const char *s)
/* Interpret 'pv-l1tf' alone in its positive boolean form. */
if ( *s == '\0' )
- opt_
xpti
= OPT_PV_L1TF_DOM0 | OPT_PV_L1TF_DOMU;
+ opt_
pv_l1tf
= OPT_PV_L1TF_DOM0 | OPT_PV_L1TF_DOMU;
do {
ss = strchr(s, ',');