From 6a4be282bbbd5c6d92787abe9ae316e3c702192c Mon Sep 17 00:00:00 2001 From: Sebastien Buisson Date: Fri, 9 Jul 2021 14:52:40 +0200 Subject: [PATCH] LU-14833 sec: quiet spurious gss_init_svc_upcall() message Switch from CWARN to CDEBUG(D_SEC) for message printed by gss_init_svc_upcall(): Init channel is not opened by lsvcgssd, following request might be dropped until lsvcgssd is active Indeed, this message is printed no matter GSS is enabled or not, and we do not have any way to check this by the time the kernel module is loaded. Test-Parameters: trivial Signed-off-by: Sebastien Buisson Change-Id: I66c8c2a16e58ca75973226c80e0f4a92c90b4025 Reviewed-on: https://review.whamcloud.com/44197 Tested-by: jenkins Reviewed-by: Andreas Dilger Reviewed-by: Patrick Farrell Tested-by: Maloo --- lustre/ptlrpc/gss/gss_svc_upcall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/ptlrpc/gss/gss_svc_upcall.c b/lustre/ptlrpc/gss/gss_svc_upcall.c index 0c5a36a..5b0da4b 100644 --- a/lustre/ptlrpc/gss/gss_svc_upcall.c +++ b/lustre/ptlrpc/gss/gss_svc_upcall.c @@ -1167,8 +1167,8 @@ int __init gss_init_svc_upcall(void) } if (channel_users(&rsi_cache) == 0) - CWARN("Init channel is not opened by lsvcgssd, following " - "request might be dropped until lsvcgssd is active\n"); + CDEBUG(D_SEC, + "Init channel is not opened by lsvcgssd, following request might be dropped until lsvcgssd is active\n"); return 0; } -- 1.8.3.1