mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
Fix KMEM_DEBUG support (enable by default)
Add vmem_alloc/vmem_free support (and test case) Add missing time functions git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@46 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
This commit is contained in:
+41
-7
@@ -5,11 +5,12 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#undef DEBUG_KMEM
|
||||
#define DEBUG_KMEM
|
||||
#undef DEBUG_KMEM_UNIMPLEMENTED
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/vmalloc.h>
|
||||
#include <linux/mm.h>
|
||||
#include <linux/spinlock.h>
|
||||
/*
|
||||
@@ -23,12 +24,11 @@ extern "C" {
|
||||
#define KM_FLAGS __GFP_BITS_MASK
|
||||
|
||||
#ifdef DEBUG_KMEM
|
||||
/* Shim layer memory accounting */
|
||||
extern atomic_t kmem_alloc_used;
|
||||
extern unsigned int kmem_alloc_max;
|
||||
#endif
|
||||
extern atomic_t vmem_alloc_used;
|
||||
extern unsigned int vmem_alloc_max;
|
||||
|
||||
#ifdef DEBUG_KMEM
|
||||
#define __kmem_alloc(size, flags, allocator) \
|
||||
({ void *_ptr_; \
|
||||
\
|
||||
@@ -58,13 +58,40 @@ extern unsigned int kmem_alloc_max;
|
||||
|
||||
#define kmem_free(ptr, size) \
|
||||
({ \
|
||||
BUG_ON(!ptr || size < 0); \
|
||||
BUG_ON(!(ptr) || (size) < 0); \
|
||||
atomic_sub((size), &kmem_alloc_used); \
|
||||
memset(ptr, 0x5a, (size)); /* Poison */ \
|
||||
kfree(ptr); \
|
||||
(ptr) = (void *)0xdeadbeef; \
|
||||
})
|
||||
|
||||
#define __vmem_alloc(size, flags) \
|
||||
({ void *_ptr_; \
|
||||
\
|
||||
BUG_ON(flags != KM_SLEEP); \
|
||||
\
|
||||
_ptr_ = (void *)vmalloc((size)); \
|
||||
if (_ptr_ == NULL) { \
|
||||
printk("Warning: vmem_alloc(%d, 0x%x) failed at %s:%d " \
|
||||
"(%d/%d)\n", (int)(size), (int)(flags), \
|
||||
__FILE__, __LINE__, \
|
||||
atomic_read(&vmem_alloc_used), vmem_alloc_max); \
|
||||
atomic_add((size), &vmem_alloc_used); \
|
||||
if (unlikely(atomic_read(&vmem_alloc_used) > vmem_alloc_max)) \
|
||||
vmem_alloc_max = atomic_read(&vmem_alloc_used); \
|
||||
} \
|
||||
\
|
||||
_ptr_; \
|
||||
})
|
||||
|
||||
#define vmem_alloc(size, flags) __vmem_alloc(size, flags)
|
||||
|
||||
#define vmem_free(ptr, size) \
|
||||
({ \
|
||||
BUG_ON(!(ptr) || (size) < 0); \
|
||||
atomic_sub((size), &vmem_alloc_used); \
|
||||
memset(ptr, 0x5a, (size)); /* Poison */ \
|
||||
vfree(ptr); \
|
||||
})
|
||||
|
||||
#else
|
||||
|
||||
@@ -72,10 +99,17 @@ extern unsigned int kmem_alloc_max;
|
||||
#define kmem_zalloc(size, flags) kzalloc(size, flags)
|
||||
#define kmem_free(ptr, size) \
|
||||
({ \
|
||||
BUG_ON(!ptr || size < 0); \
|
||||
BUG_ON(!(ptr) || (size) < 0); \
|
||||
kfree(ptr); \
|
||||
})
|
||||
|
||||
#define vmem_alloc(size, flags) vmalloc(size)
|
||||
#define vmem_free(ptr, size) \
|
||||
({ \
|
||||
BUG_ON(!(ptr) || (size) < 0); \
|
||||
vfree(ptr); \
|
||||
})
|
||||
|
||||
#endif /* DEBUG_KMEM */
|
||||
|
||||
|
||||
|
||||
+25
-18
@@ -14,11 +14,6 @@ extern "C" {
|
||||
#include <linux/time.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
extern unsigned long long monotonic_clock(void);
|
||||
extern void __gethrestime(timestruc_t *);
|
||||
|
||||
#define gethrestime(ts) __gethrestime(ts)
|
||||
|
||||
#define TIME32_MAX INT32_MAX
|
||||
#define TIME32_MIN INT32_MIN
|
||||
|
||||
@@ -27,12 +22,37 @@ extern void __gethrestime(timestruc_t *);
|
||||
#define MICROSEC 1000000
|
||||
#define NANOSEC 1000000000
|
||||
|
||||
/* Already defined in include/linux/time.h */
|
||||
#undef CLOCK_THREAD_CPUTIME_ID
|
||||
#undef CLOCK_REALTIME
|
||||
#undef CLOCK_MONOTONIC
|
||||
#undef CLOCK_PROCESS_CPUTIME_ID
|
||||
|
||||
typedef enum clock_type {
|
||||
__CLOCK_REALTIME0 = 0, /* obsolete; same as CLOCK_REALTIME */
|
||||
CLOCK_VIRTUAL = 1, /* thread's user-level CPU clock */
|
||||
CLOCK_THREAD_CPUTIME_ID = 2, /* thread's user+system CPU clock */
|
||||
CLOCK_REALTIME = 3, /* wall clock */
|
||||
CLOCK_MONOTONIC = 4, /* high resolution monotonic clock */
|
||||
CLOCK_PROCESS_CPUTIME_ID = 5, /* process's user+system CPU clock */
|
||||
CLOCK_HIGHRES = CLOCK_MONOTONIC, /* alternate name */
|
||||
CLOCK_PROF = CLOCK_THREAD_CPUTIME_ID,/* alternate name */
|
||||
} clock_type_t;
|
||||
|
||||
#define hz \
|
||||
({ \
|
||||
BUG_ON(HZ < 100 || HZ > MICROSEC); \
|
||||
HZ; \
|
||||
})
|
||||
|
||||
extern void __gethrestime(timestruc_t *);
|
||||
extern int __clock_gettime(clock_type_t, timespec_t *);
|
||||
extern hrtime_t __gethrtime(void);
|
||||
|
||||
#define gethrestime(ts) __gethrestime(ts)
|
||||
#define clock_gettime(fl, tp) __clock_gettime(fl, tp)
|
||||
#define gethrtime() __gethrtime()
|
||||
|
||||
static __inline__ time_t
|
||||
gethrestime_sec(void)
|
||||
{
|
||||
@@ -42,19 +62,6 @@ gethrestime_sec(void)
|
||||
return now.tv_sec;
|
||||
}
|
||||
|
||||
static __inline__ hrtime_t
|
||||
gethrtime(void) {
|
||||
/* BUG_ON(cur_timer == timer_none); */
|
||||
|
||||
/* Solaris expects a long long here but monotonic_clock() returns an
|
||||
* unsigned long long. Note that monotonic_clock() returns the number
|
||||
* of nanoseconds passed since kernel initialization. Even for a signed
|
||||
* long long this will not "go negative" for ~292 years.
|
||||
*/
|
||||
return monotonic_clock();
|
||||
}
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -23,6 +23,7 @@ typedef struct task_struct kthread_t;
|
||||
typedef struct vmem { } vmem_t;
|
||||
typedef short pri_t;
|
||||
typedef struct timespec timestruc_t; /* definition per SVr4 */
|
||||
typedef struct timespec timespec_t;
|
||||
typedef longlong_t hrtime_t;
|
||||
typedef unsigned short ushort_t;
|
||||
typedef u_longlong_t len_t;
|
||||
|
||||
Reference in New Issue
Block a user