[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86: make it clear range is inclusive when printing e820 range
commit 1f68bfb3816e8c82a6449d4505bdc4e7143cd9d7 Author: Wei Liu <wl@xxxxxxx> AuthorDate: Thu Feb 6 12:10:24 2020 +0000 Commit: Wei Liu <wl@xxxxxxx> CommitDate: Thu Feb 6 13:51:14 2020 +0000 x86: make it clear range is inclusive when printing e820 range Change the format string to use "[,]" and subtract 1 from the end. Signed-off-by: Wei Liu <wl@xxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/e820.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |