Remove unused junk from the slab allocator.
commitc397c465e5a4fa26b37f6d5f9e48e651a99142df
authorMatthew Dillon <dillon@dragonflybsd.org>
Wed, 17 Nov 2004 23:36:21 +0000 (17 23:36 +0000)
committerMatthew Dillon <dillon@dragonflybsd.org>
Wed, 17 Nov 2004 23:36:21 +0000 (17 23:36 +0000)
tree7cd2636c3f0dd1cec7ebdcfbdb4fc5015607c671
parentf16f8cc3099e29d7e6f274e20148595bee2aafef
Remove unused junk from the slab allocator.

Remove M_FAILSAFE and M_INTALLOC.  M_FAILSAFE was a double check for
interrupt-time allocations but using it was problematic at best and as
a consequence it was never used.  M_INTALLOC was a macro that used
M_FAILSAFE and was also never used.  The standard M_ flags for interrupt
time allocations are M_INTNOWAIT and M_INTWAIT.
sys/kern/kern_slaballoc.c
sys/sys/malloc.h
sys/vm/vm_kern.c