提交 c1f8bc04 编写于 作者: A Avi Kivity

KVM: VMX: Make module parameters readable

Useful to see how the module was loaded.
Signed-off-by: NAvi Kivity <avi@redhat.com>
上级 fe4c7b19
......@@ -39,19 +39,19 @@ MODULE_AUTHOR("Qumranet");
MODULE_LICENSE("GPL");
static int bypass_guest_pf = 1;
module_param(bypass_guest_pf, bool, 0);
module_param(bypass_guest_pf, bool, S_IRUGO);
static int enable_vpid = 1;
module_param(enable_vpid, bool, 0);
module_param(enable_vpid, bool, 0444);
static int flexpriority_enabled = 1;
module_param(flexpriority_enabled, bool, 0);
module_param(flexpriority_enabled, bool, S_IRUGO);
static int enable_ept = 1;
module_param(enable_ept, bool, 0);
module_param(enable_ept, bool, S_IRUGO);
static int emulate_invalid_guest_state = 0;
module_param(emulate_invalid_guest_state, bool, 0);
module_param(emulate_invalid_guest_state, bool, S_IRUGO);
struct vmcs {
u32 revision_id;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册