Searched defs:acg (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dacctctl.c103 struct exacct_globals *acg; local
111 for (acg = list_head(&exacct_globals_list); acg != NULL;
112 acg = list_next(&exacct_globals_list, acg)) {
113 mutex_enter(&acg->ac_proc.ac_lock);
114 mutex_enter(&acg->ac_task.ac_lock);
115 mutex_enter(&acg->ac_flow.ac_lock);
116 mutex_enter(&acg->ac_net.ac_lock);
119 for (acg
434 struct exacct_globals *acg; local
553 struct exacct_globals *acg; local
581 struct exacct_globals *acg = data; local
598 struct exacct_globals *acg = data; local
[all...]
H A Dexacctsys.c150 struct exacct_globals *acg; local
155 acg = zone_getspecific(exacct_zone_key, curproc->p_zone);
158 error = getacct_proc(&acg->ac_proc, id, buf, bufsize, &size);
161 error = getacct_task(&acg->ac_task, id, buf, bufsize, &size);
178 struct exacct_globals *acg; local
189 acg = zone_getspecific(exacct_zone_key, curproc->p_zone);
203 error = exacct_tag_proc(&acg->ac_proc, id, tkid, kbuf,
210 error = exacct_tag_task(&acg->ac_task, tk, kbuf,
294 struct exacct_globals *acg; local
307 acg
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/fstyp/
H A Dfstyp.c84 #define acg cgun.cg macro
544 if (read(h->fd, (char *)&h->acg, fsp->fs_bsize) != fsp->fs_bsize) {
548 cgp = (struct cg *)&h->acg;
549 ocgp = (struct ocg *)&h->acg;
/illumos-gate/usr/src/uts/common/os/
H A Dexacct.c716 struct exacct_globals *acg; local
727 acg = zone_getspecific(exacct_zone_key, zone);
728 if (acg == NULL)
730 (void) exacct_assemble_task_usage(&acg->ac_task, tk,
733 acg = zone_getspecific(exacct_zone_key, global_zone);
734 (void) exacct_assemble_task_usage(&acg->ac_task, tk,
1151 struct exacct_globals *acg, *gacg = NULL; local
1164 acg = zone_getspecific(exacct_zone_key, zone);
1165 if (acg == NULL)
1167 exacct_do_commit_proc(&acg
1406 struct exacct_globals *acg; local
1594 struct exacct_globals *acg; local
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/mkfs/
H A Dmkfs.c452 #define acg cgun.cg macro
2870 (char *)&acg);
2871 if (acg.cg_magic != CG_MAGIC) {
2875 if (acg.cg_cs.cs_nbfree == 0) {
2880 for (d = 0; d < acg.cg_ndblk; d += sblock.fs_frag)
2881 if (isblock(&sblock, cg_blksfree(&acg), d / sblock.fs_frag))
2887 clrblock(&sblock, cg_blksfree(&acg), d / sblock.fs_frag);
2888 acg.cg_cs.cs_nbfree--;
2892 acg.cg_cs.cs_ndir++;
2896 cg_blktot(&acg)[cbtocyln
[all...]

Completed in 57 milliseconds