Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
4462d21a
Commit
4462d21a
authored
Mar 23, 2009
by
Avi Kivity
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
KVM: VMX: Annotate module parameters as __read_mostly
Signed-off-by:
Avi Kivity
<
avi@redhat.com
>
parent
736caefe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
arch/x86/kvm/vmx.c
arch/x86/kvm/vmx.c
+5
-5
No files found.
arch/x86/kvm/vmx.c
View file @
4462d21a
...
...
@@ -38,19 +38,19 @@
MODULE_AUTHOR
(
"Qumranet"
);
MODULE_LICENSE
(
"GPL"
);
static
int
bypass_guest_pf
=
1
;
static
int
__read_mostly
bypass_guest_pf
=
1
;
module_param
(
bypass_guest_pf
,
bool
,
S_IRUGO
);
static
int
enable_vpid
=
1
;
static
int
__read_mostly
enable_vpid
=
1
;
module_param_named
(
vpid
,
enable_vpid
,
bool
,
0444
);
static
int
flexpriority_enabled
=
1
;
static
int
__read_mostly
flexpriority_enabled
=
1
;
module_param_named
(
flexpriority
,
flexpriority_enabled
,
bool
,
S_IRUGO
);
static
int
enable_ept
=
1
;
static
int
__read_mostly
enable_ept
=
1
;
module_param_named
(
ept
,
enable_ept
,
bool
,
S_IRUGO
);
static
int
emulate_invalid_guest_state
=
0
;
static
int
__read_mostly
emulate_invalid_guest_state
=
0
;
module_param
(
emulate_invalid_guest_state
,
bool
,
S_IRUGO
);
struct
vmcs
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment