mirror of
https://git.openafs.org/openafs.git
synced 2025-02-01 14:07:39 +00:00
872bc94f8c
FIXES 1774 thanks to nneul@umr.edu for providing a script to do this. gnu indent 2.2.9 options: -npro -nbad -bap -nbc -bbo -br -ce -cdw -brs -ncdb -cp1 -ncs -di2 -ndj -nfc1 -nfca -i4 -lp -npcs -nprs -psl -sc -nsob -ts8 ==================== This delta was composed from multiple commits as part of the CVS->Git migration. The checkin message with each commit was inconsistent. The following are the additional commit messages. ==================== FIXES 1774 fix subst mistake
25 lines
884 B
C
25 lines
884 B
C
/*
|
|
* Copyright 2000, International Business Machines Corporation and others.
|
|
* All Rights Reserved.
|
|
*
|
|
* This software has been released under the terms of the IBM Public
|
|
* License. For details, see the LICENSE file in the top-level source
|
|
* directory or online at http://www.openafs.org/dl/license10.html
|
|
*/
|
|
|
|
/*
|
|
* This package is used to actively manage the expiration of callbacks,
|
|
* so that the rest of the cache manager doesn't need to compute
|
|
* whether a callback has expired or not, but can tell with one simple
|
|
* check, that is, whether the CStatd bit is on or off.
|
|
*/
|
|
|
|
/* how many seconds in a slot */
|
|
#define CBHTSLOTLEN 128
|
|
/* how many slots in the table */
|
|
#define CBHTSIZE 128
|
|
/* 7 is LOG2(slotlen) */
|
|
#define CBHash(t) ((t)>>7)
|
|
|
|
#define CBQTOV(e) ((struct vcache *)(((char *) (e)) - (((char *)(&(((struct vcache *)(e))->callsort))) - ((char *)(e)))))
|