/src/sys/ufs/lfs/ |
lfs_alloc.c | 803 size_t norphan = 0; local in function:lfs_order_freelist 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; [all...] |
lfs_alloc.c | 803 size_t norphan = 0; local in function:lfs_order_freelist 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; [all...] |
lfs_vfsops.c | 900 size_t norphan; local in function:lfs_mountfs 1195 lfs_order_freelist(fs, &orphan, &norphan); 1235 lfs_free_orphans(fs, orphan, norphan);
|
lfs_vfsops.c | 900 size_t norphan; local in function:lfs_mountfs 1195 lfs_order_freelist(fs, &orphan, &norphan); 1235 lfs_free_orphans(fs, orphan, norphan);
|