diff options
author | kmacy <kmacy@FreeBSD.org> | 2012-01-27 22:24:03 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2012-01-27 22:24:03 +0000 |
commit | e956af45d2836a1fb5e7c685664c3e00b6d90500 (patch) | |
tree | e80630d20b978af75eb93534c3eebf2c385b42fe | |
parent | 16ae18207913b4ae1ee79a195353176ba40f4ad0 (diff) | |
download | FreeBSD-src-e956af45d2836a1fb5e7c685664c3e00b6d90500.zip FreeBSD-src-e956af45d2836a1fb5e7c685664c3e00b6d90500.tar.gz |
add KM_NODEBUG needed by ARC buffer core dump exclusion change
-rw-r--r-- | cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h b/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h index 472cf7b..fa749d5 100644 --- a/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h +++ b/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h @@ -331,6 +331,7 @@ extern void cv_broadcast(kcondvar_t *cv); #define KM_NOSLEEP UMEM_DEFAULT #define KMC_NODEBUG UMC_NODEBUG #define KMC_NOTOUCH 0 /* not needed for userland caches */ +#define KM_NODEBUG 0 #define kmem_alloc(_s, _f) umem_alloc(_s, _f) #define kmem_zalloc(_s, _f) umem_zalloc(_s, _f) #define kmem_free(_b, _s) umem_free(_b, _s) |