summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorPatrick Rudolph <siro@das-labor.org>2020-06-30 20:17:26 +0200
committerPatrick Rudolph <siro@das-labor.org>2020-07-06 17:24:59 +0000
commit7d28f20051d039d3535195a9d04019db254bbeaa (patch)
tree218456d5e52bae4d976d9e04731e869b643a8e37 /util
parentb2a10f826431ef01e2377eaa4fdf874a990a8cd0 (diff)
downloadcoreboot-7d28f20051d039d3535195a9d04019db254bbeaa.tar.xz
pgtblgen: Update comment to match what the code does
Change-Id: Ib87c804b139a96a4173a6f392f0f99a77d32fc01 Signed-off-by: Patrick Rudolph <siro@das-labor.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42981 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Diffstat (limited to 'util')
-rw-r--r--util/pgtblgen/pgtblgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/pgtblgen/pgtblgen.c b/util/pgtblgen/pgtblgen.c
index 27114edab1..640d0ba7be 100644
--- a/util/pgtblgen/pgtblgen.c
+++ b/util/pgtblgen/pgtblgen.c
@@ -23,7 +23,7 @@ static void usage(char *argv[])
* For reference see "AMD64 ArchitectureProgrammer's Manual Volume 2",
* Document 24593-Rev. 3.31-July 2019 Chapter 5.3.4
*
- * Page table attributes: WB, User+Supervisor, Present, Writeable
+ * Page table attributes: WB, User+Supervisor, Present, Writeable, Accessed, Dirty
*/
#define _PRES (1ULL << 0)
#define _RW (1ULL << 1)