Home
last modified time | relevance | path

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

/freebsd/sys/fs/nfs/
H A Dnfs_commonport.c255 newnfs_copycred(struct nfscred *nfscr, struct ucred *cr) in newnfs_copycred() argument
258 KASSERT(nfscr->nfsc_ngroups >= 0, in newnfs_copycred()
260 cr->cr_uid = nfscr->nfsc_uid; in newnfs_copycred()
261 crsetgroups(cr, nfscr->nfsc_ngroups, nfscr->nfsc_groups); in newnfs_copycred()
/freebsd/sys/fs/nfsclient/
H A Dnfs_clport.c1085 newnfs_copyincred(struct ucred *cr, struct nfscred *nfscr) in newnfs_copyincred() argument
1091 nfscr->nfsc_uid = cr->cr_uid; in newnfs_copyincred()
1092 nfscr->nfsc_ngroups = MIN(cr->cr_ngroups, NFS_MAXGRPS + 1); in newnfs_copyincred()
1093 for (i = 0; i < nfscr->nfsc_ngroups; i++) in newnfs_copyincred()
1094 nfscr->nfsc_groups[i] = cr->cr_groups[i]; in newnfs_copyincred()