In message <[EMAIL PROTECTED]>,Matthew Miller writes:
>Hmmm. Bumping up the chunksize (to 20) seems to have done something: 
>  AFS using 5085868 of the cache's available 8388608 1K byte blocks.

cache fullness is determined by this function:

#define afs_CacheIsTooFull() \
    (afs_blocksUsed - afs_blocksDiscarded > \
        (CM_DCACHECOUNTFREEPCT*afs_cacheBlocks)/100 || \
     afs_freeDCCount - afs_discardDCCount < \
        ((100-CM_DCACHECOUNTFREEPCT)*afs_cacheFiles)/100)

i suspect that you are running up against the second test (-files 50000 *
CM_DCACHECOUNTFREEPCT 95%).  increasing the chunksize is probably a good
idea regardless.
_______________________________________________
OpenAFS-info mailing list
[email protected]
https://lists.openafs.org/mailman/listinfo/openafs-info

Reply via email to