changeset 12432:8793036f6de8

Services' default vsz_limit wasn't actually using default_vsz_limit but rather 4 GB.
author Timo Sirainen <tss@iki.fi>
date Tue, 16 Nov 2010 19:58:03 +0000
parents eeaf30cfad36
children 2456cd0917d3
files src/anvil/anvil-settings.c src/auth/auth-settings.c src/config/config-settings.c src/dict/dict-settings.c src/director/director-settings.c src/dns/dns-client-settings.c src/doveadm/doveadm-settings.c src/imap/imap-settings.c src/log/log-settings.c src/pop3/pop3-settings.c src/ssl-params/ssl-params-settings.c src/util/tcpwrap-settings.c
diffstat 12 files changed, 13 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/src/anvil/anvil-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/anvil/anvil-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -39,7 +39,7 @@
 	.client_limit = 0,
 	.service_count = 0,
 	.idle_kill = -1U,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &anvil_unix_listeners_buf,
 			      sizeof(anvil_unix_listeners[0]) } },
--- a/src/auth/auth-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/auth/auth-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -52,7 +52,7 @@
 	.client_limit = 4096,
 	.service_count = 0,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &auth_unix_listeners_buf,
 			      sizeof(auth_unix_listeners[0]) } },
@@ -92,7 +92,7 @@
 	.client_limit = 1,
 	.service_count = 1,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &auth_worker_unix_listeners_buf,
 			      sizeof(auth_worker_unix_listeners[0]) } },
--- a/src/config/config-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/config/config-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -37,7 +37,7 @@
 	.client_limit = 0,
 	.service_count = 0,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &config_unix_listeners_buf,
 			      sizeof(config_unix_listeners[0]) } },
--- a/src/dict/dict-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/dict/dict-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -36,7 +36,7 @@
 	.client_limit = 1,
 	.service_count = 0,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &dict_unix_listeners_buf,
 			      sizeof(dict_unix_listeners[0]) } },
--- a/src/director/director-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/director/director-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -49,7 +49,7 @@
 	.client_limit = 0,
 	.service_count = 0,
 	.idle_kill = -1U,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &director_unix_listeners_buf,
 			      sizeof(director_unix_listeners[0]) } },
--- a/src/dns/dns-client-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/dns/dns-client-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -39,7 +39,7 @@
 	.client_limit = 1,
 	.service_count = 0,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &dns_client_unix_listeners_buf,
 			      sizeof(dns_client_unix_listeners[0]) } },
--- a/src/doveadm/doveadm-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/doveadm/doveadm-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -39,7 +39,7 @@
 	.client_limit = 1,
 	.service_count = 1,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &doveadm_unix_listeners_buf,
 			      sizeof(doveadm_unix_listeners[0]) } },
--- a/src/imap/imap-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/imap/imap-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -44,7 +44,7 @@
 	.client_limit = 1,
 	.service_count = 1,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &imap_unix_listeners_buf,
 			      sizeof(imap_unix_listeners[0]) } },
--- a/src/log/log-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/log/log-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -24,7 +24,7 @@
 	.client_limit = 0,
 	.service_count = 0,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = ARRAY_INIT,
 	.fifo_listeners = ARRAY_INIT,
--- a/src/pop3/pop3-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/pop3/pop3-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -44,7 +44,7 @@
 	.client_limit = 1,
 	.service_count = 1,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &pop3_unix_listeners_buf,
 			      sizeof(pop3_unix_listeners[0]) } },
--- a/src/ssl-params/ssl-params-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/ssl-params/ssl-params-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -45,7 +45,7 @@
 	.client_limit = 0,
 	.service_count = 0,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = { { &ssl_params_unix_listeners_buf,
 			      sizeof(ssl_params_unix_listeners[0]) } },
--- a/src/util/tcpwrap-settings.c	Tue Nov 16 19:51:46 2010 +0000
+++ b/src/util/tcpwrap-settings.c	Tue Nov 16 19:58:03 2010 +0000
@@ -26,7 +26,7 @@
 	.client_limit = 1,
 	.service_count = 0,
 	.idle_kill = 0,
-	.vsz_limit = -1U,
+	.vsz_limit = (uoff_t)-1,
 
 	.unix_listeners = ARRAY_INIT,
 	.fifo_listeners = ARRAY_INIT,