always exclude data bufs regardless of debug settings

This commit is contained in:
Kip Macy 2012-01-29 00:19:19 +00:00
parent c3bd46fe5b
commit ad69d4e266

View File

@ -152,7 +152,7 @@ zio_init(void)
(void) sprintf(name, "zio_data_buf_%lu", (ulong_t)size);
zio_data_buf_cache[c] = kmem_cache_create(name, size,
align, NULL, NULL, NULL, NULL, NULL,
cflags | KMC_NOTOUCH);
cflags | KMC_NOTOUCH | KMC_NODEBUG);
}
}