Home
last modified time | relevance | path

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

/netbsd/sys/fs/nfs/common/
H A Dnfs_commonport.c242 newnfs_copycred(struct nfscred *nfscr, struct ucred *cr) in newnfs_copycred() argument
245 KASSERT(nfscr->nfsc_ngroups >= 0, in newnfs_copycred()
247 cr->cr_uid = nfscr->nfsc_uid; in newnfs_copycred()
248 crsetgroups(cr, nfscr->nfsc_ngroups, nfscr->nfsc_groups); in newnfs_copycred()
/netbsd/sys/fs/nfs/client/
H A Dnfs_clport.c1120 newnfs_copyincred(struct ucred *cr, struct nfscred *nfscr) in newnfs_copyincred() argument
1126 nfscr->nfsc_uid = cr->cr_uid; in newnfs_copyincred()
1127 nfscr->nfsc_ngroups = MIN(cr->cr_ngroups, NFS_MAXGRPS + 1); in newnfs_copyincred()
1128 for (i = 0; i < nfscr->nfsc_ngroups; i++) in newnfs_copyincred()
1129 nfscr->nfsc_groups[i] = cr->cr_groups[i]; in newnfs_copyincred()