summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/example.conf.in3
-rw-r--r--lib/config/defaults.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/doc/example.conf.in b/doc/example.conf.in
index d38f90ea..3c08d124 100644
--- a/doc/example.conf.in
+++ b/doc/example.conf.in
@@ -481,7 +481,8 @@ activation {
missing_stripe_filler = "error"
# How much stack (in KB) to reserve for use while devices suspended
- reserved_stack = 256
+ # Prior to version 2.02.89 this used to be set to 256KB
+ reserved_stack = 64
# How much memory (in KB) to reserve for use while devices suspended
reserved_memory = 8192
diff --git a/lib/config/defaults.h b/lib/config/defaults.h
index 16b524db..0583fd2b 100644
--- a/lib/config/defaults.h
+++ b/lib/config/defaults.h
@@ -116,7 +116,7 @@
#ifdef DEVMAPPER_SUPPORT
# define DEFAULT_ACTIVATION 1
# define DEFAULT_RESERVED_MEMORY 8192
-# define DEFAULT_RESERVED_STACK 256
+# define DEFAULT_RESERVED_STACK 64 /* KB */
# define DEFAULT_PROCESS_PRIORITY -18
#else
# define DEFAULT_ACTIVATION 0