From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by dpdk.org (Postfix) with ESMTP id 26E9A37A2 for ; Wed, 30 May 2018 16:45:44 +0200 (CEST) Received: from alcyon.dev.6wind.com. (unknown [10.16.0.235]) by proxy.6wind.com (Postfix) with ESMTP id 612D1182E5D; Wed, 30 May 2018 16:41:55 +0200 (CEST) From: David Marchand To: dev@dpdk.org Cc: anatoly.burakov@intel.com Date: Wed, 30 May 2018 16:45:29 +0200 Message-Id: <20180530144529.9133-1-david.marchand@6wind.com> X-Mailer: git-send-email 2.11.0 Subject: [dpdk-dev] [PATCH] mem: add missing newline in log message X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 May 2018 14:45:44 -0000 Fixes: 56efb4c11753 ("malloc: support callbacks on memory events") Signed-off-by: David Marchand --- 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 3005ef980..1d41ea112 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.11.0