mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-04-06 17:49:11 +03:00
Ensure -NDEBUG does not get added to spl_config.h and is only set in the build options. This allows other kernel modules to use spl_config to leverage the reset of the config checks without getting confused with the debug options
This commit is contained in:
parent
5566ec0959
commit
15270e003e
@ -97,8 +97,6 @@ AC_DEFUN([SPL_AC_DEBUG], [
|
|||||||
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG"
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG"
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
AC_DEFINE([NDEBUG], [1],
|
|
||||||
[Define to 1 to disable debug tracing])
|
|
||||||
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
5
configure
vendored
5
configure
vendored
@ -19046,11 +19046,6 @@ echo "${ECHO_T}yes" >&6
|
|||||||
else
|
else
|
||||||
echo "$as_me:$LINENO: result: no" >&5
|
echo "$as_me:$LINENO: result: no" >&5
|
||||||
echo "${ECHO_T}no" >&6
|
echo "${ECHO_T}no" >&6
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
|
||||||
#define NDEBUG 1
|
|
||||||
_ACEOF
|
|
||||||
|
|
||||||
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -1118,10 +1118,8 @@ void spl_debug_bug(char *file, const char *func, const int line, int flags)
|
|||||||
if (spl_debug_panic_on_bug)
|
if (spl_debug_panic_on_bug)
|
||||||
spl_panic_in_progress = 1;
|
spl_panic_in_progress = 1;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
spl_debug_dumpstack(NULL);
|
spl_debug_dumpstack(NULL);
|
||||||
spl_debug_dumplog(flags);
|
spl_debug_dumplog(flags);
|
||||||
#endif
|
|
||||||
|
|
||||||
if (spl_debug_panic_on_bug)
|
if (spl_debug_panic_on_bug)
|
||||||
panic("SBUG");
|
panic("SBUG");
|
||||||
|
@ -108,9 +108,6 @@
|
|||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#undef HAVE_UNISTD_H
|
#undef HAVE_UNISTD_H
|
||||||
|
|
||||||
/* Define to 1 to disable debug tracing */
|
|
||||||
#undef NDEBUG
|
|
||||||
|
|
||||||
/* Name of package */
|
/* Name of package */
|
||||||
#undef PACKAGE
|
#undef PACKAGE
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user