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
cd205625
Commit
cd205625
authored
Feb 19, 2007
by
Avi Kivity
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
KVM: svm: init cr0 with the wp bit set
Signed-off-by:
Avi Kivity
<
avi@qumranet.com
>
parent
270fd9b9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/kvm/svm.c
drivers/kvm/svm.c
+1
-1
No files found.
drivers/kvm/svm.c
View file @
cd205625
...
@@ -554,7 +554,7 @@ static void init_vmcb(struct vmcb *vmcb)
...
@@ -554,7 +554,7 @@ static void init_vmcb(struct vmcb *vmcb)
* cr0 val on cpu init should be 0x60000010, we enable cpu
* cr0 val on cpu init should be 0x60000010, we enable cpu
* cache by default. the orderly way is to enable cache in bios.
* cache by default. the orderly way is to enable cache in bios.
*/
*/
save
->
cr0
=
0x00000010
|
CR0_PG_MASK
;
save
->
cr0
=
0x00000010
|
CR0_PG_MASK
|
CR0_WP_MASK
;
save
->
cr4
=
CR4_PAE_MASK
;
save
->
cr4
=
CR4_PAE_MASK
;
/* rdx = ?? */
/* rdx = ?? */
}
}
...
...
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