~ubuntu-branches/ubuntu/feisty/openafs/feisty

« back to all changes in this revision

Viewing changes to src/afs/afs_dcache.c

  • Committer: Package Import Robot
  • Author(s): Russ Allbery
  • Date: 2007-03-26 18:56:55 UTC
  • Revision ID: package-import@ubuntu.com-20070326185655-osce8n0y0dptgurh
* New upstream release.  (Closes: #415699)
  - Support newer Linux kernels.  (Closes: #409797, #410120)
  - Add aklog fallbacks for null realms to support the referral
    capability in MIT Kerberos 1.6 and later.  (Closes: #410314)
* Apply patch from Thomas Sesselmann to support setting options to pass
  to bosserver in /etc/default/openafs-fileserver.  (Closes: #409357)
* Remove the rx_Init calls in the PAM module.  The internal counters
  that had to be initialized that way have been removed.
* Now that we're running regen.sh as part of the build process, only
  patch the Autoconf source files and not the generated output to make
  the diff easier to audit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#include "afs/param.h"
15
15
 
16
16
RCSID
17
 
    ("$Header: /cvs/openafs/src/afs/afs_dcache.c,v 1.42.2.19 2005/10/13 18:42:27 shadow Exp $");
 
17
    ("$Header: /cvs/openafs/src/afs/afs_dcache.c,v 1.42.2.20 2006/11/10 00:16:29 shadow Exp $");
18
18
 
19
19
#include "afs/sysincludes.h"    /*Standard vendor system headers */
20
20
#include "afsincludes.h"        /*AFS-based standard headers */
2736
2736
    if (CheckLock(&afs_xdcache) != -1)
2737
2737
        osi_Panic("getdslot nolock");
2738
2738
    if (aslot < 0 || aslot >= afs_cacheFiles)
2739
 
        osi_Panic("getdslot slot");
 
2739
        osi_Panic("getdslot slot %d (of %d)", aslot, afs_cacheFiles);
2740
2740
    tdc = afs_indexTable[aslot];
2741
2741
    if (tdc) {
2742
2742
        QRemove(&tdc->lruq);    /* move to queue head */