TWE_MALLOC_CLASS
tr->tr_data = kmalloc(aligned_size, TWE_MALLOC_CLASS, M_INTWAIT);
kfree(tr->tr_data, TWE_MALLOC_CLASS);
static MALLOC_DEFINE(TWE_MALLOC_CLASS, "twe_commands", "twe commands");
tr = kmalloc(aligned_size, TWE_MALLOC_CLASS, M_INTWAIT | M_ZERO);
kfree(tr, TWE_MALLOC_CLASS);