diff options
author | Richard Braun <rbraun@sceen.net> | 2016-02-22 21:59:07 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2016-02-22 21:59:07 +0100 |
commit | bb6d33fef898d931dcebb882be259e4ed4d727d8 (patch) | |
tree | 6315dbe5b517fb002a18476a68b0585a895e53ce /include | |
parent | 724326b4d590d94ff81eb2e5817cc79a9bade7e4 (diff) |
Remove kmem cache flags from the debugging interface
* include/mach_debug/slab_info.h (CACHE_FLAGS_NO_CPU_POOL,
CACHE_FLAGS_SLAB_EXTERNAL, CACHE_FLAGS_NO_RECLAIM,
CACHE_FLAGS_VERIFY, CACHE_FLAGS_DIRECT): Remove macros.
* kern/slab.c (host_slab_info): Pass raw cache flags to caller.
Diffstat (limited to 'include')
-rw-r--r-- | include/mach_debug/slab_info.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/mach_debug/slab_info.h b/include/mach_debug/slab_info.h index 37dcb8c..7d12cc1 100644 --- a/include/mach_debug/slab_info.h +++ b/include/mach_debug/slab_info.h @@ -36,12 +36,6 @@ #define CACHE_NAME_MAX_LEN 32 -#define CACHE_FLAGS_NO_CPU_POOL 0x01 -#define CACHE_FLAGS_SLAB_EXTERNAL 0x02 -#define CACHE_FLAGS_NO_RECLAIM 0x04 -#define CACHE_FLAGS_VERIFY 0x08 -#define CACHE_FLAGS_DIRECT 0x10 - typedef struct cache_info { int flags; size_t cpu_pool_size; |