]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1355. [tuning] Reduce the number events / quantum for zone tasks.
authorMark Andrews <marka@isc.org>
Tue, 6 Aug 2002 02:16:09 +0000 (02:16 +0000)
committerMark Andrews <marka@isc.org>
Tue, 6 Aug 2002 02:16:09 +0000 (02:16 +0000)
CHANGES
lib/dns/zone.c

diff --git a/CHANGES b/CHANGES
index 745afcacaf8b433275a7b5ad614c1caa26849341..d589ae49c963532e495af7f69c1b075828aca22c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+1355.  [tuning]        Reduce the number events / quantum for zone tasks.
+
 1354.  [bug]           Fix DNSSEC wildcard proof for CNAME/DNAME.
 
 1354.  [doc]           lwres man pages had illegal nroff.
index 8c6c02fa7c2779dde42313ba3cae1be20f84018e..17bfeb1f586ad11973d6494e2d67874ea9031877 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zone.c,v 1.374 2002/07/29 06:58:46 marka Exp $ */
+/* $Id: zone.c,v 1.375 2002/08/06 02:16:09 marka Exp $ */
 
 #include <config.h>
 
@@ -5707,7 +5707,7 @@ dns_zonemgr_create(isc_mem_t *mctx, isc_taskmgr_t *taskmgr,
 
        /* Create the zone task pool. */
        result = isc_taskpool_create(taskmgr, mctx,
-                                    8 /* XXX */, 0, &zmgr->zonetasks);
+                                    8 /* XXX */, 2, &zmgr->zonetasks);
        if (result != ISC_R_SUCCESS)
                goto free_rwlock;