diff options
| author | Patrick Williams <iawillia@us.ibm.com> | 2011-08-22 16:20:11 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2011-08-31 14:24:59 -0500 |
| commit | 0ebac914541254c4b9ee2a271f26cd67fc2b94a0 (patch) | |
| tree | 872be77d5870ea788513d8cb044f837904ddf8cc /src/include/kernel/spte.H | |
| parent | f7b7b56dea28dd69a44a877f7b7073c4496ced9e (diff) | |
| download | blackbird-hostboot-0ebac914541254c4b9ee2a271f26cd67fc2b94a0.tar.gz blackbird-hostboot-0ebac914541254c4b9ee2a271f26cd67fc2b94a0.zip | |
Dynamic stack support.
- Create stack segment.
- Allocate stack blocks on stack create.
Change-Id: Ida90055afb68f208c479b5fdc19d3d931d026105
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/271
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/kernel/spte.H')
| -rw-r--r-- | src/include/kernel/spte.H | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/kernel/spte.H b/src/include/kernel/spte.H index 6e4832bb6..1a284d6e7 100644 --- a/src/include/kernel/spte.H +++ b/src/include/kernel/spte.H @@ -106,6 +106,10 @@ class ShadowPTE bool isDirty() const { return dirty; }; /** Set dirty bit. */ void setDirty(bool i_dirty) { dirty = i_dirty; }; + /** Get allocate-from-zero bit. */ + bool isAllocateFromZero() const { return allocate_from_zero; }; + /** Set allocate-from-zero bit. */ + void setAllocateFromZero(bool i_zero) { allocate_from_zero = i_zero; }; }; #endif |

