Home
last modified time | relevance | path

Searched refs:ngroups_max (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/kern/
H A Dsubr_param.c101 int ngroups_max; /* max # groups per process */ variable
223 ngroups_max = NGROUPS_MAX; in init_param1()
224 TUNABLE_INT_FETCH("kern.ngroups", &ngroups_max); in init_param1()
225 if (ngroups_max < NGROUPS_MAX) in init_param1()
226 ngroups_max = NGROUPS_MAX; in init_param1()
H A Dkern_prot.c808 if (gidsetsize > ngroups_max + 1) in sys_setgroups()
832 MPASS(ngrp <= ngroups_max + 1); in kern_setgroups()
2321 if (ngrp > ngroups_max + 1) in crsetgroups()
2322 ngrp = ngroups_max + 1; in crsetgroups()
H A Dkern_mib.c130 CTLFLAG_NOFETCH | CTLFLAG_CAPRD, &ngroups_max, 0,
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dcred.h71 extern int ngroups_max;
/f-stack/freebsd/sys/
H A Dsystm.h74 extern int ngroups_max; /* max # of supplemental groups */
/f-stack/freebsd/security/audit/
H A Daudit_arg.c274 KASSERT(gidset_size <= ngroups_max + 1, in audit_arg_groupset()