diff options
| author | Matthew Barth <msbarth@us.ibm.com> | 2011-12-01 11:47:33 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2011-12-08 13:03:52 -0600 |
| commit | fdcb470b27bba6782bf6b6a9a60be3e54446f506 (patch) | |
| tree | 7a8f5e7325107aec861fb4ae05444caebc6f9c39 /src/include/usr/vmmconst.h | |
| parent | 47facf10fc682816fd7683b389451b7be9a6dadb (diff) | |
| download | blackbird-hostboot-fdcb470b27bba6782bf6b6a9a60be3e54446f506.tar.gz blackbird-hostboot-fdcb470b27bba6782bf6b6a9a60be3e54446f506.zip | |
Complete virtual memory write path during shutdown sequence
Change-Id: I93a6305b88539d8cf1b41cfc4cde713fd7c19494
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/522
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/vmmconst.h')
| -rw-r--r-- | src/include/usr/vmmconst.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/include/usr/vmmconst.h b/src/include/usr/vmmconst.h index 51a933edf..f490f1301 100644 --- a/src/include/usr/vmmconst.h +++ b/src/include/usr/vmmconst.h @@ -57,6 +57,13 @@ // image generator script #define VMM_VADDR_ATTR_RP (3ul * 1024ul * 1024ul * 1024ul) +/** Virtual memory block priorities */ +enum BlockPriority +{ + PNOR_PRIORITY = 0, //No dependencies + VFS_PRIORITY = (PNOR_PRIORITY + 1), //Dependent on PNOR + ATTR_PRIORITY = (PNOR_PRIORITY + 1), //Dependent on PNOR +}; /** * Other Constants |

