summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-05-20 15:49:36 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-05-20 15:49:36 -0700
commit013994166f910c9227904d67662d51a38d272876 (patch)
tree87fd63fb5c7030e208a19f94fd065b1ed2befe59
parent3bbcbd5e834ed51fc40a2a2f2b1476b1e655df76 (diff)
downloadsyslinux-013994166f910c9227904d67662d51a38d272876.tar.gz
meminfo: distinguish between no flags and flags=1syslinux-3.81-pre7
For debugging reasons it's important to know if we have no flags at all or if we get flags = 1. Print [-] in the case of no flags at all. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--com32/modules/meminfo.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/com32/modules/meminfo.c b/com32/modules/meminfo.c
index 4f2b3725..e88c824c 100644
--- a/com32/modules/meminfo.c
+++ b/com32/modules/meminfo.c
@@ -1,6 +1,7 @@
/* ----------------------------------------------------------------------- *
*
* Copyright 2008 H. Peter Anvin - All Rights Reserved
+ * Copyright 2009 Intel Corporation; author: H. Peter Anvin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -64,12 +65,16 @@ static void dump_e820(void)
memcpy(&ed, __com32.cs_bounce, sizeof ed);
- if (oreg.ecx.l < 24)
+ if (oreg.ecx.l >= 24) {
+ /* ebx base length end type */
+ printf("%8x %016llx %016llx %016llx %d [%x]",
+ ireg.ebx.l, ed.base, ed.len, ed.base+ed.len, ed.type, ed.extattr);
+ } else {
+ /* ebx base length end */
+ printf("%8x %016llx %016llx %016llx %d [-]",
+ ireg.ebx.l, ed.base, ed.len, ed.base+ed.len, ed.type);
ed.extattr = 1;
-
- /* ebx base length end type */
- printf("%8x %016llx %016llx %016llx %d [%x]",
- ireg.ebx.l, ed.base, ed.len, ed.base+ed.len, ed.type, ed.extattr);
+ }
type = ed.type - 1;
if (type < sizeof(e820_types)/sizeof(e820_types[0]))