diff --git a/config/zfs-build.m4 b/config/zfs-build.m4 index 55d8489f5e..85263ae649 100644 --- a/config/zfs-build.m4 +++ b/config/zfs-build.m4 @@ -7,34 +7,28 @@ AC_DEFUN([ZFS_AC_LICENSE], [ ]) AC_DEFUN([ZFS_AC_DEBUG], [ - AC_MSG_CHECKING([whether debugging is enabled]) - AC_ARG_ENABLE( [debug], - AS_HELP_STRING([--enable-debug], - [Enable generic debug support (default off)]), - [ case "$enableval" in - yes) zfs_ac_debug=yes ;; - no) zfs_ac_debug=no ;; - *) AC_MSG_RESULT([Error!]) - AC_MSG_ERROR([Bad value "$enableval" for --enable-debug]) ;; - esac ] -) -if test "$zfs_ac_debug" = yes; then - AC_MSG_RESULT([yes]) - AC_DEFINE([DEBUG], [1], - [Define to 1 to enable debug tracing]) - KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG " + AC_MSG_CHECKING([whether debugging is enabled]) + AC_ARG_ENABLE( [debug], + AS_HELP_STRING([--enable-debug], + [Enable generic debug support (default off)]), + [ case "$enableval" in + yes) zfs_ac_debug=yes ;; + no) zfs_ac_debug=no ;; + *) AC_MSG_RESULT([Error!]) + AC_MSG_ERROR([Bad value "$enableval" for --enable-debug]) ;; + esac ] + ) + if test "$zfs_ac_debug" = yes; then + AC_MSG_RESULT([yes]) + KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG " HOSTCFLAGS="${HOSTCFLAGS} -DDEBUG " - USERDEBUG="-DDEBUG" - else - AC_MSG_RESULT([no]) - AC_DEFINE([NDEBUG], [1], - [Define to 1 to disable debug tracing]) - KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG " + else + AC_MSG_RESULT([no]) + AC_DEFINE([NDEBUG], [1], + [Define to 1 to disable debug tracing]) + KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG " HOSTCFLAGS="${HOSTCFLAGS} -DNDEBUG " - USERDEBUG="-DNDEBUG" - fi - - AC_SUBST(USERDEBUG) + fi ]) AC_DEFUN([ZFS_AC_CONFIG_SCRIPT], [ diff --git a/scripts/zpios.sh b/scripts/zpios.sh index f15d39f043..e0b806cecf 100755 --- a/scripts/zpios.sh +++ b/scripts/zpios.sh @@ -33,7 +33,6 @@ DESCRIPTION: OPTIONS: -h Show this message -v Verbose - -f Force everything -p Enable profiling -c Zpool configuration -t Zpios test @@ -174,7 +173,7 @@ ZPIOS_OPTIONS= ZPOOL_OPTIONS="" ZFS_OPTIONS="" -while getopts 'hvfpc:t:o:l:s:' OPTION; do +while getopts 'hvpc:t:o:l:s:' OPTION; do case $OPTION in h) usage @@ -184,10 +183,6 @@ while getopts 'hvfpc:t:o:l:s:' OPTION; do VERBOSE=1 VERBOSE_FLAG="-v" ;; - f) - FORCE=1 - FORCE_FLAG="-f" - ;; p) PROFILE=1 ;; @@ -242,8 +237,7 @@ if [ ${VERBOSE} ]; then fi # Create the zpool configuration -${ZPOOL_CREATE_SH} ${VERBOSE_FLAG} ${FORCE_FLAG} \ - -p ${ZPOOL_NAME} -c ${ZPOOL_CONFIG} \ +${ZPOOL_CREATE_SH} ${VERBOSE_FLAG} -p ${ZPOOL_NAME} -c ${ZPOOL_CONFIG} \ -l "${ZPOOL_OPTIONS}" -s "${ZFS_OPTIONS}" || exit 1 if [ ${PROFILE} ]; then @@ -262,8 +256,8 @@ if [ ${VERBOSE} ]; then fi # Destroy the zpool configuration -${ZPOOL_CREATE_SH} ${VERBOSE_FLAG} ${FORCE_FLAG} \ - -p ${ZPOOL_NAME} -c ${ZPOOL_CONFIG} -d || exit 1 +${ZPOOL_CREATE_SH} ${VERBOSE_FLAG} -p ${ZPOOL_NAME} \ + -c ${ZPOOL_CONFIG} -d || exit 1 # Unload the test module stack and wait for device removal unload_modules diff --git a/scripts/zpool-create.sh b/scripts/zpool-create.sh index 8e44f81c66..ac7ab9ad9a 100755 --- a/scripts/zpool-create.sh +++ b/scripts/zpool-create.sh @@ -24,10 +24,10 @@ DESCRIPTION: OPTIONS: -h Show this message -v Verbose - -f Force everything -c Configuration for zpool -p Name for zpool -d Destroy zpool (default create) + -f Force everything -l Additional zpool options -s Additional zfs options