diff options
Diffstat (limited to 'net/sunrpc/auth_gss')
| -rw-r--r-- | net/sunrpc/auth_gss/gss_rpc_xdr.c | 1 | ||||
| -rw-r--r-- | net/sunrpc/auth_gss/svcauth_gss.c | 5 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/net/sunrpc/auth_gss/gss_rpc_xdr.c b/net/sunrpc/auth_gss/gss_rpc_xdr.c index c4778cae58ef..444380f968f1 100644 --- a/net/sunrpc/auth_gss/gss_rpc_xdr.c +++ b/net/sunrpc/auth_gss/gss_rpc_xdr.c @@ -231,6 +231,7 @@ static int gssx_dec_linux_creds(struct xdr_stream *xdr,  			goto out_free_groups;  		creds->cr_group_info->gid[i] = kgid;  	} +	groups_sort(creds->cr_group_info);  	return 0;  out_free_groups: diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c index 73165e9ca5bf..26531193fce4 100644 --- a/net/sunrpc/auth_gss/svcauth_gss.c +++ b/net/sunrpc/auth_gss/svcauth_gss.c @@ -264,7 +264,7 @@ out:  	return status;  } -static struct cache_detail rsi_cache_template = { +static const struct cache_detail rsi_cache_template = {  	.owner		= THIS_MODULE,  	.hash_size	= RSI_HASHMAX,  	.name           = "auth.rpcsec.init", @@ -481,6 +481,7 @@ static int rsc_parse(struct cache_detail *cd,  				goto out;  			rsci.cred.cr_group_info->gid[i] = kgid;  		} +		groups_sort(rsci.cred.cr_group_info);  		/* mech name */  		len = qword_get(&mesg, buf, mlen); @@ -524,7 +525,7 @@ out:  	return status;  } -static struct cache_detail rsc_cache_template = { +static const struct cache_detail rsc_cache_template = {  	.owner		= THIS_MODULE,  	.hash_size	= RSC_HASHMAX,  	.name		= "auth.rpcsec.context",  | 

