From 6c274189d1e3ec65150e76c2f22ce1114ad58b4b Mon Sep 17 00:00:00 2001 From: Nathaniel Clark Date: Sat, 16 Feb 2013 10:07:22 -0500 Subject: [PATCH] LU-2799 ptlrpc: reduce verbosity of warning Reduce verbosity of a warning about large number of threads that the user can change and should not change. Signed-off-by: Nathaniel Clark Change-Id: I2713a0629da5c7d4d1a8a6c0d4c35cdea765e5f0 Reviewed-on: http://review.whamcloud.com/5447 Reviewed-by: Andreas Dilger Tested-by: Hudson Reviewed-by: Prakash Surya Tested-by: Maloo --- lustre/ptlrpc/service.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lustre/ptlrpc/service.c b/lustre/ptlrpc/service.c index 65ffcaa..c141f49 100644 --- a/lustre/ptlrpc/service.c +++ b/lustre/ptlrpc/service.c @@ -603,10 +603,10 @@ ptlrpc_server_nthreads_check(struct ptlrpc_service *svc, svc->srv_nthrs_cpt_init = init; if (nthrs * svc->srv_ncpts > tc->tc_nthrs_max) { - LCONSOLE_WARN("%s: This service may have more threads (%d) " - "than the given soft limit (%d)\n", - svc->srv_name, nthrs * svc->srv_ncpts, - tc->tc_nthrs_max); + CDEBUG(D_OTHER, "%s: This service may have more threads (%d) " + "than the given soft limit (%d)\n", + svc->srv_name, nthrs * svc->srv_ncpts, + tc->tc_nthrs_max); } #endif } -- 1.8.3.1