projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c87c995
)
X86: Fix minor bug in the page table walker from TLB shuffling.
author
Gabe Black
<gblack@eecs.umich.edu>
Mon, 13 Apr 2009 11:14:15 +0000
(
04:14
-0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Mon, 13 Apr 2009 11:14:15 +0000
(
04:14
-0700)
src/arch/x86/pagetable_walker.cc
patch
|
blob
|
history
diff --git
a/src/arch/x86/pagetable_walker.cc
b/src/arch/x86/pagetable_walker.cc
index 69ded7cbc3194a545115e28f0a818e600aab85e5..d43502760c3bca70264e969e7a8f025314b2ac06 100644
(file)
--- a/
src/arch/x86/pagetable_walker.cc
+++ b/
src/arch/x86/pagetable_walker.cc
@@
-98,7
+98,7
@@
Walker::doNext(PacketPtr &write)
bool uncacheable = pte.pcd;
Addr nextRead = 0;
bool doWrite = false;
- bool badNX = pte.nx && mode == BaseTLB::
Wri
te && enableNX;
+ bool badNX = pte.nx && mode == BaseTLB::
Execu
te && enableNX;
switch(state) {
case LongPML4:
DPRINTF(PageTableWalker,