Home | History | Annotate | Download | only in lfs

Lines Matching defs:norphan

803 	size_t norphan = 0;
854 } else if (norphan == norphan_alloc) {
863 norphan);
864 kmem_free(orphan, sizeof(orphan[0]) * norphan);
867 orphan[norphan++] = ino;
920 if (norphan < norphan_alloc) {
921 ino_t *orphan_new = kmem_alloc(sizeof(orphan[0]) * norphan,
923 memcpy(orphan_new, orphan, sizeof(orphan[0]) * norphan);
926 norphan_alloc = norphan;
930 *norphanp = norphan;
961 lfs_free_orphans(struct lfs *fs, ino_t *orphan, size_t norphan)
967 for (i = 0; i < norphan; i++) {
1031 kmem_free(orphan, sizeof(orphan[0]) * norphan);