DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] mem: add missing newline in log message
@ 2018-05-30 14:45 David Marchand
  2018-05-30 14:47 ` Burakov, Anatoly
  0 siblings, 1 reply; 3+ messages in thread
From: David Marchand @ 2018-05-30 14:45 UTC (permalink / raw)
  To: dev; +Cc: anatoly.burakov

Fixes: 56efb4c11753 ("malloc: support callbacks on memory events")

Signed-off-by: David Marchand <david.marchand@6wind.com>
---
 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-05-30 19:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-30 14:45 [dpdk-dev] [PATCH] mem: add missing newline in log message David Marchand
2018-05-30 14:47 ` Burakov, Anatoly
2018-05-30 19:10   ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).