Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 736caefe authored by Avi Kivity's avatar Avi Kivity
Browse files

KVM: VMX: Simplify module parameter names



Instead of 'enable_vpid=1', use a simple 'vpid=1'.

Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent 6062d012
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -42,13 +42,13 @@ static int bypass_guest_pf = 1;
module_param(bypass_guest_pf, bool, S_IRUGO);
module_param(bypass_guest_pf, bool, S_IRUGO);


static int enable_vpid = 1;
static int enable_vpid = 1;
module_param(enable_vpid, bool, 0444);
module_param_named(vpid, enable_vpid, bool, 0444);


static int flexpriority_enabled = 1;
static int flexpriority_enabled = 1;
module_param(flexpriority_enabled, bool, S_IRUGO);
module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);


static int enable_ept = 1;
static int enable_ept = 1;
module_param(enable_ept, bool, S_IRUGO);
module_param_named(ept, enable_ept, bool, S_IRUGO);


static int emulate_invalid_guest_state = 0;
static int emulate_invalid_guest_state = 0;
module_param(emulate_invalid_guest_state, bool, S_IRUGO);
module_param(emulate_invalid_guest_state, bool, S_IRUGO);