From: Harald Barth Date: Fri, 10 Oct 2008 12:50:52 +0000 (+0000) Subject: cmdebug-entry-count-20081010 X-Git-Tag: openafs-devel-1_5_61~766 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=d569a083e337c2971a4ac471d8adeb1788518684;p=packages%2Fo%2Fopenafs.git cmdebug-entry-count-20081010 LICENSE IPL10 raise max number of entries as cache managers routinely have more than 10,000 vnode status objects --- diff --git a/src/venus/cmdebug.c b/src/venus/cmdebug.c index 04ea0632d..1685113b1 100644 --- a/src/venus/cmdebug.c +++ b/src/venus/cmdebug.c @@ -266,7 +266,7 @@ PrintCacheEntries32(struct rx_connection *aconn, int aint32) struct AFSDBCacheEntry centry; char *cellname; - for (i = 0; i < 10000; i++) { + for (i = 0; i < 1000000; i++) { code = RXAFSCB_GetCE(aconn, i, ¢ry); if (code) { if (code == 1) @@ -363,7 +363,7 @@ PrintCacheEntries64(struct rx_connection *aconn, int aint32) char *cellname; int ce64 = 0; - for (i = 0; i < 10000; i++) { + for (i = 0; i < 1000000; i++) { code = RXAFSCB_GetCE64(aconn, i, ¢ry); if (code) { if (code == 1)