Searched refs:nfscr (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/sys/fs/nfs/
H A Dnfs_commonport.c241 newnfs_copycred(struct nfscred *nfscr, struct ucred *cr) argument
244 KASSERT(nfscr->nfsc_ngroups >= 0,
246 cr->cr_uid = nfscr->nfsc_uid;
247 crsetgroups(cr, nfscr->nfsc_ngroups, nfscr->nfsc_groups);
/freebsd-11-stable/sys/fs/nfsclient/
H A Dnfs_clport.c1118 newnfs_copyincred(struct ucred *cr, struct nfscred *nfscr) argument
1124 nfscr->nfsc_uid = cr->cr_uid;
1125 nfscr->nfsc_ngroups = MIN(cr->cr_ngroups, NFS_MAXGRPS + 1);
1126 for (i = 0; i < nfscr->nfsc_ngroups; i++)
1127 nfscr->nfsc_groups[i] = cr->cr_groups[i];

Completed in 116 milliseconds