Skip to content

Commit 04d70ed

Browse files
scottmayhewJ. Bruce Fields
authored andcommitted
sunrpc: add gss minor status to svcauth_gss_proxy_init
GSS-Proxy doesn't produce very much debug logging at all. Printing out the gss minor status will aid in troubleshooting if the GSS_Accept_sec_context upcall fails. Signed-off-by: Scott Mayhew <[email protected]> Signed-off-by: J. Bruce Fields <[email protected]>
1 parent ed94164 commit 04d70ed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

net/sunrpc/auth_gss/svcauth_gss.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,8 +1230,9 @@ static int svcauth_gss_proxy_init(struct svc_rqst *rqstp,
12301230
if (status)
12311231
goto out;
12321232

1233-
dprintk("RPC: svcauth_gss: gss major status = %d\n",
1234-
ud.major_status);
1233+
dprintk("RPC: svcauth_gss: gss major status = %d "
1234+
"minor status = %d\n",
1235+
ud.major_status, ud.minor_status);
12351236

12361237
switch (ud.major_status) {
12371238
case GSS_S_CONTINUE_NEEDED:

0 commit comments

Comments
 (0)