diff options
| author | Patrick Williams <iawillia@us.ibm.com> | 2011-08-22 11:42:20 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2011-08-24 10:55:54 -0500 |
| commit | 0977c6da14b8fc1623043daa429041863498aeae (patch) | |
| tree | 23b6676a21fe407340db23cd2dfd75346a88a9a6 /src/include/kernel | |
| parent | fa7d388f1a121d42769ea0289e3c043fe229b4d2 (diff) | |
| download | talos-hostboot-0977c6da14b8fc1623043daa429041863498aeae.tar.gz talos-hostboot-0977c6da14b8fc1623043daa429041863498aeae.zip | |
Allocate zero'd page in block.
Change-Id: Ieb56aa89190d7efd56c357245b24a979ee7ad79a
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/270
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/kernel')
| -rw-r--r-- | src/include/kernel/spte.H | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/kernel/spte.H b/src/include/kernel/spte.H index 92a50c351..6e4832bb6 100644 --- a/src/include/kernel/spte.H +++ b/src/include/kernel/spte.H @@ -63,9 +63,11 @@ class ShadowPTE uint32_t track_write:1; /** Has page been written to. */ uint32_t dirty:1; + /** Allocate from a zero'd page. */ + uint32_t allocate_from_zero:1; /** Reserved for future use. */ - uint32_t reserved:7; + uint32_t reserved:6; } PACKED; }; |

