diff mbox series

x86: make it clear range is inclusive when printing e820 range

Message ID 20200206121024.21803-1-wl@xen.org (mailing list archive)
State New, archived
Headers show
Series x86: make it clear range is inclusive when printing e820 range | expand

Commit Message

Wei Liu Feb. 6, 2020, 12:10 p.m. UTC
Change the format string to use "[,]" and subtract 1 from the end.

Signed-off-by: Wei Liu <wl@xen.org>
---
 xen/arch/x86/e820.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Jan Beulich Feb. 6, 2020, 12:53 p.m. UTC | #1
On 06.02.2020 13:10, Wei Liu wrote:
> Change the format string to use "[,]" and subtract 1 from the end.
> 
> Signed-off-by: Wei Liu <wl@xen.org>

Acked-by: Jan Beulich <jbeulich@suse.com>
diff mbox series

Patch

diff --git a/xen/arch/x86/e820.c b/xen/arch/x86/e820.c
index 160f029edd..c9dc52c768 100644
--- a/xen/arch/x86/e820.c
+++ b/xen/arch/x86/e820.c
@@ -92,9 +92,9 @@  static void __init print_e820_memory_map(struct e820entry *map, unsigned int ent
     unsigned int i;
 
     for (i = 0; i < entries; i++) {
-        printk(" %016Lx - %016Lx ",
+        printk(" [%016Lx, %016Lx] ",
                (unsigned long long)(map[i].addr),
-               (unsigned long long)(map[i].addr + map[i].size));
+               (unsigned long long)(map[i].addr + map[i].size) - 1);
         switch (map[i].type) {
         case E820_RAM:
             printk("(usable)\n");