Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 146505
b: refs/heads/master
c: c1f8bc0
h: refs/heads/master
i:
  146503: 094541c
v: v3
  • Loading branch information
Avi Kivity committed Jun 10, 2009
1 parent eed74e8 commit 01fcbcd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fe4c7b1914ac46af751d256f5a20c2e12dcbaaae
refs/heads/master: c1f8bc04c6f8576553dc87abe7562e868433a19f
10 changes: 5 additions & 5 deletions trunk/arch/x86/kvm/vmx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 01fcbcd

Please sign in to comment.