diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-11-10 21:10:18 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-11-10 21:10:18 -0800 |
commit | b8120f6c38f212acbfd246a3081842a9e3d06eb3 (patch) | |
tree | 35ccdcab4455d39a3e89c078ba2875e57ba482ab /src/mem | |
parent | bbbfdee2ed4feb5e8e448920e5d51701a2192ee1 (diff) | |
download | gem5-b8120f6c38f212acbfd246a3081842a9e3d06eb3.tar.xz |
Mem: Eliminate the NO_FAULT request flag.
Diffstat (limited to 'src/mem')
-rw-r--r-- | src/mem/request.hh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mem/request.hh b/src/mem/request.hh index c8c31ffcd..f2cc4647c 100644 --- a/src/mem/request.hh +++ b/src/mem/request.hh @@ -72,8 +72,6 @@ class Request : public FastAlloc /** This request is to a memory mapped register. */ static const FlagsType MMAPED_IPR = 0x00002000; - /** The request should not cause a page fault. */ - static const FlagsType NO_FAULT = 0x00010000; /** The request should ignore unaligned access faults */ static const FlagsType NO_ALIGN_FAULT = 0x00020000; /** The request should ignore unaligned access faults */ |