Skip to content
Snippets Groups Projects
Commit 7b3ac94d authored by Iustin Pop's avatar Iustin Pop
Browse files

Change default stripe count to 1


In order not to change the default during a stable series, we modify
configure.ac to default to one stripe, in effect keeping the status quo
(well, minus the LVM Attach() changes).

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
parent 38256320
No related branches found
No related tags found
No related merge requests found
...@@ -123,10 +123,10 @@ AC_SUBST(SOCAT_PATH, $socat_path) ...@@ -123,10 +123,10 @@ AC_SUBST(SOCAT_PATH, $socat_path)
AC_ARG_WITH([lvm-stripecount], AC_ARG_WITH([lvm-stripecount],
[AS_HELP_STRING([--with-lvm-stripecount=NUM], [AS_HELP_STRING([--with-lvm-stripecount=NUM],
[the number of stripes to use for LVM volumes] [the number of stripes to use for LVM volumes]
[ (default is 3)] [ (default is 1)]
)], )],
[lvm_stripecount="$withval"], [lvm_stripecount="$withval"],
[lvm_stripecount="3"]) [lvm_stripecount="1"])
AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount) AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount)
# Check common programs # Check common programs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment