Searched refs:crb (Results 1 – 2 of 2) sorted by relevance
124 credbatch_prep(struct credbatch *crb) in credbatch_prep() argument126 crb->cred = NULL; in credbatch_prep()127 crb->users = 0; in credbatch_prep()128 crb->ref = 0; in credbatch_prep()130 void credbatch_add(struct credbatch *crb, struct thread *td);133 credbatch_process(struct credbatch *crb __unused) in credbatch_process()138 void credbatch_final(struct credbatch *crb);
1962 if (crb->cred != cr) { in credbatch_add()1963 if (crb->users > 0) { in credbatch_add()1964 MPASS(crb->cred != NULL); in credbatch_add()1965 crunusebatch(crb->cred, crb->users, crb->ref); in credbatch_add()1966 crb->users = 0; in credbatch_add()1967 crb->ref = 0; in credbatch_add()1970 crb->cred = cr; in credbatch_add()1971 crb->users++; in credbatch_add()1981 MPASS(crb->cred != NULL); in credbatch_final()1982 MPASS(crb->users > 0); in credbatch_final()[all …]