public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
* LVM2 doc/example.conf.in lib/config/defaults.h
@ 2011-10-11  9:13 zkabelac
  0 siblings, 0 replies; only message in thread
From: zkabelac @ 2011-10-11  9:13 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2011-10-11 09:13:39

Modified files:
	doc            : example.conf.in 
	lib/config     : defaults.h 

Log message:
	Reduce preallocated stack size
	
	Go with just 64KiB for stack.
	
	Closer inspection should be made, whether we actually need to play with
	settings at all.
	
	Since default stack size is 8MB and gets mapped via page locking thus,
	it seems there is no big help with preallocation of stack to some value.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/doc/example.conf.in.diff?cvsroot=lvm2&r1=1.33&r2=1.34
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/config/defaults.h.diff?cvsroot=lvm2&r1=1.84&r2=1.85

--- LVM2/doc/example.conf.in	2011/10/04 20:49:24	1.33
+++ LVM2/doc/example.conf.in	2011/10/11 09:13:39	1.34
@@ -481,7 +481,8 @@
     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
--- LVM2/lib/config/defaults.h	2011/09/22 17:39:57	1.84
+++ LVM2/lib/config/defaults.h	2011/10/11 09:13:39	1.85
@@ -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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-10-11  9:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-11  9:13 LVM2 doc/example.conf.in lib/config/defaults.h zkabelac

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).