diff options
author | Brian Behlendorf <[email protected]> | 2014-12-03 14:56:32 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2015-01-16 14:40:32 -0800 |
commit | efcd79a883caddea4a20bfc771da31ecc6ce4ca2 (patch) | |
tree | 3eb615043ffa64d2a7729aa6450c1326cb62f40e /include | |
parent | 71f8548ea443718a5afb1598f1f3a27a369ccd8b (diff) |
Retire KM_NODEBUG
Callers of kmem_alloc() which passed the KM_NODEBUG flag to suppress
the large allocation warning have been replaced by vmem_alloc() as
appropriate. The updated vmem_alloc() call will not print a warning
regardless of the size of the allocation.
A careful reader will notice that not all callers have been changed
to vmem_alloc(). Some have only had the KM_NODEBUG flag removed.
This was possible because the default warning threshold has been
increased to 32k. This is desirable because it minimizes the need
for Linux specific code changes.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/spa.h | 1 | ||||
-rw-r--r-- | include/sys/zfs_context.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/sys/spa.h b/include/sys/spa.h index 1faf0420f..c989c0b35 100644 --- a/include/sys/spa.h +++ b/include/sys/spa.h @@ -29,6 +29,7 @@ #include <sys/avl.h> #include <sys/zfs_context.h> +#include <sys/kstat.h> #include <sys/nvpair.h> #include <sys/sysmacros.h> #include <sys/types.h> diff --git a/include/sys/zfs_context.h b/include/sys/zfs_context.h index 1487a99f4..dd02e6f1b 100644 --- a/include/sys/zfs_context.h +++ b/include/sys/zfs_context.h @@ -41,6 +41,7 @@ #include <sys/bitmap.h> #include <sys/cmn_err.h> #include <sys/kmem.h> +#include <sys/vmem.h> #include <sys/taskq.h> #include <sys/buf.h> #include <sys/param.h> @@ -391,7 +392,6 @@ extern void kstat_set_raw_ops(kstat_t *ksp, #define KM_SLEEP UMEM_NOFAIL #define KM_PUSHPAGE KM_SLEEP #define KM_NOSLEEP UMEM_DEFAULT -#define KM_NODEBUG 0x0 #define KMC_NODEBUG UMC_NODEBUG #define KMC_KMEM 0x0 #define KMC_VMEM 0x0 |