x86/KVM/VMX: Replace 'vmx_l1d_flush_always' with 'vmx_l1d_flush_cond'
authorNicolai Stange <nstange@suse.de>
Sat, 21 Jul 2018 20:25:00 +0000 (22:25 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 5 Aug 2018 07:53:11 +0000 (09:53 +0200)
commit427362a142441f08051369db6fbe7f61c73b3dca
treeba71f75e451fdf7c35e8382cdaffa58c8bb362ee
parent379fd0c7e6a391e5565336a646f19f218fb98c6c
x86/KVM/VMX: Replace 'vmx_l1d_flush_always' with 'vmx_l1d_flush_cond'

The vmx_l1d_flush_always static key is only ever evaluated if
vmx_l1d_should_flush is enabled. In that case however, there are only two
L1d flushing modes possible: "always" and "conditional".

The "conditional" mode's implementation tends to require more sophisticated
logic than the "always" mode.

Avoid inverted logic by replacing the 'vmx_l1d_flush_always' static key
with a 'vmx_l1d_flush_cond' one.

There is no change in functionality.

Signed-off-by: Nicolai Stange <nstange@suse.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/kvm/vmx.c