From 312dfa7df789dbb09858cf60c2b844ea7ccc6204 Mon Sep 17 00:00:00 2001 From: Oleg Drokin Date: Wed, 2 Nov 2011 23:41:09 -0400 Subject: [PATCH] LU-820 Increase LU_CDEBUG_LINE so that osc page messages fit. LU_CDEBUG_LINE at 255 does not quite fit osc-page message out of osc_page_print that is quite long. As a result we get annoying "does not end in newline" console messages when this happens. Doubling LU_CDEBUG_LINE certainly should be enough. Change-Id: Iec8635d6578e192d3b33643c4b1dab1dae2be6b4 Signed-off-by: Oleg Drokin Reviewed-on: http://review.whamcloud.com/1642 Reviewed-by: Jinshan Xiong Tested-by: Hudson Tested-by: Maloo --- lustre/obdclass/lu_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/obdclass/lu_object.c b/lustre/obdclass/lu_object.c index b3bc375..c5e4c29 100644 --- a/lustre/obdclass/lu_object.c +++ b/lustre/obdclass/lu_object.c @@ -355,7 +355,7 @@ enum { * * XXX overflow is not handled correctly. */ - LU_CDEBUG_LINE = 256 + LU_CDEBUG_LINE = 512 }; struct lu_cdebug_data { -- 1.8.3.1