From dd670d968a44f0a70bbacdb4ae9194cdb543328c Mon Sep 17 00:00:00 2001 From: Serguei Smirnov Date: Mon, 11 Jul 2022 15:49:04 -0700 Subject: [PATCH] LU-15984 o2iblnd: debug message is missing a newline Add missing newline to one of the debug messages in kiblnd_pool_alloc_node. Test-Parameters: trivial Signed-off-by: Serguei Smirnov Change-Id: I541622322ea6166892270dbfd1567cc64f8c314c Reviewed-on: https://review.whamcloud.com/47933 Tested-by: jenkins Reviewed-by: Frank Sehr Reviewed-by: Cyril Bordage Tested-by: Maloo Reviewed-by: James Simmons Reviewed-by: Oleg Drokin --- lnet/klnds/o2iblnd/o2iblnd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnet/klnds/o2iblnd/o2iblnd.c b/lnet/klnds/o2iblnd/o2iblnd.c index a20e772..9c9d251 100644 --- a/lnet/klnds/o2iblnd/o2iblnd.c +++ b/lnet/klnds/o2iblnd/o2iblnd.c @@ -2180,7 +2180,7 @@ again: CDEBUG(D_NET, "%s pool exhausted, allocate new pool\n", ps->ps_name); time_before = ktime_get(); rc = ps->ps_pool_create(ps, ps->ps_pool_size, &pool); - CDEBUG(D_NET, "ps_pool_create took %lld ms to complete", + CDEBUG(D_NET, "ps_pool_create took %lld ms to complete\n", ktime_ms_delta(ktime_get(), time_before)); spin_lock(&ps->ps_lock); -- 1.8.3.1