kern_malloc
return kern_malloc(bytes, M_WAITOK);
void *kern_malloc(unsigned long, int);
#define malloc(size, type, flags) kern_malloc(size, flags)