From ad69d4e266f7102f4d99d50b22c8d0abee008bd3 Mon Sep 17 00:00:00 2001 From: Kip Macy Date: Sun, 29 Jan 2012 00:19:19 +0000 Subject: [PATCH] always exclude data bufs regardless of debug settings --- sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c index d465454c9f3..694302e6f19 100644 --- a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c +++ b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c @@ -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); } }