Home
last modified time | relevance | path

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

/netbsd-src/sys/ufs/lfs/
H A Dlfs_alloc.c716 size_t norphan_alloc = 0; in lfs_order_freelist() local
761 norphan_alloc = 32; /* XXX pulled from arse */ in lfs_order_freelist()
763 norphan_alloc, KM_SLEEP); in lfs_order_freelist()
764 } else if (norphan == norphan_alloc) { in lfs_order_freelist()
766 if (norphan_alloc >= 4096) in lfs_order_freelist()
767 norphan_alloc += 4096; in lfs_order_freelist()
769 norphan_alloc *= 2; in lfs_order_freelist()
771 norphan_alloc, KM_SLEEP); in lfs_order_freelist()
830 if (norphan < norphan_alloc) { in lfs_order_freelist()
834 kmem_free(orphan, sizeof(orphan[0]) * norphan_alloc); in lfs_order_freelist()
[all …]