svn commit: r327504 - user/jeff/numa/sys/kern
Jeff Roberson
jeff at FreeBSD.org
Tue Jan 2 23:52:28 UTC 2018
Author: jeff
Date: Tue Jan 2 23:52:26 2018
New Revision: 327504
URL: https://svnweb.freebsd.org/changeset/base/327504
Log:
Fix compile with DIAGNOSTIC
Modified:
user/jeff/numa/sys/kern/kern_malloc.c
Modified: user/jeff/numa/sys/kern/kern_malloc.c
==============================================================================
--- user/jeff/numa/sys/kern/kern_malloc.c Tue Jan 2 21:31:54 2018 (r327503)
+++ user/jeff/numa/sys/kern/kern_malloc.c Tue Jan 2 23:52:26 2018 (r327504)
@@ -525,7 +525,7 @@ malloc(unsigned long size, struct malloc_type *mtp, in
struct malloc_type_internal *mtip;
caddr_t va;
uma_zone_t zone;
-#if defined(DIAGNOSTIC) || defined(DEBUG_REDZONE)
+#if defined(DEBUG_REDZONE)
unsigned long osize = size;
#endif
@@ -575,7 +575,7 @@ malloc_domain(unsigned long size, struct malloc_type *
struct malloc_type_internal *mtip;
caddr_t va;
uma_zone_t zone;
-#if defined(DIAGNOSTIC) || defined(DEBUG_REDZONE)
+#if defined(DEBUG_REDZONE)
unsigned long osize = size;
#endif
More information about the svn-src-user
mailing list