diff options
Diffstat (limited to 'mem')
-rw-r--r-- | mem/page_table.hh | 2 | ||||
-rw-r--r-- | mem/request.hh | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/mem/page_table.hh b/mem/page_table.hh index 26248261a..c799f8acd 100644 --- a/mem/page_table.hh +++ b/mem/page_table.hh @@ -67,7 +67,7 @@ class PageTable Addr pageAlign(Addr a) { return (a & ~offsetMask); } Addr pageOffset(Addr a) { return (a & offsetMask); } - Fault page_check(Addr addr, int size) const; + Fault page_check(Addr addr, int size, uint32_t flags) const; void allocate(Addr vaddr, int size); diff --git a/mem/request.hh b/mem/request.hh index e9b1672ce..90c46646e 100644 --- a/mem/request.hh +++ b/mem/request.hh @@ -56,6 +56,8 @@ const unsigned NO_FAULT = 0x020; const unsigned PF_EXCLUSIVE = 0x100; /** The request should be marked as LRU. */ const unsigned EVICT_NEXT = 0x200; +/** The request should ignore unaligned access faults */ +const unsigned NO_ALIGN_FAULT = 0x400; class Request { |