From: Mark Andrews Date: Tue, 6 Aug 2002 02:16:09 +0000 (+0000) Subject: 1355. [tuning] Reduce the number events / quantum for zone tasks. X-Git-Tag: v9.2.3rc1~104^2~405 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=1feb76edcbb8ee97d1757f73115b7c4a71de6e0e;p=thirdparty%2Fbind9.git 1355. [tuning] Reduce the number events / quantum for zone tasks. --- diff --git a/CHANGES b/CHANGES index 745afcacaf8..d589ae49c96 100644 --- 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. diff --git a/lib/dns/zone.c b/lib/dns/zone.c index 8c6c02fa7c2..17bfeb1f586 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -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 @@ -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;