Lines Matching refs:groups
83 int groups = current->ngroups; in unx_create_cred() local
84 if (groups > NFS_NGROUPS) in unx_create_cred()
85 groups = NFS_NGROUPS; in unx_create_cred()
91 for (i = 0; i < groups; i++) in unx_create_cred()
92 cred->uc_gids[i] = (gid_t) current->groups[i]; in unx_create_cred()
141 int groups; in unx_match() local
149 groups = current->ngroups; in unx_match()
150 if (groups > NFS_NGROUPS) in unx_match()
151 groups = NFS_NGROUPS; in unx_match()
152 for (i = 0; i < groups ; i++) in unx_match()
153 if (cred->uc_gids[i] != (gid_t) current->groups[i]) in unx_match()