1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

configure: enable integrity by default

This commit is contained in:
David Teigland 2020-09-16 15:14:51 -05:00
parent 46f43589d0
commit 72b931d664
3 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
Version 2.03.11 - Version 2.03.11 -
================================== ==================================
Configure --with-integrity enabled.
Restore lost signal blocking while VG lock is held. Restore lost signal blocking while VG lock is held.
Improve estimation of needed extents when creating thin-pool. Improve estimation of needed extents when creating thin-pool.
Use extra 1% when resizing thin-pool metadata LV with --use-policy. Use extra 1% when resizing thin-pool metadata LV with --use-policy.

2
configure vendored
View File

@ -9771,7 +9771,7 @@ $as_echo_n "checking whether to include integrity... " >&6; }
if test "${with_integrity+set}" = set; then : if test "${with_integrity+set}" = set; then :
withval=$with_integrity; INTEGRITY=$withval withval=$with_integrity; INTEGRITY=$withval
else else
INTEGRITY="none" INTEGRITY="internal"
fi fi

View File

@ -673,7 +673,7 @@ AC_MSG_CHECKING(whether to include integrity)
AC_ARG_WITH(integrity, AC_ARG_WITH(integrity,
AC_HELP_STRING([--with-integrity=TYPE], AC_HELP_STRING([--with-integrity=TYPE],
[integrity support: internal/none [none]]), [integrity support: internal/none [none]]),
INTEGRITY=$withval, INTEGRITY="none") INTEGRITY=$withval, INTEGRITY="internal")
AC_MSG_RESULT($INTEGRITY) AC_MSG_RESULT($INTEGRITY)