Decrease of kmem warnign threshold back to 2 pages, no worse than a stack.
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@100 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
This commit is contained in:
parent
13cdca65ec
commit
427a782d7d
|
@ -91,8 +91,9 @@ __kmem_del_init(spinlock_t *lock,struct hlist_head *table,int bits,void *addr)
|
||||||
"kmem_alloc(%d, 0x%x) debug failed\n", \
|
"kmem_alloc(%d, 0x%x) debug failed\n", \
|
||||||
sizeof(kmem_debug_t), (int)(flags)); \
|
sizeof(kmem_debug_t), (int)(flags)); \
|
||||||
} else { \
|
} else { \
|
||||||
/* Marked unlikely because we should never be doing this */ \
|
/* Marked unlikely because we should never be doing this, */ \
|
||||||
if (unlikely((size) > (PAGE_SIZE * 4)) && kmem_warning_flag) \
|
/* we tolerate to up 2 pages but a single page is best. */ \
|
||||||
|
if (unlikely((size) > (PAGE_SIZE * 2)) && kmem_warning_flag) \
|
||||||
__CDEBUG_LIMIT(S_KMEM, D_WARNING, "Warning large " \
|
__CDEBUG_LIMIT(S_KMEM, D_WARNING, "Warning large " \
|
||||||
"kmem_alloc(%d, 0x%x) (%ld/%ld)\n", \
|
"kmem_alloc(%d, 0x%x) (%ld/%ld)\n", \
|
||||||
(int)(size), (int)(flags), \
|
(int)(size), (int)(flags), \
|
||||||
|
|
Loading…
Reference in New Issue