HomeSort by: relevance | last modified time | path
    Searched refs:norphan (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/ufs/lfs/
lfs_alloc.c 784 size_t norphan = 0; local
835 } else if (norphan == norphan_alloc) {
844 norphan);
845 kmem_free(orphan, sizeof(orphan[0]) * norphan);
848 orphan[norphan++] = ino;
901 if (norphan < norphan_alloc) {
902 ino_t *orphan_new = kmem_alloc(sizeof(orphan[0]) * norphan,
904 memcpy(orphan_new, orphan, sizeof(orphan[0]) * norphan);
907 norphan_alloc = norphan;
911 *norphanp = norphan;
    [all...]
lfs_vfsops.c 922 size_t norphan; local
1225 lfs_order_freelist(fs, &orphan, &norphan);
1260 lfs_free_orphans(fs, orphan, norphan);

Completed in 19 milliseconds