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

diff --git a/CHANGES b/CHANGES
index bd94266a30ca3d3c8bc2dcb39754f843e26ec1f3..af2d722f198a58dc3539ada4906915323b5af0d7 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+1355.  [tuning]        Reduce the number of events / quantum for zone tasks.
+
 1354.  [doc]           lwres man pages had illegal nroff.
 
 1353.  [contrib]       sdb/ldap to version 0.9.
index e94aa5a7d72b2aab365e56a02c935061b66fb291..130584b26346a54223cac4addcbdd3f071e2fb83 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zone.c,v 1.333.2.12 2002/08/02 04:28:03 marka Exp $ */
+/* $Id: zone.c,v 1.333.2.13 2002/08/06 02:24:15 marka Exp $ */
 
 #include <config.h>
 
@@ -5318,7 +5318,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;