From: Nathaniel Clark Date: Sat, 16 Feb 2013 15:07:22 +0000 (-0500) Subject: LU-2799 ptlrpc: reduce verbosity of warning X-Git-Tag: 2.3.65~76 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=6c274189d1e3ec65150e76c2f22ce1114ad58b4b;p=fs%2Flustre-release.git 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 --- 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 }