From 32cb7aee946c5513b0dbe2e7dd774a4e36c8b38b Mon Sep 17 00:00:00 2001 From: David Marchand Date: Wed, 30 May 2018 16:45:29 +0200 Subject: [PATCH] mem: add missing newline in callback log Fixes: 56efb4c11753 ("malloc: support callbacks on memory events") Signed-off-by: David Marchand Acked-by: Anatoly Burakov --- lib/librte_eal/common/eal_common_memalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/common/eal_common_memalloc.c b/lib/librte_eal/common/eal_common_memalloc.c index 3005ef9806..1d41ea1126 100644 --- a/lib/librte_eal/common/eal_common_memalloc.c +++ b/lib/librte_eal/common/eal_common_memalloc.c @@ -243,7 +243,7 @@ eal_memalloc_mem_event_notify(enum rte_mem_event event, const void *start, rte_rwlock_read_lock(&mem_event_rwlock); TAILQ_FOREACH(entry, &mem_event_callback_list, next) { - RTE_LOG(DEBUG, EAL, "Calling mem event callback '%s:%p'", + RTE_LOG(DEBUG, EAL, "Calling mem event callback '%s:%p'\n", entry->name, entry->arg); entry->clb(event, start, len, entry->arg); } -- 2.20.1