From 2489f1193c1617d55af57d8184a0e9e9ace1c848 Mon Sep 17 00:00:00 2001 From: Marcin Kerlin Date: Wed, 15 Jun 2016 13:17:17 +0200 Subject: [PATCH] mem: fix error message with Xen Minor typo fix to error message Fixes: 148f963fb532 ("xen: core library changes") Signed-off-by: Marcin Kerlin --- lib/librte_eal/linuxapp/eal/eal_memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/linuxapp/eal/eal_memory.c b/lib/librte_eal/linuxapp/eal/eal_memory.c index 79d1d2dd80..2d6eef6525 100644 --- a/lib/librte_eal/linuxapp/eal/eal_memory.c +++ b/lib/librte_eal/linuxapp/eal/eal_memory.c @@ -1417,7 +1417,7 @@ rte_eal_hugepage_attach(void) if (internal_config.xen_dom0_support) { #ifdef RTE_LIBRTE_XEN_DOM0 if (rte_xen_dom0_memory_attach() < 0) { - RTE_LOG(ERR, EAL,"Failed to attach memory setments of primay " + RTE_LOG(ERR, EAL, "Failed to attach memory segments of primary " "process\n"); return -1; } -- 2.20.1