Message ID | 20130708194144.GG29071@fieldses.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
J. Bruce Fields schrieb am Montag, den 08. Juli um 21:41 Uhr: > I'm not even sure whether it makes sense to be doing this upcall to ask > for supplemental groups in the -1 case. Going with the minimal fix for > now. Confirmed to work fine here, but strange messages from userland rpc.svcgssd persist: Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: ERROR: GSS-API: error in gss_free_lucid_sec_context(): GSS_S_NO_CONTEXT (No context has been established) - Unknown error Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: WARN: failed to free lucid sec context Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: ERROR: GSS-API: error in gss_free_lucid_sec_context(): GSS_S_NO_CONTEXT (No context has been established) - Unknown error Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: WARN: failed to free lucid sec context Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: ERROR: GSS-API: error in gss_free_lucid_sec_context(): GSS_S_NO_CONTEXT (No context has been established) - Unknown error Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: WARN: failed to free lucid sec context Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: ERROR: GSS-API: error in gss_free_lucid_sec_context(): GSS_S_NO_CONTEXT (No context has been established) - Unknown error Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: WARN: failed to free lucid sec context Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: ERROR: GSS-API: error in gss_free_lucid_sec_context(): GSS_S_NO_CONTEXT (No context has been established) - Unknown error Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: WARN: failed to free lucid sec context Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: ERROR: GSS-API: error in gss_free_lucid_sec_context(): GSS_S_NO_CONTEXT (No context has been established) - Unknown error Jul 9 17:59:27 vnfsrv rpc.svcgssd[2919]: WARN: failed to free lucid sec context > commit 8efb88340e29293e05f6b498b60596884c05a8a8 OK, is this supposed to get into 3.9.x and 3.10.x respectively? Regards Sven Microsoft ist offenbar die einzige Firma, die in der Lage ist, ein mit Office nicht kompatibles Bürosoftwarepaket einzuführen. (Florian Weimer in de.alt.sysadmin.recovery) /me is giggls@ircnet, http://sven.gegg.us/ on the Web -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index a98853d..621ca7b 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c @@ -493,8 +493,6 @@ static int unix_gid_parse(struct cache_detail *cd, if (rv) return -EINVAL; uid = make_kuid(&init_user_ns, id); - if (!uid_valid(uid)) - return -EINVAL; ug.uid = uid; expiry = get_expiry(&mesg);