KMALLOCS
# define KMALLOCS(x,t,s) (x) = (t)kmalloc((s), \
# define KMALLOCS(a, b, c) MALLOC((a), b, (c), M_TEMP, \
# define KMALLOCS(a,b,c) (a) = (b)malloc(c)
# define KMALLOCS(a, b, c) MALLOC((a), b, (c), _M_IPF, M_NOWAIT)
# define KMALLOCS(a,b,c) (a) = (b)new_kmem_alloc((c), KMEM_NOSLEEP)
# define KMALLOCS(a,b,c) (a) = (b)kmem_alloc((c), KM_NOSLEEP)
# define KMALLOCS(a, b, c) MALLOC((a), b, (c), M_IOSYS, M_NOWAIT)
# define KMALLOCS(a,b,c) (a) = (b)kmem_alloc((c), KM_NOSLEEP)
# define KMALLOCS(a, b, c) MALLOC((a), b, (c), M_PFILT, \