Home
last modified time | relevance | path

Searched refs:ihead (Results 1 – 13 of 13) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/ufs/
H A Dufs.c47 uintptr_t ihead; in inode_walk_init() local
48 union ihead ih; in inode_walk_init()
64 if (mdb_readvar(&ihead, "ihead") == -1) { in inode_walk_init()
69 if (mdb_vread(&ih, sizeof (union ihead), ihead) == -1) { in inode_walk_init()
70 mdb_warn("failed to read ihead at %p", ihead); in inode_walk_init()
77 iw->iw_ihead = ihead; in inode_walk_init()
90 union ihead ih; in inode_walk_step()
96 iw->iw_ihead += sizeof (union ihead); in inode_walk_step()
98 if (mdb_vread(&ih, sizeof (union ihead), iw->iw_ihead) == -1) { in inode_walk_step()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Ddocmd.c229 for (; ihead != NULL; ihead = ihead->nextp) { in doarrow()
230 free(ihead); in doarrow()
231 if ((opts & IGNLNKS) || ihead->count == 0) in doarrow()
234 ihead->pathname); in doarrow()
H A Ddefs.h136 extern struct linkbuf *ihead; /* list of files with more than one link */
H A Dserver.c44 struct linkbuf *ihead; /* list of files with more than one link */ variable
561 for (lp = ihead; lp != NULL; lp = lp->nextp) in savelink()
570 lp->nextp = ihead; in savelink()
571 ihead = lp; in savelink()
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_inode.c106 union ihead *ihead; /* inode LRU cache, Chris Maltby */ variable
304 union ihead *ih = ihead; in ihinit()
309 ihead = kmem_zalloc(inohsz * sizeof (union ihead), KM_SLEEP); in ihinit()
312 for (i = 0, ih = ihead; i < inohsz; i++, ih++) { in ihinit()
450 union ihead *ih; in ufs_iget_internal()
472 ih = &ihead[hno]; in ufs_iget_internal()
1624 union ihead *ih; /* current hash chain */ in ufs_scan_inodes()
1654 for (i = 0, ih = ihead; i < inohsz; i++, ih++) { in ufs_scan_inodes()
H A Dufs_vfsops.c1385 union ihead *ih; in ufs_unmount()
1513 for (i = 0, ih = ihead; i < inohsz; i++, ih++) { in ufs_unmount()
1564 for (i = 0, ih = ihead; i < inohsz; i++, ih++) { in ufs_unmount()
H A Dufs_subr.c834 union ihead *ih; in ufs_icheck()
841 for (i = 0, ih = ihead; i < inohsz; i++, ih++) { in ufs_icheck()
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dufs_inode.h814 union ihead { union
815 union ihead *ih_head[2];
819 extern union ihead *ihead;
H A Dudf_inode.h557 union ihead { union
558 union ihead *ih_head[2];
/illumos-gate/usr/src/uts/common/ipp/flowacct/
H A Dflowacct.c437 list_head_t *ihead; in flowacct_update_flows_tbl() local
488 ihead = &flow->items; in flowacct_update_flows_tbl()
544 item->hdr = flowacct_add_obj(ihead, ihead->tail, (void *)item); in flowacct_update_flows_tbl()
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_inode.c97 union ihead ud_ihead[UD_HASH_SZ];
135 union ihead *ih; in ud_search_icache()
166 union ihead *ih; in ud_iget()
1856 union ihead *ih; in ud_iflush()
2167 union ihead *ih = ud_ihead; in ud_init_inodes()
H A Dudf_subr.c89 extern union ihead ud_ihead[UD_HASH_SZ];
811 union ihead *ih; in ud_icheck()
840 union ihead *ih; in ud_flushi()
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c410 } *ihead; variable
1449 for (; ihead != NULL; ihead = ihead->nextp) { in dorep()
1450 if (ihead->count == 0) in dorep()
1453 "tar: missing links to %s\n"), ihead->pathname); in dorep()
8028 for (lp = ihead; lp != NULL; lp = lp->nextp) in put_link()
8083 lp->nextp = ihead; in put_link()
8084 ihead = lp; in put_link()