Cleanup AFS_*LINUX_ENV usage
[openafs.git] / src / venus / kdump.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #include <afs/param.h>
12
13 #include <roken.h>
14
15 #include <afs/cmd.h>
16
17 #if !defined(AFS_DARWIN_ENV) && !defined(AFS_FBSD_ENV)
18 /* Here be hacks. */
19 #ifdef AFS_LINUX_ENV
20 #define __KERNEL__
21 #include <linux/string.h>
22 #define _STRING_H 1
23 #define _SYS_STATFS_H 1
24 #define _BITS_SIGCONTEXT_H 1
25 #undef USE_UCONTEXT
26 #endif
27
28 #ifdef AFS_LINUX_ENV
29 /* For some reason, this doesn't get defined in linux/types.h
30    if __KERNEL_STRICT_NAMES is defined. But the definition of
31    struct inode uses it.
32 */
33 #ifndef pgoff_t
34 #define pgoff_t unsigned long
35 #endif
36 #endif
37
38 #include <string.h>
39
40 #ifdef __linux__
41 #define _CFS_HEADER_
42 #define _AFFS_FS_I
43 #define _NFS_FS_I
44 #define _SYSV_FS_SB
45 #define _AFFS_FS_SB
46 #define _NFS_FS_SB
47 #define __LINUX_UFS_FS_SB_H
48 #define _SYSV_FS_I
49 #define _LINUX_CODA_FS_I
50 #define _LINUX_NTFS_FS_SB_H
51 #define _LINUX_NTFS_FS_I_H
52 #define _NCP_FS_SB
53 struct sysv_sb_info {
54 };
55 struct affs_sb_info {
56 };
57 struct ufs_sb_info {
58 };
59 struct nfs_sb_info {
60 };
61 struct nfs_inode_info {
62 };
63 struct sysv_inode_info {
64 };
65 struct coda_inode_info {
66 };
67 struct affs_inode_info {
68 };
69 struct nfs_lock_info {
70 };
71 struct ntfs_sb_info {
72 };
73 struct ntfs_inode_info {
74 };
75 struct ncp_sb_info {
76 };
77 #include <linux/types.h>
78 #define u32 unsigned int
79 #define s32 int
80 #define u16 unsigned short
81 #include <features.h>
82 #if __GLIBC_MINOR__ >= 2
83 #define _SYS_TYPES_H 1
84 #endif
85 #define __KERNEL__
86 #endif
87
88 /* This tells afs.h to pick up afs_args from the dest tree. */
89 #define KDUMP_KERNEL
90
91 /*
92  * Need to include <netdb.h> before _KERNEL is defined since on IRIX 6.5
93  * <netdb.h> includes <netinet/in.h>, which in turn declares inet_addr()
94  * if _KERNEL is defined.  This declaration conflicts with that in
95  * <arpa/inet.h>.
96  */
97 #if     ! defined(AFS_AIX_ENV)
98 #include <netdb.h>
99 #endif
100
101 /* For AFS_SGI61_ENV and a 64 bit OS, _KMEMUSER should be defined on the
102  * compile line for kdump.o in the Makefile. This lets us pick up
103  * app32_ptr_t from types.h when included from afs/param.h.
104  */
105 #ifdef AFS_SGI62_ENV
106 #define _KERNEL 1
107 #endif
108
109 #ifndef AFS_LINUX_ENV
110 #include <nlist.h>
111 #endif
112
113 #ifdef AFS_HPUX_ENV
114 #include <a.out.h>
115 #endif
116
117 #include <afs/stds.h>
118
119 #ifdef  AFS_SUN5_ENV /*XXXXX*/
120 #include <sys/t_lock.h>
121 struct vnode foo;
122 #endif
123
124 #ifdef AFS_SGI53_ENV
125 #define _KERNEL 1
126 #include <sys/sema.h>
127 #ifndef AFS_SGI62_ENV
128 #undef _KERNEL 1
129 #endif
130 #endif
131
132 #ifdef AFS_SGI62_ENV
133 #include <sys/fcntl.h>
134 #ifndef L_SET
135 #define L_SET 0
136 #endif
137 #endif
138
139 #include <sys/param.h>
140
141 #ifndef AFS_SGI64_ENV
142 #include <sys/user.h>
143 #endif
144
145 #ifndef AFS_LINUX_ENV
146 #include <sys/file.h>
147 #endif
148
149 /*
150  * On SGIs, when _KERNEL is defined, <netinet/in.h> declares inet_addr()
151  * in a way that conflicts with the declaration in <arpa/inet.h>.
152  *
153  * Here we bring in <netinet/in.h> without _KERNEL defined and restore
154  * _KERNEL afterwards if needed.
155  *
156  * A better solution might be to straighten out which #includes are
157  * sensitive to _KERNEL on SGIs....
158  */
159 #if defined(AFS_SGI_ENV) && defined(_KERNEL)
160 # undef _KERNEL
161 # include <netinet/in.h>        /* struct in_addr */
162 # define _KERNEL 1
163 #else
164 # include <netinet/in.h>        /* struct in_addr */
165 #endif
166
167 #if defined(AFS_SGI_ENV)
168 #ifdef       AFS_SGI_ENV
169 #include <sys/vnode.h>
170 #endif /* AFS_SGI_ENV */
171 #else
172 #if defined(AFS_DARWIN_ENV) || defined(AFS_FBSD_ENV)
173 #include <sys/vnode.h>
174 #include <sys/mount.h>
175 #include <ufs/ufs/quota.h>
176 #include <ufs/ufs/inode.h>
177 #include <ufs/ffs/fs.h>
178 #else
179 #include "sys/vfs.h"
180 #ifdef AFS_LINUX_ENV
181 #ifndef UIO_MAXIOV
182 #define UIO_MAXIOV 1            /* don't care */
183 #endif
184 #if __GLIBC_MINOR__ == 0
185 #include <iovec.h>
186 #endif
187 /*#define _TIME_H*/
188 /*#define _SYS_UIO_H */
189 #define _LINUX_SOCKET_H
190 #undef INT_MAX
191 #undef UINT_MAX
192 #undef LONG_MAX
193 #undef ULONG_MAX
194 #define _LINUX_TIME_H
195 #ifndef AFS_LINUX_ENV
196 #define _LINUX_FCNTL_H
197 #endif
198 #ifdef AFS_IA64_LINUX_ENV
199 #define flock64  flock
200 #endif /* AFS_IA64_LINUX_ENV */
201 #ifdef AFS_S390_LINUX_ENV
202 #define _S390_STATFS_H
203 #else
204 #ifdef AFS_SPARC64_LINUX_ENV
205 #define _SPARC64_STATFS_H
206 #define _SPARC_STATFS_H
207 #else
208 #ifdef AFS_SPARC_LINUX_ENV
209 #define _SPARC_STATFS_H
210 #else
211 #ifdef AFS_ALPHA_LINUX_ENV
212 #define _ALPHA_STATFS_H
213 #else
214 #define _I386_STATFS_H
215 #endif /* AFS_ALPHA_LINUX_ENV */
216 #endif /* AFS_SPARC_LINUX_ENV */
217 #endif /* AFS_SPARC64_LINUX_ENV */
218 #endif /* AFS_S390_LINUX_ENV */
219 struct timezone {
220     int a, b;
221 };
222 #if defined(WORDS_BIGENDIAN)
223 #define _LINUX_BYTEORDER_BIG_ENDIAN_H
224 #else
225 #define _LINUX_BYTEORDER_LITTLE_ENDIAN_H
226 #endif
227 /* Avoid problems with timer_t redefinition */
228 #ifndef timer_t
229 #define timer_t ktimer_t
230 #define timer_t_redefined
231 #endif
232 #ifdef AFS_LINUX_ENV
233 /* For some reason, this doesn't get defined in linux/types.h
234    if __KERNEL_STRICT_NAMES is defined. But the definition of
235    struct inode uses it.
236 */
237 #ifndef HAVE_SECTOR_T
238 /* got it from linux/types.h */
239 typedef unsigned long sector_t;
240 #endif /* HAVE_SECTOR_T */
241 #endif /* AFS_LINUX_ENV */
242 #include <linux/version.h>
243 #include <linux/fs.h>
244 #include <osi_vfs.h>
245 #ifdef timer_t_redefined
246 #undef timer_t
247 #undef timer_t_redefined
248 #endif
249 #else /* AFS_LINUX_ENV */
250 #ifdef AFS_HPUX110_ENV
251 #define  KERNEL
252 #define  _KERNEL 1
253 /* Declare following so sys/vnode.h will compile with KERNEL defined */
254 #define FILE FILe
255 typedef enum _spustate {        /* FROM /etc/conf/h/_types.h */
256     SPUSTATE_NONE = 0,          /* must be 0 for proper initialization */
257     SPUSTATE_IDLE,              /* spu is idle */
258     SPUSTATE_USER,              /* spu is in user mode */
259     SPUSTATE_SYSTEM,            /* spu is in system mode */
260     SPUSTATE_UNKNOWN,           /* utility code for NEW_INTERVAL() */
261     SPUSTATE_NOCHANGE           /* utility code for NEW_INTERVAL() */
262 } spustate_t;
263 #define k_off_t off_t
264 #include "sys/vnode.h"
265 #undef KERNEL
266 #undef _KERNEL
267 #else /* AFS_HPUX110_ENV */
268 #include "sys/vnode.h"
269 #endif /* else AFS_HPUX110_ENV */
270 #endif /* else AFS_LINUX_ENV */
271 #ifdef  AFS_HPUX_ENV
272 #include "sys/inode.h"
273 #else
274 #ifndef AFS_AIX_ENV
275 #ifdef  AFS_SUN5_ENV
276 #include "sys/fs/ufs_inode.h"
277 #else
278 #ifndef AFS_LINUX_ENV
279 #include "ufs/inode.h"
280 #endif
281 #endif
282 #endif
283 #endif
284 #endif
285 #endif
286
287 /* AFS includes */
288 #ifdef AFS_AIX41_ENV
289 /* This definition is in rx_machdep.h, currently only for AIX 41 */
290 #define RX_ENABLE_LOCKS
291 /* The following two defines are from rx_machdep.h and are used in rx_
292  * structures.
293  */
294 #define afs_kmutex_t int
295 #define afs_kcondvar_t int
296 #endif /* AFS_AIX41_ENV */
297
298
299 #ifdef AFS_SUN5_ENV
300
301 #define RX_ENABLE_LOCKS
302
303 /**
304   * Removed redefinitions of afs_kmutex_t and afs_kcondvar_t and included
305   * the system header files in which they are defined
306   */
307 #include <sys/mutex.h>
308 #include <sys/condvar.h>
309 typedef kmutex_t afs_kmutex_t;
310 typedef kcondvar_t afs_kcondvar_t;
311 #endif /* AFS_SUN5_ENV */
312
313 #ifdef AFS_HPUX110_ENV
314 #define RX_ENABLE_LOCKS
315 typedef struct {
316     void *s_lock;
317     int count;
318     long sa_fill1;
319     void *wait_list;
320     void *sa_fill2[2];
321     int sa_fill2b[2];
322     long sa_fill2c[3];
323     int sa_fill2d[16];
324     int order;
325     int sa_fill3;
326 } afs_kmutex_t;
327 typedef char *afs_kcondvar_t;
328 #endif /* AFS_HPUX110_ENV */
329
330 #ifdef AFS_SGI65_ENV
331 #define RX_ENABLE_LOCKS 1
332 typedef struct {
333     __psunsigned_t opaque1;
334     void *opaque2;
335 } afs_kmutex_t;
336 typedef struct {
337     __psunsigned_t opaque;
338 } afs_kcondvar_t;
339 #endif /* AFS_SGI65_ENV */
340
341 #ifdef AFS_LINUX_ENV
342 #include <asm/atomic.h>
343 #include <asm/semaphore.h>
344 #define RX_ENABLE_LOCKS 1
345 typedef struct {
346     struct semaphore opaque1;
347     int opaque2;
348 } afs_kmutex_t;
349 typedef void *afs_kcondvar_t;
350 #endif /* AFS_LINUX_ENV */
351
352 #include <afs/exporter.h>
353 /*#include "afs/osi.h"*/
354
355 typedef struct {
356     int tv_sec;
357     int tv_usec;
358 } osi_timeval32_t;              /* Needed here since KERNEL defined. */
359
360 /*#include "afs/volerrors.h"*/
361 #ifdef AFS_LINUX_ENV
362 #define _SYS_TIME_H
363 #endif
364
365 #include <afs/afsint.h>
366 #include "vlserver/vldbint.h"
367 #include "afs/lock.h"
368
369 #define KERNEL
370
371 #ifndef notdef
372 #define AFS34
373 #define AFS33
374 #define AFS32a
375 #else
376 #define AFS32
377 #endif
378
379
380 #ifdef AFS_SGI61_ENV
381 extern off64_t lseek64();
382 #define KDUMP_SIZE_T size_t
383 #else /* AFS_SGI61_ENV */
384 #define KDUMP_SIZE_T int
385 #endif /* AFS_SGI61_ENV */
386
387 #include "afs/afs.h"            /* XXXX Getting it from the obj tree XXX */
388 #include "afs/afs_axscache.h"   /* XXXX Getting it from the obj tree XXX */
389 #include <afs/afs_stats.h>
390 #include <afs/nfsclient.h>
391
392 #include <afs/cmd.h>
393 #include <rx/rx.h>
394
395
396 #undef  KERNEL
397
398 #if defined(AFS_SGI_ENV)
399 #define UNIX "/unix"
400 #else
401 #if     defined(AFS_HPUX100_ENV)
402 #define UNIX "/stand/vmunix"
403 #else
404 #ifdef  AFS_HPUX_ENV
405 #define UNIX  "/hp-ux"
406 #else
407 #ifdef  AFS_SUN5_ENV
408 #define UNIX  "/dev/ksyms"
409 #else
410 #define UNIX  "/vmunix"
411 #endif
412 #endif /* AFS_HPUX_ENV */
413 #endif /* AFS_HPUX100_ENV */
414 #endif /* AFS_SGI_ENV */
415
416 #if     defined(AFS_SUN5_ENV)
417 #define CORE "/dev/mem"
418 #else
419 #define CORE "/dev/kmem"
420 #endif
421
422 /* Forward declarations */
423 void print_Conns();
424 void print_cbHash();
425 void print_DindexTimes();
426 void print_DdvnextTbl();
427 void print_DdcnextTbl();
428 void print_DindexFlags();
429 void print_buffers();
430 void print_allocs();
431 void kread(int kmem, off_t loc, void *buf, KDUMP_SIZE_T len);
432 void print_exporter();
433 void print_nfsclient();
434 void print_unixuser();
435 void print_cell();
436 void print_server();
437 void print_conns();
438 void print_conn();
439 void print_volume();
440 void print_venusfid();
441 void print_vnode();
442 void print_vcache();
443 void print_dcache();
444 void print_bkg();
445 void print_vlru();
446 void print_dlru();
447 void print_callout();
448 void print_dnlc();
449 void print_global_locks();
450 void print_global_afs_resource();
451 void print_global_afs_cache();
452 void print_rxstats();
453 void print_rx();
454 void print_services();
455 #ifdef KDUMP_RX_LOCK
456 void print_peertable_lock();
457 void print_conntable_lock();
458 void print_calltable_lock();
459 #endif
460 void print_peertable();
461 void print_conntable();
462 void print_calltable();
463 void print_eventtable();
464 void print_upDownStats();
465 void print_cmperfstats();
466 void print_cmstats();
467
468
469
470
471 int opencore();
472
473 #if     defined(AFS_HPUX_ENV) && defined(__LP64__)
474 #define afs_nlist nlist64
475 #define AFSNLIST(N, C) nlist64((N), (C))
476 #else /* defined(AFS_HPUX_ENV) && defined(__LP64__) */
477 #ifdef AFS_SGI61_ENV
478 #ifdef AFS_32BIT_KERNEL_ENV
479 #define afs_nlist nlist
480 #define AFSNLIST(N, C) nlist((N), (C))
481 #else
482 #define afs_nlist nlist64
483 #define AFSNLIST(N, C) nlist64((N), (C))
484 #endif /* AFS_32BIT_KERNEL_ENV */
485 #else /* AFS_SGI61_ENV */
486 #ifdef AFS_LINUX_ENV
487 struct afs_nlist {
488     char *n_name;
489     unsigned long n_value;
490 };
491 #else /* AFS_LINUX_ENV */
492 #define afs_nlist nlist
493 #endif /* AFS_LINUX_ENV */
494 #define AFSNLIST(N, C) nlist((N), (C))
495 #endif /* AFS_SGI61_ENV */
496 #endif /* defined(AFS_HPUX_ENV) && defined(__LP64__) */
497
498 char *obj = UNIX, *core = CORE;
499 int kmem;
500
501 int Dcells = 0, Dusers = 0, Dservers = 0, Dconns = 0, Dvols = 0, Ddvols =
502     0, mem = 0;
503 int Dvstats = 0, Ddstats = 0, Dnfs = 0, Dglobals = 0, Dstats = 0, Dlocks =
504     0, Dall = 1;
505 int Dindextimes = 0, Dindexflags = 0, Dvnodes = 0, Dbuffers = 0, DCallbacks =
506     0, Dallocs = 0, UserLevel = 0;
507 int DdvnextTbl = 0, DdcnextTbl = 0;
508 int Nconns = 0, Drxstats = 0, Drx = 0, Dbkg = 0, Dvlru = 0, Ddlru =
509     0, Dcallout = 0;
510 int Ddnlc = 0;
511 int Dgcpags = 0;
512
513 #if     defined(AFS_SUN5_ENV)
514 #include <string.h>
515 #include <sys/types.h>
516 #include <sys/signal.h>
517 #include <sys/elf.h>
518 #include <libelf.h>
519 #include <sys/elf_M32.h>
520 #include <sys/proc.h>
521 #include <sys/file.h>
522 #define _NLIST_H                /* XXXXXXXXXXXXX */
523 #include <kvm.h>
524 kvm_t *kd;
525 #endif /* defined(AFS_SUN5_ENV) */
526
527 /* Pretty Printers - print real IP addresses and the like if running
528  * in interpret_mode.
529  */
530 int pretty = 1;
531
532 char *
533 PrintIPAddr(int addr)
534 {
535     static char str[32];
536     struct in_addr in_addr;
537
538     if (pretty) {
539         if (addr == 1) {
540             strcpy(str, "local");
541         } else {
542             in_addr.s_addr = addr;
543             (void)strcpy(str, inet_ntoa(in_addr));
544         }
545     } else {
546         (void)sprintf(str, "%x", addr);
547     }
548     return (char *)str;
549 }
550
551 #ifdef AFS_LINUX_ENV
552 /* Find symbols in a live kernel. */
553
554 #define KSYMS "/proc/kallsyms"
555
556 /* symlist_t contains all the kernel symbols. Forcing a 64 byte array is
557  * a bit wasteful, but simple.
558  */
559 #define MAXNAMELEN 64
560 typedef struct symlist {
561     char s_name[MAXNAMELEN];
562 #ifdef AFS_LINUX_64BIT_KERNEL
563     unsigned long s_value;
564 #else
565     int s_value;
566 #endif /* AFS_LINUX_64BIT_KERNEL */
567 } symlist_t;
568
569 #define KSYM_ALLOC_STEP 128
570 #define KSYM_ALLOC_BASE 1024
571 symlist_t *ksyms = NULL;
572 int nksyms = 0;
573 int availksyms = 0;
574
575 #define MAXLINE 1024
576
577 int
578 compare_strings(const void *a, const void *b)
579 {
580     symlist_t *syma = (symlist_t *) a;
581     symlist_t *symb = (symlist_t *) b;
582     return strcmp(syma->s_name, symb->s_name);
583 }
584
585 /* Read in all the kernel symbols */
586 void
587 read_ksyms(void)
588 {
589     FILE *fp;
590     char line[MAXLINE];
591     char *p, *q;
592
593     if (ksyms)
594         return;
595
596     fp = fopen(KSYMS, "r");
597     if (fp == NULL) {
598         printf("Can't open %s, exiting.\n", KSYMS);
599         exit(1);
600     }
601
602     availksyms = KSYM_ALLOC_BASE;
603     ksyms = malloc(availksyms * sizeof(symlist_t));
604     if (!ksyms) {
605         printf("Can't malloc %d elements for symbol list.\n", availksyms);
606         exit(1);
607     }
608
609     /* proc is organized as <addr> <name> <module> */
610     while (fgets(line, MAXLINE, fp)) {
611         if (nksyms >= availksyms) {
612             availksyms += KSYM_ALLOC_STEP;
613             ksyms = realloc(ksyms, availksyms * sizeof(symlist_t));
614             if (!ksyms) {
615                 printf("Failed to realloc %d symbols.\n", availksyms);
616                 exit(1);
617             }
618         }
619 #ifdef AFS_LINUX_64BIT_KERNEL
620         ksyms[nksyms].s_value = (unsigned long)strtoul(line, &p, 16);
621 #else
622         ksyms[nksyms].s_value = (int)strtoul(line, &p, 16);
623 #endif /* AFS_LINUX_64BIT_KERNEL */
624         p++;
625         /* Linux 2.6 /proc/kallsyms has a one-char symbol type
626            between address and name, so step over it and the following
627            blank.
628         */
629         p += 2;
630         q = strchr(p, '\t');
631         if (q)
632             *q = '\0';
633         if (strlen(p) >= MAXLINE) {
634             printf("Symbol '%s' too long, ignoring it.\n", p);
635             continue;
636         }
637         (void)strcpy(ksyms[nksyms].s_name, p);
638         nksyms++;
639     }
640
641     /* Sort them in lexical order */
642     qsort(ksyms, nksyms, sizeof(symlist_t), compare_strings);
643 }
644
645
646
647 /* find_symbol returns 0 if not found, otherwise value for symbol */
648 #ifdef AFS_LINUX_64BIT_KERNEL
649 unsigned long
650 #else
651 int
652 #endif /* AFS_LINUX_64BIT_KERNEL */
653 find_symbol(char *name)
654 {
655     symlist_t *tmp;
656     symlist_t entry;
657
658     if (!ksyms)
659         read_ksyms();
660
661     (void)strcpy(entry.s_name, name);
662     tmp =
663         (symlist_t *) bsearch(&entry, ksyms, nksyms, sizeof(symlist_t),
664                               compare_strings);
665
666     return tmp ? tmp->s_value : 0;
667 }
668
669 /* nlist fills in values in list until a null name is found. */
670 int
671 nlist(void *notused, struct afs_nlist *nlp)
672 {
673     for (; nlp->n_name && *nlp->n_name; nlp++)
674         nlp->n_value = find_symbol(nlp->n_name);
675
676     return 0;
677 }
678
679 #endif /* AFS_LINUX_ENV */
680
681 #if     defined(AFS_SUN5_ENV)
682 #ifdef  _LP64
683 Elf64_Sym *tbl;
684 #else
685 Elf32_Sym *tbl;                 /* symbol tbl */
686 #endif
687 char *tblp;                     /* ptr to symbol tbl */
688 int scnt = 0;
689
690 #ifdef  _LP64
691 Elf64_Sym *
692 symsrch(s)
693      char *s;
694 {
695     Elf64_Sym *sp;
696 #else
697 Elf32_Sym *
698 symsrch(s)
699      char *s;
700 {
701     Elf32_Sym *sp;
702 #endif  /** _LP64 **/
703     char *name;
704     unsigned char type;
705
706     for (sp = tbl; sp < &tbl[scnt]; sp++) {
707 #ifdef _LP64
708         type = ELF64_ST_TYPE(sp->st_info);
709 #else
710         type = ELF32_ST_TYPE(sp->st_info);
711 #endif  /** _LP64 **/
712         if (((type == STB_LOCAL) || (type == STB_GLOBAL)
713              || (type == STB_WEAK))
714             && ((afs_uint32) sp->st_value >= 0x10000)) {
715             name = tblp + sp->st_name;
716             if (!strcmp(name, s))
717                 return (sp);
718         }
719     }
720     return (0);
721 }
722
723 #endif /*defined(AFS_SUN5_ENV) */
724
725 #endif /*!defined(AFS_DARWIN_ENV) && !defined(AFS_FBSD_ENV) */
726
727 #ifndef AFS_KDUMP_LIB
728 static int
729 cmdproc(struct cmd_syndesc *as, void *arock)
730 {
731     afs_int32 code = 0;
732
733 #if !defined(AFS_DARWIN_ENV) && !defined(AFS_FBSD_ENV)
734     if (as->parms[0].items) {   /* -kobj */
735         obj = as->parms[0].items->data;
736     }
737     if (as->parms[1].items) {   /* -kcore */
738         core = as->parms[1].items->data;
739     }
740     if (as->parms[2].items) {   /* -cells */
741         Dcells = 1, Dall = 0;
742     }
743     if (as->parms[3].items) {   /* -users */
744         Dusers = 1, Dall = 0;
745     }
746     if (as->parms[4].items) {   /* -servers */
747         Dservers = 1, Dall = 0;
748     }
749     if (as->parms[5].items) {   /* -conns */
750         Dconns = 1, Dall = 0;
751     }
752     if (as->parms[6].items) {   /* -volumes */
753         Dvols = 1, Dall = 0;
754     }
755     if (as->parms[7].items) {   /* -dvolumes */
756         Ddvols = 1, Dall = 0;
757     }
758     if (as->parms[8].items) {   /* -vstats */
759         Dvstats = 1, Dall = 0;
760     }
761     if (as->parms[9].items) {   /* -dstats */
762         Ddstats = 1, Dall = 0;
763     }
764     if (as->parms[10].items) {  /* -nfstats */
765         Dnfs = 1, Dall = 0;
766     }
767     if (as->parms[11].items) {  /* -globals */
768         Dglobals = 1, Dall = 0;
769     }
770     if (as->parms[12].items) {  /* -stats */
771         Dstats = 1, Dall = 0;
772     }
773     if (as->parms[13].items) {  /* -locks */
774         Dlocks = 1, Dall = 0;
775     }
776     if (as->parms[14].items) {  /* -mem */
777         mem = 1;
778     }
779     if (as->parms[15].items) {  /* -rxstats */
780         Drxstats = 1, Dall = 0;
781     }
782     if (as->parms[16].items) {  /* -rx */
783         Drx = 1, Dall = 0;
784     }
785     if (as->parms[17].items) {  /* -timestable */
786         Dindextimes = 1, Dall = 0;
787     }
788     if (as->parms[18].items) {  /* -flagstable */
789         Dindexflags = 1, Dall = 0;
790     }
791     if (as->parms[19].items) {  /* -cbhash */
792         DCallbacks = 1, Dall = 0;
793     }
794     if (as->parms[20].items) {  /* -vnodes */
795         Dvnodes = 1, Dall = 0;
796     }
797     if (as->parms[21].items) {  /* -buffers */
798         Dbuffers = 1, Dall = 0;
799     }
800     if (as->parms[22].items) {  /* -allocedmem */
801         Dallocs = 1, Dall = 0;
802     }
803     if (as->parms[23].items) {  /* -user */
804         UserLevel = 1;
805     }
806     if (as->parms[24].items) {  /* -bkg */
807         Dbkg = 1, Dall = 0;
808     }
809     if (as->parms[25].items) {  /* -vlru */
810         Dvlru = 1, Dall = 0;
811     }
812     if (as->parms[26].items) {  /* -callout */
813         Dcallout = 1, Dall = 0;
814     }
815     if (as->parms[27].items) {  /* -dnlc */
816         Ddnlc = 1, Dall = 0;
817     }
818     if (as->parms[28].items) {  /* -dlru */
819         Ddlru = 1, Dall = 0;
820     }
821
822     if (as->parms[29].items) {  /* -raw */
823         pretty = 0;
824     }
825
826     if (as->parms[30].items) {  /* -gcpags */
827         Dgcpags = 1, Dall = 0;
828     }
829
830     if (as->parms[31].items) {  /* -dhash */
831         DdvnextTbl = 1, DdcnextTbl = 1, Dall = 0;
832     }
833 #endif
834
835     code = kdump();
836     return code;
837 }
838
839 #include "AFS_component_version_number.c"
840
841 int
842 main(int argc, char **argv)
843 {
844     struct cmd_syndesc *ts;
845     afs_int32 code;
846
847 #ifdef  AFS_AIX32_ENV
848     struct sigaction nsa;
849
850     sigemptyset(&nsa.sa_mask);
851     nsa.sa_handler = SIG_DFL;
852     nsa.sa_flags = SA_FULLDUMP;
853     sigaction(SIGSEGV, &nsa, NULL);
854 #endif
855
856     ts = cmd_CreateSyntax(NULL, cmdproc, NULL, 0,
857                           "Read internal cache manager structs");
858     cmd_AddParm(ts, "-kobj", CMD_SINGLE, CMD_OPTIONAL,
859                 "kernel object (default /vmunix)");
860     cmd_AddParm(ts, "-kcore", CMD_SINGLE, CMD_OPTIONAL,
861                 "kernel core image (default /dev/kmem)");
862     cmd_AddParm(ts, "-cells", CMD_FLAG, CMD_OPTIONAL, "cell state");
863     cmd_AddParm(ts, "-users", CMD_FLAG, CMD_OPTIONAL, "users state");
864     cmd_AddParm(ts, "-servers", CMD_FLAG, CMD_OPTIONAL, "servers state");
865     cmd_AddParm(ts, "-conns", CMD_FLAG, CMD_OPTIONAL, "conns state");
866     cmd_AddParm(ts, "-volumes", CMD_FLAG, CMD_OPTIONAL,
867                 "incore volume state");
868     cmd_AddParm(ts, "-dvolumes", CMD_FLAG, CMD_OPTIONAL, "disk volume state");
869     cmd_AddParm(ts, "-vstats", CMD_FLAG, CMD_OPTIONAL, "stat file state");
870     cmd_AddParm(ts, "-dstats", CMD_FLAG, CMD_OPTIONAL, "file data state");
871     cmd_AddParm(ts, "-nfstats", CMD_FLAG, CMD_OPTIONAL,
872                 "nfs translator state");
873     cmd_AddParm(ts, "-globals", CMD_FLAG, CMD_OPTIONAL,
874                 "general global state");
875     cmd_AddParm(ts, "-stats", CMD_FLAG, CMD_OPTIONAL,
876                 "general cm performance state");
877     cmd_AddParm(ts, "-locks", CMD_FLAG, CMD_OPTIONAL,
878                 "global cm related locks state");
879     cmd_AddParm(ts, "-mem", CMD_FLAG, CMD_OPTIONAL,
880                 "core represents the physical mem (i.e. /dev/mem) and not virtual");
881     cmd_AddParm(ts, "-rxstats", CMD_FLAG, CMD_OPTIONAL,
882                 "general rx statistics");
883     cmd_AddParm(ts, "-rx", CMD_FLAG, CMD_OPTIONAL, "all info about rx");
884     cmd_AddParm(ts, "-timestable", CMD_FLAG, CMD_OPTIONAL,
885                 "dcache LRU info table");
886     cmd_AddParm(ts, "-flagstable", CMD_FLAG, CMD_OPTIONAL,
887                 "dcache flags info table");
888     cmd_AddParm(ts, "-cbhash", CMD_FLAG, CMD_OPTIONAL,
889                 "vcache hashed by cbExpires");
890     cmd_AddParm(ts, "-vnodes", CMD_FLAG, CMD_OPTIONAL, "afs vnodes");
891     cmd_AddParm(ts, "-buffers", CMD_FLAG, CMD_OPTIONAL,
892                 "afs dir buffer cache");
893     cmd_AddParm(ts, "-allocedmem", CMD_FLAG, CMD_OPTIONAL,
894                 "allocated memory");
895     cmd_AddParm(ts, "-user", CMD_FLAG, CMD_OPTIONAL,
896                 "core is from a user-level program");
897     cmd_AddParm(ts, "-bkg", CMD_FLAG, CMD_OPTIONAL, "background daemon info");
898     cmd_AddParm(ts, "-vlru", CMD_FLAG, CMD_OPTIONAL, "vcache lru list");
899     cmd_AddParm(ts, "-callout", CMD_FLAG, CMD_OPTIONAL,
900                 "callout info (aix only)");
901     cmd_AddParm(ts, "-dnlc", CMD_FLAG, CMD_OPTIONAL,
902                 "DNLC table,freelist,trace");
903     cmd_AddParm(ts, "-dlru", CMD_FLAG, CMD_OPTIONAL, "dcache lru list");
904
905
906     cmd_AddParm(ts, "-raw", CMD_FLAG, CMD_OPTIONAL, "show raw values");
907     cmd_AddParm(ts, "-gcpags", CMD_FLAG, CMD_OPTIONAL,
908                 "PAG garbage collection info");
909     cmd_AddParm(ts, "-dhash", CMD_FLAG, CMD_OPTIONAL,
910                 "show dcache hash chains");
911
912     code = cmd_Dispatch(argc, argv);
913     return code;
914 }
915 #endif /* !AFS_KDUMP_LIB */
916
917 #ifdef  AFS_AIX_ENV
918 #ifndef AFS_KDUMP_LIB
919 int
920 Knlist(struct afs_nlist *sp, int cnt, int size)
921 {
922     int code;
923
924     if (UserLevel)
925         code = nlist(obj, sp);
926     else
927         code = knlist(sp, cnt, size);
928     return code;
929 }
930 #endif /*AFS_KDUMP_LIB */
931 #endif
932
933 #if !defined(AFS_DARWIN_ENV) && !defined(AFS_FBSD_ENV)
934 int
935 findsym(char *sname, off_t * offset)
936 {
937 #if     defined(AFS_SUN5_ENV)
938 #ifdef  _LP64
939     Elf64_Sym *ss_ans;
940 #else
941     Elf32_Sym *ss_ans;
942 #endif
943     ss_ans = symsrch(sname);
944     if (!ss_ans) {
945         printf("(WARNING) Couldn't find %s in %s. Proceeding..\n", sname,
946                obj);
947         *offset = 0;
948         return 0;
949     }
950     *offset = ss_ans->st_value;
951     return 1;
952 #else /* defined(AFS_SUN5_ENV) */
953 #if     defined(AFS_AIX_ENV)
954     if (!UserLevel) {
955         struct afs_nlist nl;
956         nl.n_name = sname;
957         if (Knlist(&nl, 1, sizeof nl) == -1) {
958             printf("(WARNING) knlist: couldn't find %s. Proceeding...",
959                    sname);
960             *offset = 0;
961             return 0;
962         }
963         *offset = nl.n_value;
964         return 1;
965     }
966 #endif /* defined(AFS_AIX_ENV) */
967     {
968         struct afs_nlist request[2];
969
970         memset(request, 0, sizeof request);
971         request[0].n_name = sname;
972         if (AFSNLIST(obj, request) < 0) {
973             fprintf(stderr, "nlist(%s, %s) failure: %d (%s)\n", obj, sname,
974                     errno, strerror(errno));
975             exit(1);
976         }
977         *offset = request[0].n_value;
978         if (!request[0].n_value) {
979             printf("(WARNING) Couldn't find %s in %s. Proceeding..\n", sname,
980                    obj);
981             return 0;
982         }
983         return 1;
984     }
985 #endif /* defined(AFS_SUN5_ENV) */
986 }
987 #endif
988
989 #define CBHTSIZE 128
990
991 int
992 kdump(void)
993 {
994 #if defined(AFS_DARWIN_ENV) || defined(AFS_FBSD_ENV)
995     printf("Kdump not supported\n");
996 #else
997     int cell, cnt, cnt1;
998 #ifndef AFS_KDUMP_LIB
999
1000     kmem = opencore(core);
1001
1002 #endif /* AFS_KDUMP_LIB */
1003
1004 #ifdef KDUMP_RX_LOCK
1005     /* Test to see if kernel is using RX_ENABLE_LOCKS in rx structs. */
1006 #ifdef AFS_SGI53_ENV
1007 #ifdef AFS_SGI64_ENV
1008     use_rx_lock = 1;            /* Always using fine gain locking. */
1009 #else
1010     use_rx_lock = (sysmp(MP_NPROCS) > 1) ? 1 : 0;
1011 #endif
1012 #endif /* AFS_SGI53_ENV */
1013 #endif /* KDUMP_RX_LOCK */
1014
1015     if (Dcells || Dall) {
1016         print_cells(1);         /* Handle the afs_cells structures */
1017         print_cellaliases(1);
1018         print_cellnames(1);
1019     }
1020
1021     if (Dusers || Dall) {
1022         print_users(1);         /* Handle the afs_users structs */
1023     }
1024
1025     if (Dservers || Dall) {
1026         print_servers(1);       /* Handle the afs_servers structs */
1027     }
1028
1029     if (Dconns) {
1030         print_Conns(1);         /* Handle the afs_servers structs */
1031     }
1032
1033     if (Dvols || Dall) {
1034         print_volumes(1);       /* Handle the afs_volumes structs */
1035     }
1036
1037     if (Ddvols || Dall) {
1038         printf
1039             ("\n\nIGNORE reading the 'volumeinfo' file for now (NOT IMPORTANT)!\n");
1040     }
1041
1042     if (DCallbacks || Dall) {
1043         print_cbHash(1);        /* Handle the cbHashT table of queued vcaches */
1044     }
1045
1046     if (Dvstats || Dall || Dvnodes) {
1047         print_vcaches(1);       /* Handle the afs_vcaches structs */
1048     }
1049
1050     if (Ddstats || Dall) {
1051         print_dcaches(1);
1052     }
1053
1054     if (Dindextimes || Dall) {
1055         print_DindexTimes(1);
1056     }
1057
1058     if (Dindexflags || Dall) {
1059         print_DindexFlags(1);
1060     }
1061
1062     if (DdvnextTbl || Dall) {
1063         print_DdvnextTbl(1);
1064     }
1065
1066     if (DdcnextTbl || Dall) {
1067         print_DdcnextTbl(1);
1068     }
1069
1070     if (Dbuffers || Dall) {
1071         print_buffers(1);
1072     }
1073
1074     if (Dnfs || Dall) {
1075         print_nfss(1);
1076     }
1077
1078     if (Dstats || Dall) {
1079         off_t symoff;
1080         struct afs_CMStats afs_cmstats;
1081         struct afs_stats_CMPerf afs_cmperfstats;
1082
1083         printf("\n\nPrinting count references to cm-related functions..\n\n");
1084         findsym("afs_cmstats", &symoff);
1085         kread(kmem, symoff, (char *)&afs_cmstats, sizeof afs_cmstats);
1086         print_cmstats(&afs_cmstats);
1087         printf("\n\nPrinting some cm struct performance stats..\n\n");
1088         findsym("afs_stats_cmperf", &symoff);
1089         kread(kmem, symoff, (char *)&afs_cmperfstats, sizeof afs_cmperfstats);
1090         print_cmperfstats(&afs_cmperfstats);
1091
1092     }
1093     if (Dlocks || Dall) {
1094         print_global_locks(kmem);
1095     }
1096     if (Dglobals || Dall) {
1097         printf("\n\nPrinting Misc afs globals...\n");
1098         print_global_afs_resource(kmem);
1099         print_global_afs_cache(kmem);
1100     }
1101     if (Dbkg || Dall) {
1102         print_bkg(kmem);
1103     }
1104     if (Dvlru || Dall) {
1105         print_vlru(kmem);
1106     }
1107     if (Ddlru || Dall) {
1108         print_dlru(kmem);
1109     }
1110     if (Drxstats || Dall) {
1111         print_rxstats(kmem);
1112     }
1113     if (Drx || Dall) {
1114         print_rx(kmem);
1115     }
1116 #ifndef AFS_KDUMP_LIB
1117     if (Dallocs || Dall) {
1118         print_allocs(1);
1119     }
1120 #endif
1121     if (Dcallout || Dall) {
1122         print_callout(kmem);
1123     }
1124     if (Ddnlc || Dall) {
1125         print_dnlc(kmem);
1126     }
1127     if (Dgcpags || Dall) {
1128         print_gcpags(1);
1129     }
1130 #endif
1131     return 0;
1132 }
1133
1134 #if !defined(AFS_DARWIN_ENV) && !defined(AFS_FBSD_ENV)
1135 int Sum_cellnames = 0, Sum_userstp = 0, Sum_volnames = 0, Sum_exps =
1136     0, Sum_nfssysnames = 0;
1137 int Sum_vcachemvids = 0, Sum_vcachelinkData = 0, Sum_vcacheacc =
1138     0, Sum_vcachelocks = 0;
1139 int Sum_cellaliases = 0, Sum_cellname_names = 0;
1140
1141 int
1142 print_cells(int pnt)
1143 {
1144     off_t symoff;
1145     struct cell *cells, cle, *clentry = &cle, *clep;
1146     long j = 0, cell;
1147     struct afs_q CellLRU, lru, *vu = &lru, *tq, *uq;
1148     u_long lru_addr;
1149
1150     if (pnt)
1151         printf("\n\nPrinting Cells' LRU list...\n");
1152     findsym("CellLRU", &symoff);
1153     kread(kmem, symoff, (char *)&CellLRU, sizeof CellLRU);
1154     lru_addr = (u_long) symoff;
1155     for (tq = CellLRU.next; (u_long) tq != lru_addr; tq = uq) {
1156         clep = QTOC(tq);
1157         kread(kmem, (off_t) tq, (char *)vu, sizeof CellLRU);
1158         uq = vu->next;
1159         kread(kmem, (off_t) clep, (char *)clentry, sizeof *clentry);
1160         print_cell(kmem, clentry, clep, pnt);
1161         j++;
1162     }
1163     if (pnt)
1164         printf("... found %d 'afs_cells' entries\n", j);
1165
1166     return j;
1167 }
1168
1169 int
1170 print_cellaliases(int pnt)
1171 {
1172     off_t symoff;
1173     struct cell_alias *ca, cae;
1174     long j = 0;
1175
1176     if (pnt)
1177         printf("\n\nPrinting cell_alias list...\n");
1178     findsym("afs_cellalias_head", &symoff);
1179     kread(kmem, symoff, (char *)&ca, sizeof ca);
1180     while (ca) {
1181         char alias[100], cell[100];
1182
1183         kread(kmem, (off_t) ca, (char *)&cae, sizeof cae);
1184         kread(kmem, (off_t) cae.alias, alias, (KDUMP_SIZE_T) 40);
1185         alias[40] = '\0';
1186         Sum_cellaliases += strlen(alias) + 1;
1187         kread(kmem, (off_t) cae.cell, cell, (KDUMP_SIZE_T) 40);
1188         cell[40] = '\0';
1189         Sum_cellaliases += strlen(cell) + 1;
1190         if (pnt)
1191             printf("%x: alias=%s cell=%s index=%d\n", ca, alias, cell,
1192                    cae.index);
1193         ca = cae.next;
1194         j++;
1195     }
1196     if (pnt)
1197         printf("... found %d 'cell_alias' entries\n", j);
1198
1199     return j;
1200 }
1201
1202 int
1203 print_cellnames(int pnt)
1204 {
1205     off_t symoff;
1206     struct cell_name *cn, cne;
1207     long j = 0;
1208
1209     if (pnt)
1210         printf("\n\nPrinting cell_name list...\n");
1211     findsym("afs_cellname_head", &symoff);
1212     kread(kmem, symoff, (char *)&cn, sizeof cn);
1213     while (cn) {
1214         char cellname[100];
1215
1216         kread(kmem, (off_t) cn, (char *)&cne, sizeof cne);
1217         kread(kmem, (off_t) cne.cellname, cellname, (KDUMP_SIZE_T) 40);
1218         cellname[40] = '\0';
1219         Sum_cellname_names += strlen(cellname) + 1;
1220         if (pnt)
1221             printf("%x: cellnum=%d cellname=%s used=%d\n", cn, cne.cellnum,
1222                    cellname, cne.used);
1223         cn = cne.next;
1224         j++;
1225     }
1226     if (pnt)
1227         printf("... found %d 'cell_name' entries\n", j);
1228
1229     return j;
1230 }
1231
1232 int
1233 print_users(int pnt)
1234 {
1235     off_t symoff;
1236     struct unixuser *afs_users[NUSERS], ue, *uentry = &ue, *uep;
1237     int i, j;
1238
1239     if (pnt)
1240         printf("\n\nPrinting 'afs_users' structures...\n");
1241     findsym("afs_users", &symoff);
1242     kread(kmem, symoff, (char *)afs_users, sizeof afs_users);
1243     for (i = 0, j = 0; i < NUSERS; i++) {
1244         for (uep = afs_users[i]; uep; uep = uentry->next, j++) {
1245             kread(kmem, (off_t) uep, (char *)uentry, sizeof *uentry);
1246             print_unixuser(kmem, uentry, uep, pnt);
1247         }
1248     }
1249     if (pnt)
1250         printf("... found %d 'afs_users' entries\n", j);
1251     return j;
1252 }
1253
1254 struct server **serversFound = NULL;
1255 afs_int32 NserversFound = 0;
1256 #define SF_ALLOCATION_STEP 500
1257
1258 int
1259 add_found_server(struct server *sep)
1260 {
1261     static afs_int32 NserversAllocated = 0;
1262     static afs_int32 failed = 0;
1263
1264     if (failed)
1265         return -1;
1266
1267     if (NserversFound >= NserversAllocated) {
1268         NserversAllocated += SF_ALLOCATION_STEP;
1269         if (!serversFound) {
1270             serversFound = malloc(NserversAllocated *
1271                                   sizeof(struct server *));
1272         } else {
1273             serversFound = realloc(serversFound,
1274                                    NserversAllocated *
1275                                    sizeof(struct server *));
1276         }
1277         if (!serversFound) {
1278             printf("Can't allocate %lu bytes for list of found servers.\n",
1279                    NserversAllocated * sizeof(struct server *));
1280             failed = 1;
1281             NserversFound = 0;
1282             return -1;
1283         }
1284     }
1285     serversFound[NserversFound++] = sep;
1286     return 0;
1287 }
1288
1289 int
1290 find_server(struct server *sep)
1291 {
1292     int i;
1293
1294     for (i = 0; i < NserversFound; i++) {
1295         if (sep == serversFound[i])
1296             return 1;
1297     }
1298     return 0;
1299 }
1300
1301 int
1302 print_servers(int pnt)
1303 {
1304     off_t symoff;
1305     struct server *afs_servers[NSERVERS], se, *sentry = &se, *sep;
1306     struct srvAddr *afs_srvAddrs[NSERVERS], sa, *sap;
1307     afs_int32 i, nServers, nSrvAddrs, nSrvAddrStructs;
1308     afs_int32 afs_totalServers, afs_totalSrvAddrs;
1309     int failed = 0;
1310     int chainCount[NSERVERS];
1311
1312     if (pnt) {
1313         memset(chainCount, 0, sizeof(chainCount));
1314         printf("\n\nPrinting 'afs_servers' structures...\n");
1315     }
1316     findsym("afs_servers", &symoff);
1317     kread(kmem, symoff, (char *)afs_servers, NSERVERS * sizeof(long));
1318     for (i = 0, nServers = 0; i < NSERVERS; i++) {
1319         if (pnt)
1320             printf(" --- Chain %d ---\n", i);
1321         for (sep = afs_servers[i]; sep; sep = sentry->next, nServers++) {
1322             kread(kmem, (off_t) sep, (char *)sentry, sizeof *sentry);
1323             if (pnt && !failed) {
1324                 if (add_found_server(sep) < 0)
1325                     failed = 1;
1326             }
1327             if (pnt)
1328                 chainCount[i]++;
1329             if (Dconns || Dall || !pnt)
1330                 print_server(kmem, sentry, sep, 1, pnt);
1331             else
1332                 print_server(kmem, sentry, sep, 0, pnt);
1333         }
1334     }
1335     if (pnt) {
1336         if (Dconns || Dall)
1337             printf("... found %d 'afs_servers' entries (total conns = %d)\n",
1338                    nServers, Nconns);
1339         else
1340             printf("... found %d 'afs_servers' entries\n", nServers);
1341         printf("Chain lengths:\n");
1342         for (i = 0; i < NSERVERS; i++) {
1343             printf("%2d: %5d\n", i, chainCount[i]);
1344         }
1345     }
1346     Dconns = 0;
1347
1348
1349     /* Verify against afs_totalServers. */
1350     if (pnt) {
1351         memset(chainCount, 0, sizeof(chainCount));
1352         if (findsym("afs_totalServers", &symoff)) {
1353             kread(kmem, symoff, (char *)&afs_totalServers, sizeof(afs_int32));
1354             if (afs_totalServers != nServers) {
1355                 printf
1356                     ("ERROR: afs_totalServers = %d, differs from # of servers in hash table.\n",
1357                      afs_totalServers);
1358             } else {
1359                 printf("afs_totalServers = %d, matches hash chain count.\n",
1360                        afs_totalServers);
1361             }
1362         }
1363
1364         printf("\n\nPrinting 'afs_srvAddr' structures...\n");
1365         if (findsym("afs_srvAddrs", &symoff)) {
1366             kread(kmem, symoff, (char *)afs_srvAddrs,
1367                   NSERVERS * sizeof(long));
1368             nSrvAddrStructs = 0;
1369             for (i = 0, nSrvAddrs = 0; i < NSERVERS; i++) {
1370                 printf(" --- Chain %d ---\n", i);
1371                 for (sap = afs_srvAddrs[i]; sap; sap = sa.next_bkt) {
1372                     kread(kmem, (off_t) sap, (char *)&sa, sizeof(sa));
1373                     printf
1374                         ("%lx: sa_ip=%s, sa_port=%d, sa_iprank=%d, sa_flags=%x, conns=%lx, server=%lx, nexth=%lx\n",
1375                          sap, PrintIPAddr(sa.sa_ip), sa.sa_portal,
1376                          sa.sa_iprank, sa.sa_flags, sa.conns, sa.server,
1377                          sa.next_bkt);
1378                     if (sap != (struct srvAddr *)sa.server) {
1379                         /* only count ones not in a server struct. */
1380                         nSrvAddrStructs++;
1381                     }
1382                     nSrvAddrs++;
1383                     chainCount[i]++;
1384                     if (!failed) {
1385                         if (!find_server(sa.server)) {
1386                             kread(kmem, (off_t) sa.server, (char *)sentry,
1387                                   sizeof *sentry);
1388                             printf
1389                                 ("ERROR: Server missing from hash chain: server=%lx, server->next=%lx\n",
1390                                  sa.server, sentry->next);
1391                             print_server(kmem, sentry, sa.server, 1, pnt);
1392                             printf
1393                                 ("----------------------------------------------------\n");
1394                         }
1395                     }
1396
1397                 }
1398             }
1399             printf
1400                 ("... found %d 'afs_srvAddr' entries, %d alloc'd (not in server struct)\n",
1401                  nSrvAddrs, nSrvAddrStructs);
1402             printf("Chain lengths:\n");
1403             for (i = 0; i < NSERVERS; i++) {
1404                 printf("%2d: %5d\n", i, chainCount[i]);
1405             }
1406             if (findsym("afs_totalSrvAddrs", &symoff)) {
1407                 kread(kmem, symoff, (char *)&afs_totalSrvAddrs,
1408                       sizeof(afs_int32));
1409                 if (afs_totalSrvAddrs != nSrvAddrStructs) {
1410                     printf
1411                         ("ERROR: afs_totalSrvAddrs = %d, differs from number of alloc'd srvAddrs in hash table.\n",
1412                          afs_totalSrvAddrs);
1413                 } else {
1414                     printf
1415                         ("afs_totalSrvAddrs = %d, matches alloc'd srvAddrs in hash chain count.\n",
1416                          afs_totalSrvAddrs);
1417                 }
1418             }
1419         }
1420     }
1421     return nServers;
1422 }
1423
1424
1425 void
1426 print_Conns(int pnt)
1427 {
1428     off_t symoff;
1429     struct server *afs_servers[NSERVERS], se, *sentry = &se, *sep;
1430     afs_int32 i, j;
1431
1432     if (pnt)
1433         printf("\n\nPrinting all 'afs_conns' to  the servers...\n");
1434     findsym("afs_servers", &symoff);
1435     kread(kmem, symoff, (char *)afs_servers, sizeof afs_servers);
1436     for (i = 0, j = 0; i < NSERVERS; i++) {
1437         for (sep = afs_servers[i]; sep; sep = sentry->next, j++) {
1438             kread(kmem, (off_t) sep, (char *)sentry, sizeof *sentry);
1439             print_server(kmem, sentry, sep, 2, pnt);
1440         }
1441     }
1442     if (pnt)
1443         printf("... found %d 'afs_conns' entries\n", Nconns);
1444 }
1445
1446
1447 int
1448 print_volumes(int pnt)
1449 {
1450     off_t symoff;
1451     struct volume *afs_volumes[NVOLS], ve, *ventry = &ve, *vep;
1452     afs_int32 i, j;
1453
1454     if (pnt)
1455         printf("\n\nPrinting 'afs_volumes' structures...\n");
1456     findsym("afs_volumes", &symoff);
1457     kread(kmem, symoff, (char *)afs_volumes, NVOLS * sizeof(long));
1458     for (i = 0, j = 0; i < NVOLS; i++) {
1459         for (vep = afs_volumes[i]; vep; vep = ventry->next, j++) {
1460             kread(kmem, (off_t) vep, (char *)ventry, sizeof *ventry);
1461             print_volume(kmem, ventry, vep, pnt);
1462         }
1463     }
1464     if (pnt)
1465         printf("... found %d 'afs_volumes' entries\n", j);
1466     return (j);
1467 }
1468
1469 void
1470 print_cbHash(int pnt)
1471 {
1472     off_t symoff;
1473     struct afs_q cbHashT[CBHTSIZE];
1474     afs_int32 i, j;
1475
1476     if (pnt)
1477         printf("\n\nPrinting 'cbHashT' table...\n");
1478     findsym("cbHashT", &symoff);
1479     kread(kmem, symoff, (char *)cbHashT, sizeof cbHashT);
1480     for (i = 0; i < CBHTSIZE; i++) {
1481         if (pnt)
1482             printf("%lx: %x %x\n", (long)symoff + 8 * i, cbHashT[i].prev,
1483                    cbHashT[i].next);
1484     }
1485     if (pnt)
1486         printf("... that should be %d callback hash entries\n", i);
1487 }
1488
1489 int
1490 print_vcaches(int pnt)
1491 {
1492     off_t symoff;
1493     struct vcache *afs_vhashTable[VCSIZE], Ve, *Ventry = &Ve, *Vep;
1494     afs_int32 i, j;
1495
1496     if (pnt)
1497         printf("\n\nPrinting afs_vcaches structures...\n");
1498     if (pnt)
1499         printf("print_vcaches: sizeof(struct vcache) = %ld\n",
1500                (long)sizeof(struct vcache));
1501     findsym("afs_vhashT", &symoff);
1502     kread(kmem, symoff, (char *)afs_vhashTable, sizeof afs_vhashTable);
1503     for (i = 0, j = 0; i < VCSIZE; i++) {
1504         if (pnt)
1505             printf("Printing hash chain %d...\n", i);
1506         for (Vep = afs_vhashTable[i]; Vep; Vep = Ventry->hnext, j++) {
1507             kread(kmem, (off_t) Vep, (char *)Ventry, sizeof *Ventry);
1508             if (Dvstats || Dall || !pnt)
1509                 print_vcache(kmem, Ventry, Vep, pnt);
1510             if (Dvnodes || Dall)
1511                 print_vnode(kmem, Ventry, Vep, pnt);
1512         }
1513     }
1514     if (pnt)
1515         printf("... found %d 'afs_vcaches' entries\n", j);
1516     return j;
1517 }
1518
1519 int
1520 print_dcaches(int pnt)
1521 {
1522     off_t symoff;
1523     long table, *ptr;
1524     struct dcache dc, *dcp = &dc, *dp;
1525     afs_int32 i, j, count;
1526     struct afs_q dlru;
1527
1528     /* Handle the afs_dcaches structs */
1529     if (pnt)
1530         printf("\n\nPrinting afs_dcache related structures...\n");
1531     findsym("afs_cacheFiles", &symoff);
1532     kread(kmem, symoff, (char *)&count, sizeof count);
1533     findsym("afs_indexTable", &symoff);
1534     kread(kmem, symoff, (char *)&table, sizeof(long));
1535     ptr = malloc(count * sizeof(long));
1536     kread(kmem, table, (char *)ptr, count * sizeof(long));
1537     for (i = 0, j = 0; i < count; i++) {
1538         if (dp = (struct dcache *)ptr[i]) {
1539             if (pnt)
1540                 printf("afs_indexTable[%d] %x: ", i, dp);
1541             kread(kmem, (off_t) dp, (char *)dcp, sizeof *dcp);
1542             print_dcache(kmem, dcp, dp, pnt);
1543             j++;
1544         }
1545     }
1546     if (pnt)
1547         printf("... found %d 'dcache' entries\n", j);
1548     findsym("afs_DLRU", &symoff);
1549     kread(kmem, symoff, (char *)&dlru, sizeof(struct afs_q));
1550     if (pnt)
1551         printf("DLRU next=0x%x, prev=0x%x\n", dlru.next, dlru.prev);
1552     free(ptr);
1553
1554     return j;
1555 }
1556
1557
1558 void
1559 print_DindexTimes(int pnt)
1560 {
1561     off_t symoff;
1562     long table;
1563     afs_hyper_t *ptr;
1564     afs_int32 temp, *indexTime = &temp;
1565     afs_int32 i, j, count;
1566
1567     /* Handle the afs_indexTimes array */
1568     if (pnt)
1569         printf("\n\nPrinting afs_indexTimes[]...\n");
1570     findsym("afs_cacheFiles", &symoff);
1571     kread(kmem, symoff, (char *)&count, sizeof count);
1572     findsym("afs_indexTimes", &symoff);
1573     kread(kmem, symoff, (char *)&table, sizeof(long));
1574     ptr = malloc(count * sizeof(afs_hyper_t));
1575     kread(kmem, table, (char *)ptr, count * sizeof(afs_hyper_t));
1576     for (i = 0, j = 0; i < count; i++) {
1577         if (pnt)
1578             printf("afs_indexTimes[%d]\t%10d.%d\n", i, ptr[i].high,
1579                    ptr[i].low);
1580 /*      if (dp = (struct dcache *)ptr[i]) {
1581         printf("afs_indexTable[%d] %lx: ", i, dp);
1582         kread(kmem, (off_t) dp, (char *)dcp, sizeof *dcp);
1583         print_dcache(kmem, dcp, dp);
1584         }
1585 */
1586         j++;
1587     }
1588     if (pnt)
1589         printf("afs_indexTimes has %d entries\n", j);
1590     free(ptr);
1591 }
1592
1593
1594 void
1595 print_DdvnextTbl(int pnt)
1596 {
1597     off_t symoff;
1598     long table;
1599     afs_int32 *ptr;
1600     afs_int32 temp, *indexTime = &temp;
1601     afs_int32 i, j, count;
1602
1603     /* Handle the afs_dvnextTbl arrays */
1604     if (pnt)
1605         printf("\n\nPrinting afs_dvnextTbl[]...\n");
1606     findsym("afs_cacheFiles", &symoff);
1607     kread(kmem, symoff, (char *)&count, sizeof count);
1608     findsym("afs_dvnextTbl", &symoff);
1609     kread(kmem, symoff, (char *)&table, sizeof(long));
1610     ptr = malloc(count * sizeof(afs_int32));
1611     kread(kmem, table, (char *)ptr, count * sizeof(afs_int32));
1612     for (i = 0, j = 0; i < count; i++) {
1613         if (pnt)
1614             printf("afs_dvnextTbl[%d]\t%d\n", i, ptr[i]);
1615         j++;
1616     }
1617     if (pnt)
1618         printf("afs_dvnextTbl has %d entries\n", j);
1619     free(ptr);
1620 }
1621
1622
1623 void
1624 print_DdcnextTbl(int pnt)
1625 {
1626     off_t symoff;
1627     long table;
1628     afs_int32 *ptr;
1629     afs_int32 temp, *indexTime = &temp;
1630     afs_int32 i, j, count;
1631
1632     /* Handle the afs_dcnextTbl arrays */
1633     if (pnt)
1634         printf("\n\nPrinting afs_dcnextTbl[]...\n");
1635     findsym("afs_cacheFiles", &symoff);
1636     kread(kmem, symoff, (char *)&count, sizeof count);
1637     findsym("afs_dcnextTbl", &symoff);
1638     kread(kmem, symoff, (char *)&table, sizeof(long));
1639     ptr = malloc(count * sizeof(afs_int32));
1640     kread(kmem, table, (char *)ptr, count * sizeof(afs_int32));
1641     for (i = 0, j = 0; i < count; i++) {
1642         if (pnt)
1643             printf("afs_dcnextTbl[%d]\t%d\n", i, ptr[i]);
1644         j++;
1645     }
1646     if (pnt)
1647         printf("afs_dcnextTbl has %d entries\n", j);
1648     free(ptr);
1649 }
1650
1651
1652 void
1653 print_DindexFlags(int pnt)
1654 {
1655     off_t symoff;
1656     afs_int32 count;
1657     long table;
1658     unsigned char *flags;
1659     afs_int32 temp, *indexTime = &temp;
1660     afs_int32 i, j;
1661
1662     /* Handle the afs_indexFlags array */
1663     if (pnt)
1664         printf("\n\nPrinting afs_indexFlags[]...\n");
1665     findsym("afs_cacheFiles", &symoff);
1666     kread(kmem, symoff, (char *)&count, sizeof count);
1667     findsym("afs_indexFlags", &symoff);
1668     kread(kmem, symoff, (char *)&table, sizeof(long));
1669     flags = malloc(count * sizeof(char));
1670     kread(kmem, table, flags, count * sizeof(char));
1671     for (i = 0, j = 0; i < count; i++) {
1672         if (pnt)
1673             printf("afs_indexFlags[%d]\t%4u\n", i, flags[i]);
1674         j++;
1675     }
1676     if (pnt)
1677         printf("afs_indexFlags has %d entries\n", j);
1678     free(flags);
1679 }
1680
1681
1682 void
1683 print_buffers(int pnt)
1684 {
1685     off_t symoff;
1686     long table;
1687     afs_int32 count;
1688     unsigned char *buffers;
1689     struct buffer *bp;
1690     afs_int32 i, j;
1691
1692     if (pnt)
1693         printf("\n\nPrinting 'buffers' table...\n");
1694     findsym("Buffers", &symoff);
1695     kread(kmem, symoff, (char *)&table, sizeof(long));
1696     findsym("nbuffers", &symoff);
1697     kread(kmem, symoff, (char *)&count, sizeof(int));
1698     buffers = malloc(count * sizeof(struct buffer));
1699     kread(kmem, table, buffers, count * sizeof(struct buffer));
1700     bp = (struct buffer *)buffers;
1701     for (i = 0, j = 0; i < count; i++, bp++) {
1702 #ifdef AFS_SGI62_ENV
1703         if (pnt)
1704             printf
1705                 ("Buffer #%d:\tfid=%llu page=%d, accTime=%d,\n\tHash=%x, data=%x, lockers=%x, dirty=%d, hashI=%d\n",
1706                  i, bp->fid[0], bp->page, bp->accesstime, bp->hashNext,
1707                  bp->data, bp->lockers, bp->dirty, bp->hashIndex);
1708 #else
1709         if (pnt)
1710             printf
1711                 ("Buffer #%d:\tfid=%lu page=%d, accTime=%d,\n\tHash=%x, data=%x, lockers=%x, dirty=%d, hashI=%d\n",
1712                  i, bp->fid, bp->page, bp->accesstime, bp->hashNext,
1713                  bp->data, bp->lockers, bp->dirty, bp->hashIndex);
1714 #endif
1715         j++;
1716     }
1717     if (pnt)
1718         printf("\n\t   ... that should be %d buffer entries\n", i);
1719 }
1720
1721
1722 int
1723 print_nfss(int pnt)
1724 {
1725     off_t symoff;
1726     struct afs_exporter *exp_entry, ex, *exp = &ex, *exp1;
1727     struct nfsclientpag *afs_nfspags[NNFSCLIENTS], e, *entry = &e, *ep;
1728     long i, j, cell;
1729
1730     /* Handle the afs_exporter structures */
1731     if (pnt)
1732         printf("\n\nPrinting 'afs_exporters' link list...\n");
1733     findsym("root_exported", &symoff);
1734     kread(kmem, symoff, (char *)&cell, sizeof(long));
1735     for (exp1 = (struct afs_exporter *)cell, j = 0; exp1;
1736          exp1 = exp->exp_next, j++) {
1737         kread(kmem, (off_t) exp1, (char *)exp, sizeof *exp);
1738         if (pnt)
1739             printf("AFS_EXPORTER(%x): \n", exp1);
1740         print_exporter(kmem, exp, exp1, pnt);
1741         Sum_exps++;
1742     }
1743     if (pnt)
1744         printf("... found %d 'afs_exporters' entries\n", j);
1745
1746     /* Handle the afs_nfsclientpags structs */
1747     if (pnt)
1748         printf("\n\nPrinting 'afs_nfsclientpags' structures...\n");
1749     if (!findsym("afs_nfspags", &symoff))
1750         return 0;
1751     kread(kmem, symoff, (char *)afs_nfspags, sizeof afs_nfspags);
1752     for (i = 0, j = 0; i < NNFSCLIENTS; i++) {
1753         for (ep = afs_nfspags[i]; ep; ep = entry->next, j++) {
1754             kread(kmem, (off_t) ep, (char *)entry, sizeof *entry);
1755             print_nfsclient(kmem, entry, ep, pnt);
1756         }
1757     }
1758     if (pnt)
1759         printf("... found %d 'afs_nfsclientpags' entries\n", j);
1760     return j;
1761 }
1762
1763 #if defined(AFS_GLOBAL_SUNLOCK) && !defined(AFS_HPUX_ENV) && !defined(AFS_AIX41_ENV)
1764 typedef struct event {
1765     struct event *next;         /* next in hash chain */
1766     char *event;                /* lwp event: an address */
1767     int refcount;               /* Is it in use? */
1768     kcondvar_t cond;            /* Currently associated condition variable */
1769     int seq;                    /* Sequence number: this is incremented
1770                                  * by wakeup calls; wait will not return until
1771                                  * it changes */
1772 } event_t;
1773 #endif
1774
1775
1776 #ifdef AFS_LINUX_ENV
1777 /* This is replicated from LINUX/osi_alloc.c */
1778 #define MEM_SPACE sizeof(int)
1779
1780 #define KM_TYPE 1
1781 #define VM_TYPE 2
1782 struct osi_linux_mem {
1783     int mem_next;               /* types are or'd into low bits of next */
1784     char data[1];
1785 };
1786 #define MEMTYPE(A) ((A) & 0x3)
1787 #define MEMADDR(A) ((struct osi_linux_mem*)((A) & (~0x3)))
1788 #define PR_MEMTYPE(A) ((MEMTYPE(A) == KM_TYPE) ? "phys" : "virt")
1789 void
1790 print_alloced_memlist(void)
1791 {
1792     off_t symoff;
1793     struct osi_linux_mem *memp, memlist, next;
1794     off_t next_addr;
1795     int count;
1796     int n = 0;
1797
1798     findsym("afs_linux_memlist_size", &symoff);
1799     kread(kmem, symoff, (char *)&count, sizeof count);
1800     findsym("afs_linux_memlist", &symoff);
1801     kread(kmem, symoff, (char *)&memp, sizeof memp);
1802     if (memp) {
1803 #ifdef AFS_LINUX_64BIT_KERNEL
1804         kread(kmem, (unsigned long)memp, (char *)&next, sizeof next);
1805 #else
1806         kread(kmem, (int)memp, (char *)&next, sizeof next);
1807 #endif /* AFS_LINUX_64BIT_KERNEL */
1808     } else {
1809         memset(&next, 0, sizeof next);
1810     }
1811     printf("Allocated memory list: %d elements\n", count);
1812     printf("%20s %4s %10s\n", "Address", "Type", "Next");
1813     printf("%20lx %4s %10x\n", (long)((char *)memp) + MEM_SPACE,
1814            PR_MEMTYPE(next.mem_next), next.mem_next);
1815     n = 1;
1816     while (next_addr = (off_t) MEMADDR(next.mem_next)) {
1817         n++;
1818         memlist = next;
1819         kread(kmem, next_addr, (char *)&next, sizeof next);
1820         printf("%20lx %4s %10x\n", (long)next_addr + MEM_SPACE,
1821                PR_MEMTYPE(next.mem_next), next.mem_next);
1822     }
1823     printf("Found %d elements in allocated memory list, expected %d\n", n,
1824            count);
1825 }
1826 #endif /* AFS_LINUX_ENV */
1827
1828 void
1829 print_allocs(int pnt)
1830 {
1831     off_t symoff;
1832     long count, i, j, k, l, m, n, T = 0, tvs;
1833     struct afs_CMStats afs_cmstats;
1834     struct afs_stats_CMPerf afs_cmperfstats;
1835
1836     findsym("afs_cmstats", &symoff);
1837     kread(kmem, symoff, (char *)&afs_cmstats, sizeof afs_cmstats);
1838     findsym("afs_stats_cmperf", &symoff);
1839     kread(kmem, symoff, (char *)&afs_cmperfstats, sizeof afs_cmperfstats);
1840
1841     T += MAXSYSNAME;
1842     printf("\n\n%20s:\t%8d bytes\n", "Sysname area", MAXSYSNAME);
1843
1844     Sum_cellnames = 0;
1845     i = print_cells(0);
1846     j = (i * sizeof(struct cell)) + Sum_cellnames;
1847     T += j;
1848     printf
1849         ("%20s:\t%8d bytes\t[%d cells/%d bytes each + %d bytes for cell names]\n",
1850          "Cell package", j, i, sizeof(struct cell), Sum_cellnames);
1851
1852     Sum_cellaliases = 0;
1853     i = print_cellaliases(0);
1854     j = (i * sizeof(struct cell_alias)) + Sum_cellaliases;
1855     T += j;
1856     printf
1857         ("%20s:\t%8d bytes\t[%d cell_aliases/%d bytes each + %d bytes for cell names]\n",
1858          "Cell package", j, i, sizeof(struct cell_alias), Sum_cellaliases);
1859
1860     Sum_cellname_names = 0;
1861     i = print_cellnames(0);
1862     j = (i * sizeof(struct cell_name)) + Sum_cellname_names;
1863     T += j;
1864     printf
1865         ("%20s:\t%8d bytes\t[%d cell_names/%d bytes each + %d bytes for cell name strings]\n",
1866          "Cell package", j, i, sizeof(struct cell_name), Sum_cellname_names);
1867
1868     Sum_userstp = 0;
1869     i = print_users(0);
1870     j = (i * sizeof(struct unixuser)) + Sum_userstp;
1871     T += j;
1872     printf
1873         ("%20s:\t%8d bytes\t[%d users/%d bytes each + %d bytes for secret tokens]\n",
1874          "User package", j, i, sizeof(struct unixuser), Sum_userstp);
1875
1876     i = print_servers(0);
1877     j = (i * sizeof(struct server));
1878     T += j;
1879     printf("%20s:\t%8d bytes\t[%d servers/%d bytes each]\n", "Server package",
1880            j, i, sizeof(struct server));
1881     j = (Nconns * sizeof(struct afs_conn));
1882     T += j;
1883     printf("%20s:\t%8d bytes\t[%d conns/%d bytes each]\n",
1884            "Connection package", j, Nconns, sizeof(struct afs_conn));
1885
1886     i = (AFS_NCBRS * sizeof(struct afs_cbr)) * (j =
1887                                                 afs_cmperfstats.
1888                                                 CallBackAlloced);
1889     T += i;
1890     if (i)
1891         printf("%20s:\t%8d bytes\t[%d cbs/%d bytes each]\n",
1892                "Server CB free pool", i, (j * AFS_NCBRS),
1893                sizeof(struct afs_cbr));
1894
1895     Sum_volnames = 0;
1896     i = print_volumes(0);
1897     j = (MAXVOLS * sizeof(struct volume)) + Sum_volnames;
1898     T += j;
1899     printf
1900         ("%20s:\t%8d bytes\t[%d volumes/%d bytes each + %d bytes for volnames - %d active entries]\n",
1901          "Volume package", j, MAXVOLS, sizeof(struct volume), Sum_volnames,
1902          i);
1903
1904     Sum_vcachemvids = Sum_vcachelinkData = Sum_vcacheacc = Sum_vcachelocks =
1905         0;
1906     tvs = i = print_vcaches(0);
1907     j = (i * sizeof(struct vcache));
1908 /*    T += j;*/
1909 /*    printf("%20s:\t%d bytes\t[%d vcaches/%d bytes each]\n", "Vcache package", j, i, sizeof(struct vcache));*/
1910 #ifdef  AFS_AIX32_ENV
1911     i = (tvs + Sum_vcachemvids + Sum_vcachelinkData +
1912          Sum_vcachelocks) * AFS_SMALLOCSIZ;
1913     printf
1914         ("%20s:\t%8d bytes\t[%d act gnodes, %d mount pnts, %d symbolic links, %d unix locks]\n",
1915          "[VC use of sml fp]*", i, tvs, Sum_vcachemvids, Sum_vcachelinkData,
1916          Sum_vcachelocks);
1917 #else
1918     i = (Sum_vcachemvids + Sum_vcachelinkData +
1919          Sum_vcachelocks) * AFS_SMALLOCSIZ;
1920     printf
1921         ("%20s:\t8%d bytes\t[%d mount pnts, %d symbolic links, %d unix locks]\n",
1922          "[VC use of sml fp]*", i, Sum_vcachemvids, Sum_vcachelinkData,
1923          Sum_vcachelocks);
1924 #endif
1925
1926 #define NAXSs (1000 / sizeof(struct axscache))
1927 #ifdef  AFS32
1928     i = (NAXSs * sizeof(struct axscache));
1929     T += i;
1930     printf("%20s:\t%8d bytes\t[%d access used by vcaches/%d bytes each]\n",
1931            "ACL List free pool", i, Sum_vcacheacc, sizeof(struct axscache));
1932 #else
1933     {
1934         struct axscache *xp, xpe, *nxp = &xpe;
1935
1936         findsym("afs_xaxscnt", &symoff);
1937         kread(kmem, symoff, (char *)&i, sizeof i);
1938         j = i * (NAXSs * sizeof(struct axscache));
1939         T += j;
1940         printf
1941             ("%20s:\t%8d bytes\t[%d access used by vcaches/%d bytes each - %d blocks of %d]\n",
1942              "ACL List free pool", j, Sum_vcacheacc, sizeof(struct axscache),
1943              i, (NAXSs * sizeof(struct axscache)));
1944     }
1945 #endif
1946
1947 #ifdef  AFS32
1948     i = print_dcaches(0);
1949     j = (i * sizeof(struct dcache));
1950     T += j;
1951     printf
1952         ("%20s:\t%8d bytes\t[%d dcaches/%d bytes each - ONLY USED COUNTED]\n",
1953          "Dcache package", j, i, sizeof(struct dcache));
1954 #else
1955     findsym("afs_dcentries", &symoff);
1956     kread(kmem, symoff, (char *)&i, sizeof i);
1957     j = (i * sizeof(struct dcache));
1958     T += j;
1959     printf("%20s:\t%8d bytes\t[%d dcaches/%d bytes each]\n", "Dcache package",
1960            j, i, sizeof(struct dcache));
1961 #endif
1962     findsym("afs_cacheFiles", &symoff);
1963     kread(kmem, symoff, (char *)&i, sizeof i);
1964     findsym("afs_cacheStats", &symoff);
1965     kread(kmem, symoff, (char *)&j, sizeof j);
1966
1967     k = (j * sizeof(struct vcache));
1968     printf
1969         ("%20s:\t%8d bytes\t[%d free vcaches/%d bytes each - %d active entries]\n",
1970          "Vcache free list", k, j, sizeof(struct vcache), tvs);
1971     printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n",
1972            "Dcache Index Table", i * 4, i, 4);
1973 #ifndef AFS32
1974     printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n",
1975            "Dcache Index Times", i * 8, i, 8);
1976 #else
1977     printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n",
1978            "Dcache Index Times", i * 4, i, 4);
1979 #endif
1980     printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n",
1981            "Dcache Index Flags", i, i, 1);
1982 /*    printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n", "Dcache free list", i, i, 1);*/
1983 #ifndef AFS32
1984     T += k + (i * 4) + (i * 8) + i;
1985 #else
1986     T += k + (i * 4) + (i * 4) + i;
1987 #endif
1988
1989     i = (j = afs_cmperfstats.bufAlloced) * sizeof(struct buffer);
1990     T += i;
1991     printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n", "Buffer package",
1992            i, j, sizeof(struct buffer));
1993 #define AFS_BUFFER_PAGESIZE 2048
1994     i = j * AFS_BUFFER_PAGESIZE;
1995     T += i;
1996     printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n",
1997            "Xtra Buffer pkg area", i, j, AFS_BUFFER_PAGESIZE);
1998
1999     Sum_exps = 0;
2000     Sum_nfssysnames = 0;
2001     i = print_nfss(0);
2002     k = Sum_exps * sizeof(struct afs_exporter);
2003     T += k;
2004     if (k)
2005         printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n",
2006                "Xlator Exporter list", k, Sum_exps,
2007                sizeof(struct afs_exporter));
2008
2009     j = (i * sizeof(struct nfsclientpag)) + Sum_nfssysnames;
2010     T += j;
2011     if (j)
2012         printf
2013             ("%20s:\t%8d bytes\t[%d entries/%d bytes each + %d for remote sysnames]\n",
2014              "Xlator Nfs clnt pkg", j, i, sizeof(struct nfsclientpag),
2015              Sum_nfssysnames);
2016
2017     i = (j = afs_cmperfstats.LargeBlocksAlloced) * AFS_LRALLOCSIZ;
2018     T += i;
2019     printf
2020         ("%20s:\t%8d bytes\t[%d entries/%d bytes each - %d active entries]\n",
2021          "Large Free Pool", i, j, AFS_LRALLOCSIZ,
2022          afs_cmperfstats.LargeBlocksActive);
2023
2024     i = (j = afs_cmperfstats.SmallBlocksAlloced) * AFS_SMALLOCSIZ;
2025     T += i;
2026     printf
2027         ("%20s:\t%8d bytes\t[%d entries/%d bytes each - %d active entries]\n",
2028          "Small Free Pool", i, j, AFS_SMALLOCSIZ,
2029          afs_cmperfstats.SmallBlocksActive);
2030
2031 #if defined(AFS_GLOBAL_SUNLOCK) && !defined(AFS_HPUX_ENV) && !defined(AFS_AIX41_ENV)
2032     findsym("afs_evhashcnt", &symoff);
2033     kread(kmem, symoff, (char *)&j, sizeof j);
2034     i = (j * sizeof(event_t));
2035     T += i;
2036     printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n",
2037            "afs glock Event Pool", i, j, sizeof(event_t));
2038 /*    printf("XXXXXXX Count event queue allocs!!!! XXXXXX\n");*/
2039
2040 #endif
2041     i = j = 0;
2042     if (findsym("rxevent_nFree", &symoff))
2043         kread(kmem, symoff, (char *)&j, sizeof j);
2044     if (findsym("rxevent_nPosted", &symoff))
2045         kread(kmem, symoff, (char *)&i, sizeof i);
2046     k = (i + j) * sizeof(struct rxevent);
2047     if (k) {
2048         T += k;
2049         printf("%20s:\t%8d bytes\t[%d free, %d posted/%d bytes each]\n",
2050                "Rx event pkg", k, j, i, sizeof(struct rxevent));
2051     } else {
2052         T += (k = 20 * sizeof(struct rxevent));
2053         printf
2054             ("%20s:\t%8d bytes\t[%d entries/%d bytes each - THIS IS MIN ALLOC/NOT ACTUAL]\n",
2055              "Rx event pkg", k, 20, sizeof(struct rxevent));
2056     }
2057
2058     findsym("rx_nFreePackets", &symoff);
2059     kread(kmem, symoff, (char *)&count, sizeof count);
2060 /*
2061     findsym("rx_initSendWindow", &symoff);
2062     kread(kmem, symoff, (char *) &i, sizeof i);
2063 */
2064     i = 0;
2065     findsym("rx_nPackets", &symoff);
2066     kread(kmem, symoff, (char *)&j, sizeof j);
2067     k = (j + i + 2) * sizeof(struct rx_packet);
2068     T += k;
2069     printf("%20s:\t%8d bytes\t[%d free packets/%d bytes each]\n",
2070            "Rx packet freelist", k, count, sizeof(struct rx_packet));
2071 #define rx_hashTableSize 256    /* XXX */
2072     i = (rx_hashTableSize * sizeof(struct rx_connection *));
2073     j = (rx_hashTableSize * sizeof(struct rx_peer *));
2074     k = i + j;
2075     T += k;
2076     printf("%20s:\t%8d bytes\t[%d entries/%d bytes each]\n",
2077            "Rx conn/peer tables", k, rx_hashTableSize,
2078            sizeof(struct rx_connection *));
2079
2080     findsym("rxi_Alloccnt", &symoff);
2081     kread(kmem, symoff, (char *)&j, sizeof j);
2082     findsym("rxi_Allocsize", &symoff);
2083     kread(kmem, symoff, (char *)&i, sizeof i);
2084     T += i;
2085     printf("%20s:\t%8d bytes\t[%d outstanding allocs]\n", "RX misc allocs", i,
2086            j);
2087
2088
2089     j = afs_cmperfstats.OutStandingMemUsage;
2090     printf("\n\n%20s:\t%8d bytes\n", "Mem used by afs", j);
2091     printf("%20s:\t%8d bytes\n", "Accounted-for mem", T);
2092     printf("%20s:\t%8d bytes\n", "Non acc'd-for mem", j - T);
2093
2094     printf
2095         ("\n\nNOTE:\n\tAll [...]* entries above aren't counted towards the total mem since they're redundant\n");
2096
2097 #ifdef AFS_LINUX_ENV
2098     if (pnt)
2099         print_alloced_memlist();
2100 #endif
2101 }
2102
2103 #if     defined(sparc) && !defined(__linux__)
2104 int
2105 readmem(kmem, buf, vad, len)
2106      int kmem, len;
2107 #ifdef AFS_SUN5_ENV
2108      uintptr_t vad;
2109 #else
2110      int vad;
2111 #endif          /** AFS_SUN5_ENV **/
2112      char *buf;
2113 {
2114     int newlen;
2115     if ((newlen = kvm_kread(kd, vad, buf, len)) != len) {
2116         printf("Couldn't process dumpfile with supplied namelist %s\n", obj);
2117         exit(1);
2118     }
2119 }
2120 #endif
2121
2122 #ifndef AFS_KDUMP_LIB
2123 void
2124 kread(int kmem, off_t loc, void *buf, KDUMP_SIZE_T len)
2125 {
2126     int i;
2127
2128     memset(buf, 0, len);
2129
2130 #if     defined(sparc) && !defined(__linux__)
2131 #ifndef AFS_SUN5_ENV
2132     if (mem) {
2133 #endif
2134         readmem(kmem, buf, (off_t) loc, len);
2135         return;
2136 #ifndef AFS_SUN5_ENV
2137     }
2138 #endif
2139 #endif
2140 #if     ! defined(AFS_SUN5_ENV)
2141 #if defined(AFS_SGI61_ENV) && !defined(AFS_32BIT_KERNEL_ENV)
2142     if (lseek64(kmem, loc, L_SET /*0 */ ) != loc)
2143 #else
2144     if (lseek(kmem, loc, L_SET /*0 */ ) != loc)
2145 #endif
2146     {
2147         perror("lseek");
2148         exit(1);
2149     }
2150     if (loc == 0)
2151         printf("WARNING: Read failed: loc=0\n");
2152     else
2153         if ((i = read(kmem, buf, len)) != len) {
2154             printf("WARNING: Read failed: ");
2155             if (sizeof(loc) > sizeof(long)) {
2156                 printf("loc=%llx", loc);
2157             } else {
2158                 printf("loc=%lx", (long)loc);
2159             }
2160             printf(", buf=%lx, len=%ld, i=%d, errno=%d\n", (long)buf,
2161                    (long)len, i, errno);
2162             return;                     /*exit(1); */
2163         }
2164 #endif
2165 }
2166 #endif /* AFS_KDUMP_LIB */
2167
2168 #ifdef  AFS_SUN5_ENV
2169
2170 /**
2171   * When examining the dump of a 64 bit kernel, we use this function to
2172   * read symbols. The function opencore() calls this or rdsymbols() using
2173   * the macro RDSYMBOLS
2174   */
2175
2176 void
2177 rdsymbols(void)
2178 {
2179
2180     FILE *fp;
2181     Elf *efd;
2182     Elf_Scn *cn = NULL;
2183 #ifdef  _LP64
2184     Elf64_Shdr *shdr;
2185     Elf64_Sym *stbl, *p1, *p2;
2186     Elf64_Shdr *(*elf_getshdr) (Elf_Scn *) = elf64_getshdr;
2187 #else
2188     Elf32_Shdr *shdr;
2189     Elf32_Sym *stbl, *p1, *p2;
2190     Elf32_Shdr *(*elf_getshdr) (Elf_Scn *) = elf32_getshdr;
2191 #endif
2192     Elf_Data *dp = NULL, *sdp = NULL;
2193
2194     int nsyms, i, fd;
2195
2196     if (!(fp = fopen(obj, "r"))) {
2197         printf("Can't open %s (%d)\n", core, errno);
2198         exit(1);
2199     }
2200
2201     fd = fileno(fp);
2202     lseek(fd, 0L, 0);
2203     if ((efd = elf_begin(fd, ELF_C_READ, 0)) == NULL) {
2204         printf("Can't elf begin (%d)\n", errno);
2205         exit(1);
2206     }
2207     while (cn = elf_nextscn(efd, cn)) {
2208         if ((shdr = elf_getshdr(cn)) == NULL) {
2209             elf_end(efd);
2210             printf("Can't read section header (%d)\n", errno);
2211             exit(1);
2212         }
2213         if (shdr->sh_type == SHT_SYMTAB)
2214             break;
2215     }
2216     dp = elf_getdata(cn, dp);
2217     p1 = stbl = (void *)dp->d_buf;
2218     nsyms = dp->d_size / sizeof(*stbl);
2219     cn = elf_getscn(efd, shdr->sh_link);
2220     sdp = elf_getdata(cn, sdp);
2221     tblp = malloc(sdp->d_size);
2222     memcpy(tblp, sdp->d_buf, sdp->d_size);
2223     p2 = tbl = malloc(nsyms * sizeof(*stbl));
2224     for (i = 0, scnt = 0; i < nsyms; i++, p1++, p2++) {
2225         p2->st_name = p1->st_name;
2226         p2->st_value = p1->st_value;
2227         p2->st_size = p1->st_size;
2228         p2->st_info = p1->st_info;
2229         p2->st_shndx = p1->st_shndx;
2230         scnt++;
2231     }
2232     elf_end(efd);
2233     close(fd);
2234 }
2235
2236 #endif          /** AFS_SUN5_ENV **/
2237
2238
2239 int
2240 opencore(char *core)
2241 {
2242 #ifdef AFS_KDUMP_LIB
2243     return 0;
2244 #else /* AFS_KDUMP_LIB */
2245     int fd;
2246
2247 #if     defined(sparc) && !defined(__linux__)
2248 #ifndef AFS_SUN5_ENV
2249     if (mem) {
2250 #endif
2251
2252         if ((kd = kvm_open(obj, core, NULL, O_RDONLY, "crash")) == NULL) {
2253             printf("Can't open kvm - core file %s\n", core);
2254             exit(1);
2255         }
2256 #ifndef AFS_SUN5_ENV
2257     } else
2258 #endif
2259 #ifdef  AFS_SUN5_ENV
2260         rdsymbols();
2261 #endif
2262 #endif /* sparc */
2263
2264     {
2265         if ((fd = open(core, O_RDONLY)) < 0) {
2266             perror(core);
2267             exit(1);
2268         }
2269         return fd;
2270     }
2271 #endif /* AFS_KDUMP_LIB */
2272 }
2273
2274
2275 void
2276 print_exporter(int kmem, struct afs_exporter *exporter,
2277                struct afs_exporter *ptr, int pnt)
2278 {
2279     if (pnt) {
2280         printf("\tstates=%x, type=%x, *data=%lx\n", exporter->exp_states,
2281                exporter->exp_type, exporter->exp_data);
2282         printf
2283             ("\texp_stats (calls=%d, rejectedcalls=%d, nopag=%d, invalidpag=%d)\n",
2284              exporter->exp_stats.calls, exporter->exp_stats.rejectedcalls,
2285              exporter->exp_stats.nopag, exporter->exp_stats.invalidpag);
2286     }
2287 }
2288
2289
2290 void
2291 print_nfsclient(int kmem, struct nfsclientpag *ep,
2292                 struct nfsclientpag *ptr, int pnt)
2293 {
2294     char sysname[100];
2295         int count;
2296
2297     if (pnt)
2298         printf("%lx: uid=%d, host=%x, pag=%x, lastt=%d, ref=%d count=%d\n",
2299                ptr, ep->uid, ep->host, ep->pag,
2300                ep->lastcall, ep->refCount, ep->sysnamecount);
2301
2302         for(count = 0; count < ep->sysnamecount; count++){
2303                 kread(kmem, (off_t) ep->sysname[count], sysname, (KDUMP_SIZE_T) 30);
2304                 printf("   %lx: @sys[%d]=%s\n",
2305                         ep->sysname[count], count, sysname);
2306                 Sum_nfssysnames += MAXSYSNAME;
2307         }
2308 }
2309
2310
2311 #if     defined(AFS_SUN5_ENV)
2312 void
2313 pmutex(char *sp, kmutex_t *mp)
2314 {
2315 }
2316
2317 #endif
2318
2319 void
2320 print_unixuser(int kmem, struct unixuser *uep,
2321                struct unixuser *ptr, int pnt)
2322 {
2323     Sum_userstp += uep->stLen;
2324     if (pnt) {
2325         printf
2326             ("%lx: uid=x%x, cell=%x, vid=%d, refc=%d, states=%x, tokTime=%d, tikLen=%d\n",
2327              ptr, uep->uid, uep->cell, uep->vid, uep->refCount, uep->states,
2328              uep->tokenTime, uep->stLen);
2329         printf
2330             ("\tstp=%lx, clearTok[Han=x%x, x<%x,%x,%x,%x,%x,%x,%x,%x>, vid=%d, Bt=%d, Et=%d], exporter=%lx\n",
2331              uep->stp, uep->ct.AuthHandle, uep->ct.HandShakeKey[0],
2332              uep->ct.HandShakeKey[1], uep->ct.HandShakeKey[2],
2333              uep->ct.HandShakeKey[3], uep->ct.HandShakeKey[4],
2334              uep->ct.HandShakeKey[5], uep->ct.HandShakeKey[6],
2335              uep->ct.HandShakeKey[7], uep->ct.ViceId, uep->ct.BeginTimestamp,
2336              uep->ct.EndTimestamp, uep->exporter);
2337     }
2338 }
2339
2340 void
2341 print_cell(int kmem, struct cell *clep, struct cell *ptr, int pnt)
2342 {
2343     int i;
2344     char cellName[100];
2345     struct in_addr in;
2346
2347
2348     kread(kmem, (off_t) clep->cellName, cellName, (KDUMP_SIZE_T) 40);
2349     cellName[40] = 0;
2350     Sum_cellnames += strlen(cellName) + 1;
2351     if (pnt) {
2352         printf
2353             ("%lx: cellname=%s, states=%x, cnum=%d, cindex=%d fsport=%d vlport=%d timeout=%d cnamep=%x\n",
2354              ptr, cellName, clep->states, clep->cellNum, clep->cellIndex,
2355              clep->fsport, clep->vlport, clep->timeout, clep->cnamep);
2356 #ifdef  AFS33
2357         if (clep->lcellp)
2358             printf("\tlinked cellp %lx\n", clep->lcellp);
2359 #endif
2360         printf("\tCell's servers: ");
2361         for (i = 0; i < AFS_MAXCELLHOSTS; i++) {
2362             if (pretty && (clep->cellHosts[i] == 0))
2363                 break;
2364             printf("[%lx] ", clep->cellHosts[i]);
2365         }
2366         printf("\n");
2367     }
2368 }
2369
2370
2371 void
2372 print_server(int kmem, struct server *sep, struct server *ptr, int conns,
2373              int pnt)
2374 {
2375     struct srvAddr sa, *sap = &sa, *sap1;
2376     int j, mh = 0, cnt;
2377
2378     if (conns != 2 && pnt) {
2379         printf
2380             ("%lx: cell=%lx, addr=%lx, flags=0x%x, actTime=%x, lastDownS=%x, numDownIn=%d, sumofDownt=%d\n",
2381              ptr, sep->cell, sep->addr, sep->flags, sep->activationTime,
2382              sep->lastDowntimeStart, sep->numDowntimeIncidents,
2383              sep->sumOfDowntimes);
2384         if (sep->flags & SRVR_MULTIHOMED) {
2385             if (pnt) {
2386                 printf
2387                     ("\tuuid=[%x,%x,%x,%x,%x,%x,%x,%x,%x,%x,%x]  addr_uniquifier=%x\n",
2388                      sep->sr_uuid.time_low, sep->sr_uuid.time_mid,
2389                      sep->sr_uuid.time_hi_and_version,
2390                      sep->sr_uuid.clock_seq_hi_and_reserved,
2391                      sep->sr_uuid.clock_seq_low, sep->sr_uuid.node[0],
2392                      sep->sr_uuid.node[1], sep->sr_uuid.node[2],
2393                      sep->sr_uuid.node[3], sep->sr_uuid.node[4],
2394                      sep->sr_uuid.node[5], sep->sr_addr_uniquifier);
2395             }
2396             mh = 1;
2397         }
2398         for (j = 0, cnt = 1, sap1 = sep->addr; sap1;
2399              sap1 = sap->next_sa, j++, cnt++) {
2400             kread(kmem, (off_t) sap1, (char *)sap, sizeof(*sap));
2401             if (pnt) {
2402                 if (mh) {
2403                     printf
2404                         ("\t   #%d ip-addr(%lx): [sa_ip=%s, sa_port=%d, sa_iprank=%d, sa_flags=%x, conns=%lx, server=%lx, next_bkt=%lx]\n",
2405                          cnt, sap1, PrintIPAddr(sap->sa_ip), sap->sa_portal,
2406                          sap->sa_iprank, sap->sa_flags, sap->conns,
2407                          sap->server, sap->next_bkt);
2408                 } else {
2409                     printf
2410                         ("\t[sa_ip=%s, sa_port=%d, sa_iprank=%d, sa_flags=%x, conns=%lx, server=%lx, nexth=%lx]\n",
2411                          PrintIPAddr(sap->sa_ip), sap->sa_portal,
2412                          sap->sa_iprank, sap->sa_flags, sap->conns,
2413                          sap->server, sap->next_bkt);
2414                 }
2415             }
2416         }
2417     }
2418     if (sep->cbrs && pnt) {
2419         struct afs_cbr cba, *cbsap = &cba, *cbsap1;
2420
2421         printf(" Callbacks to be returned:\n");
2422         for (j = 0, cbsap1 = sep->cbrs; cbsap1; cbsap1 = cbsap->next, j++) {
2423             kread(kmem, (off_t) cbsap1, (char *)cbsap, sizeof(*cbsap));
2424             printf("     #%2d) %lx [v=%d, n=%d, u=%d]\n", j, cbsap1,
2425                    cbsap->fid.Volume, cbsap->fid.Vnode, cbsap->fid.Unique);
2426         }
2427     }
2428     if (conns) {
2429         for (j = 0, sap1 = sep->addr; sap1; sap1 = sap->next_sa, j++) {
2430             kread(kmem, (off_t) sap1, (char *)sap, sizeof(*sap));
2431             print_conns(kmem, sap1, sap->conns, conns, pnt);
2432         }
2433     } else if (pnt)
2434         printf("\n");
2435 }
2436
2437
2438 void
2439 print_conns(int kmem, struct srvAddr *srv, struct afs_conn *conns, int Con,
2440             int pnt)
2441 {
2442     struct afs_conn *cep, ce, *centry = &ce;
2443     int i = 1;
2444
2445     cep = (struct afs_conn *)conns;
2446     if (pnt && Con != 2) {
2447         if (cep)
2448             printf("\tRPC connections for server %lx:\n", srv);
2449         else
2450             printf("\tNO RPC connections for server %x\n", srv);
2451     }
2452     for (; cep; cep = centry->next, Nconns++, i++) {
2453         if (pnt && Con != 2)
2454             printf("\t   #%d> ", i);
2455         kread(kmem, (off_t) cep, (char *)centry, sizeof *centry);
2456         print_conn(kmem, centry, cep, pnt);
2457     }
2458 }
2459
2460
2461 void
2462 print_conn(int kmem, struct afs_conn *conns, struct afs_conn *ptr, int pnt)
2463 {
2464     if (!pnt)
2465         return;
2466     printf("%lx: user=%lx, rx=%lx, srvr=%lx, ref=%d, port=%d, forceC=%d\n",
2467            ptr, conns->user, conns->id, conns->srvr, conns->refCount,
2468            conns->port, conns->forceConnectFS);
2469
2470 }
2471
2472
2473 void
2474 print_volume(int kmem, struct volume *vep, struct volume *ptr, int pnt)
2475 {
2476     int i;
2477     afs_int32 *loc;
2478     char Volname[100];
2479
2480
2481
2482     loc = (afs_int32 *) & vep->lock;
2483     if (vep->name) {
2484         kread(kmem, (off_t) vep->name, Volname, (KDUMP_SIZE_T) 40);
2485         Sum_volnames += strlen(Volname) + 1;
2486     }
2487     if (!pnt)
2488         return;
2489     printf("%lx: cell=%x, vol=%d, name=%s, roVol=%d, backVol=%d\n", ptr,
2490            vep->cell, vep->volume, (vep->name ? Volname : "nil"), vep->roVol,
2491            vep->backVol);
2492 #ifdef  AFS33
2493     printf
2494         ("\trwVol=%d, setupTime=%d, copyDate=%d, expTime=%d, vtix=%d, refC=%d, states=%x\n",
2495          vep->rwVol, vep->setupTime, vep->copyDate, vep->expireTime,
2496          vep->vtix, vep->refCount, vep->states);
2497 #else
2498     printf
2499         ("\trwVol=%d, setupTime=%d, copyDate=%d, vtix=%d, refC=%d, states=%x\n",
2500          vep->rwVol, vep->setupTime, vep->copyDate, vep->vtix, vep->refCount,
2501          vep->states);
2502 #endif
2503     printf("\tVolume's statuses: ");
2504     for (i = 0; i < AFS_MAXHOSTS && vep->serverHost[i]; i++)
2505         printf("[%d] ", vep->status[i]);
2506     printf("\n");
2507
2508     printf("\tVolume's servers: ");
2509     for (i = 0; i < AFS_MAXHOSTS && vep->serverHost[i]; i++)
2510         printf("[%lx] ", vep->serverHost[i]);
2511     printf("\n");
2512
2513     print_venusfid("\tdotdot", &vep->dotdot);
2514     printf("\n");
2515
2516     print_venusfid("\tmtpnt", &vep->mtpoint);
2517     printf("\n");
2518
2519 #ifdef  AFS33
2520     if (vep->rootVnode)
2521         printf("\trootVnode = %d, rootUnique = %d\n", vep->rootVnode,
2522                vep->rootUnique);
2523 #endif
2524     printf("\tlock=0x%x\n", *loc);
2525 }
2526
2527
2528 void
2529 print_venusfid(char *string, struct VenusFid *vid)
2530 {
2531     printf("%s(c=%x, v=%d, n=%d, u=%d)", string, vid->Cell, vid->Fid.Volume,
2532            vid->Fid.Vnode, vid->Fid.Unique);
2533 }
2534
2535
2536 void
2537 print_vnode(int kmem, struct vnode *vep, struct vnode *ptr, int pnt)
2538 {
2539 #ifdef AFS_AIX_ENV
2540     struct gnode gnode;
2541     struct gnode *save_gnode;
2542 #endif /* AFS_AIX_ENV */
2543
2544     if (!pnt)
2545         return;
2546     printf("\n");
2547 #ifdef AFS_AIX_ENV
2548     save_gnode = vep->v_gnode;
2549     kread(kmem, (off_t) save_gnode, (char *)&gnode, sizeof(struct gnode));
2550     vep->v_gnode = &gnode;
2551 #endif /* AFS_AIX_ENV */
2552
2553 #ifdef  AFS_SUN5_ENV
2554     printf("%x: v_type=%d, v_flag=%d, v_count=%d, \n", ptr, vep->v_type,
2555            vep->v_flag, vep->v_count);
2556     printf
2557         ("\tv_v_stream=%x, v_pages=0x%x, v_mountdhere=%d, v_rdev=%d, v_vfsp=0x%x, v_filocks=0x%x\n",
2558          vep->v_stream, vep->v_pages, vep->v_vfsmountedhere, vep->v_rdev,
2559          vep->v_vfsp, vep->v_filocks);
2560     pmutex("\tVnode", &vep->v_lock);
2561     printf("\tCond v: 0x%x\n", vep->v_cv);
2562 #endif
2563 #ifdef AFS_AIX_ENV
2564     vep->v_gnode = save_gnode;
2565 #endif /* AFS_AIX_ENV */
2566 #ifdef AFS_SGI65_ENV
2567 #if defined(AFS_32BIT_KERNEL_ENV)
2568     printf("%lx: v_mreg=0x%lx", ptr, vep->v_mreg);
2569 #else
2570     printf("%llx: v_mreg=0x%llx", ptr, vep->v_mreg);
2571 #endif
2572     printf(", v_mregb=0x%lx\n", vep->v_mregb);
2573 #endif
2574 #ifdef AFS_LINUX_ENV
2575     /* Print out the stat cache and other inode info. */
2576     printf
2577         ("\ti_ino=%d, i_mode=%x, i_nlink=%d, i_uid=%d, i_gid=%d, i_size=%d\n",
2578          vep->i_ino, vep->i_mode, vep->i_nlink, vep->i_uid, vep->i_gid,
2579          vep->i_size);
2580     printf
2581         ("\ti_atime=%u, i_mtime=%u, i_ctime=%u, i_version=%u, i_nrpages=%u\n",
2582          vep->i_atime, vep->i_mtime, vep->i_ctime, vep->i_version,
2583          vep->i_data.nrpages);
2584     printf("\ti_op=0x%x, i_rdev=0x%x, i_sb=0x%x\n", vep->i_op,
2585            vep->i_rdev, vep->i_sb);
2586     printf("\ti_sem: count=%d, sleepers=%d, wait=0x%x\n", vep->i_sem.count,
2587            vep->i_sem.sleepers, vep->i_sem.wait);
2588     printf("\ti_hash=0x%x:0x%x, i_list=0x%x:0x%x, i_dentry=0x%x:0x%x\n",
2589            vep->i_hash.pprev, vep->i_hash.next, vep->i_list.prev,
2590            vep->i_list.next, vep->i_dentry.prev, vep->i_dentry.next);
2591 #endif /* AFS_LINUX_ENV */
2592 }
2593
2594 void
2595 print_vcache(int kmem, struct vcache *vep, struct vcache *ptr, int pnt)
2596 {
2597     long *loc, j = 0;
2598     char *cloc;
2599     struct VenusFid vid;
2600     struct axscache acc, *accp = &acc, *acp;
2601     struct SimpleLocks sl, *slcp = &sl, *slp;
2602     char linkchar;
2603
2604     if (vep->mvid) {
2605         kread(kmem, (off_t) vep->mvid, (char *)&vid, sizeof(struct VenusFid));
2606         Sum_vcachemvids++;
2607     }
2608     if (vep->linkData)
2609         Sum_vcachelinkData++;
2610     loc = (long *)&vep->lock;
2611
2612     if (pnt) {
2613         if (!Dvnodes)
2614             printf("\n");
2615 #ifdef  AFS33
2616         printf("%lx: refC=%d, pv=%d, pu=%d, flushDv=%d.%d, mapDV=%d.%d, ",
2617                ptr, VREFCOUNT(vep), vep->parentVnode, vep->parentUnique,
2618                vep->flushDV.high, vep->flushDV.low, vep->mapDV.high,
2619                vep->mapDV.low);
2620 #ifdef AFS_64BIT_CLIENT
2621         printf
2622             ("truncPos=(0x%x, 0x%x),\n\tcallb=x%lx, cbE=%d, opens=%d, XoW=%d, ",
2623              (int)(vep->truncPos >> 32), (int)(vep->truncPos & 0xffffffff),
2624              vep->callback, vep->cbExpires, vep->opens, vep->execsOrWriters);
2625 #else /* AFS_64BIT_CLIENT */
2626         printf("truncPos=%d,\n\tcallb=x%lx, cbE=%d, opens=%d, XoW=%d, ",
2627                vep->truncPos, vep->callback, vep->cbExpires, vep->opens,
2628                vep->execsOrWriters);
2629 #endif /* AFS_64BIT_CLIENT */
2630         printf("flcnt=%d, mvstat=%d\n", vep->flockCount, vep->mvstat);
2631         printf("\tstates=x%x, ", vep->states);
2632 #ifdef  AFS_SUN5_ENV
2633         printf("vstates=x%x, ", vep->vstates);
2634 #endif /* AFS_SUN5_ENV */
2635         printf("dchint=%x, anyA=0x%x\n", vep->dchint, vep->anyAccess);
2636 #ifdef AFS_64BIT_CLIENT
2637         printf
2638             ("\tmstat[len=(0x%x, 0x%x), DV=%d.%d, Date=%d, Owner=%d, Group=%d, Mode=0%o, linkc=%d]\n",
2639              (int)(vep->m.Length >> 32), (int)(vep->m.Length & 0xffffffff),
2640              vep->m.DataVersion.high, vep->m.DataVersion.low, vep->m.Date,
2641              vep->m.Owner, vep->m.Group, vep->m.Mode, vep->m.LinkCount);
2642 #else /* AFS_64BIT_CLIENT */
2643         printf("\tquick[dc=%x, stamp=%x, f=%x, min=%d, len=%d]\n",
2644                vep->quick.dc, vep->quick.stamp, vep->quick.f,
2645                vep->quick.minLoc, vep->quick.len);
2646         printf
2647             ("\tmstat[len=%d, DV=%d.%d, Date=%d, Owner=%d, Group=%d, Mode=0%o, linkc=%d]\n",
2648              vep->m.Length, vep->m.DataVersion.high, vep->m.DataVersion.low,
2649              vep->m.Date, vep->m.Owner, vep->m.Group, vep->m.Mode,
2650              vep->m.LinkCount);
2651 #endif /* AFS_64BIT_CLIENT */
2652 #else /* AFS33 */
2653         printf
2654             ("%x: refC=%d, pv=%d, pu=%d, flushDv=%d, mapDV=%d, truncPos=%d\n",
2655              ptr, vep->vrefCount, vep->parentVnode, vep->parentUnique,
2656              vep->flushDV, vep->mapDV, vep->truncPos);
2657         printf("\tcallb=x%x, cbE=%d, opens=%d, XoW=%d, flcnt=%d, mvstat=%d\n",
2658                vep->callback, vep->cbExpires, vep->opens, vep->execsOrWriters,
2659                vep->flockCount, vep->mvstat);
2660         printf("\tstates=x%x, dchint=%x, anyA=0x%x\n", vep->states,
2661                vep->h1.dchint, vep->anyAccess);
2662         printf
2663             ("\tmstat[len=%d, DV=%d, Date=%d, Owner=%d, Group=%d, Mode=%d, linkc=%d]\n",
2664              vep->m.Length, vep->m.DataVersion, vep->m.Date, vep->m.Owner,
2665              vep->m.Group, vep->m.Mode, vep->m.LinkCount);
2666 #endif /* AFS33 */
2667 #ifdef  AFS_AIX32_ENV
2668         loc = (afs_int32 *) & vep->pvmlock;
2669         printf("\tpvmlock=x%x, segid=%X, credp=%lx\n", *loc, vep->segid,
2670                vep->credp);
2671 #endif
2672         printf
2673             ("\tlock [wait=%x excl=%x readers=%x #waiting=%x last_reader=%d writer=%d src=%d]\n",
2674              vep->lock.wait_states, vep->lock.excl_locked,
2675              vep->lock.readers_reading, vep->lock.num_waiting,
2676              vep->lock.pid_last_reader, vep->lock.pid_writer,
2677              vep->lock.src_indicator);
2678         print_venusfid("\tfid", &vep->fid);
2679         if (vep->mvid) {
2680             printf(" ");
2681             print_venusfid("mvid", &vid);
2682         }
2683         printf("\n");
2684     }
2685     if (vep->Access) {
2686         if (pnt)
2687             printf("\tAccess Link list: %x\n", vep->Access);
2688         for (j = 0, acp = vep->Access; acp; acp = accp->next, j++) {
2689             kread(kmem, (off_t) acp, (char *)accp, sizeof(*accp));
2690             Sum_vcacheacc++;
2691             if (pnt)
2692                 printf("\t   %lx: %d) uid=0x%x, access=0x%x, next=%lx\n", acp,
2693                        j, accp->uid, accp->axess, accp->next);
2694         }
2695     }
2696     if (vep->slocks) {
2697         if (pnt)
2698             printf("\tLocking Link list: %lx\n", vep->slocks);
2699     }
2700 #ifdef  AFS33
2701     if (pnt)
2702         printf("\tCallbacks queue prev= %lx next= %lx\n", vep->callsort.prev,
2703                vep->callsort.next);
2704 #endif
2705     printf("\tvlruq.prev=%lx, vlruq.next=%lx\n", vep->vlruq.prev,
2706            vep->vlruq.next);
2707
2708     /* For defect 7733 - Print linkData field for symlinks */
2709     if (pnt) {
2710         if (vep->linkData) {
2711             cloc = (char *)vep->linkData;
2712             printf("\tSymlink information = '");
2713             while (1) {
2714                 kread(kmem, (off_t) cloc, &linkchar, (KDUMP_SIZE_T) 1);
2715                 cloc++;
2716                 if (linkchar == '\0') {
2717                     printf("'\n");
2718                     break;
2719                 } else {
2720                     printf("%c", linkchar);
2721                 }
2722             }
2723         }
2724     }
2725 #ifdef AFS_LINUX_ENV
2726     printf("\tmapcnt=%d\n", vep->mapcnt);
2727 #endif
2728 }
2729
2730
2731 void
2732 print_dcache(int kmem, struct dcache *dcp, struct dcache *dp, int pnt)
2733 {
2734     if (!pnt)
2735         return;
2736     printf("%lx: ", dp);
2737     print_venusfid(" fid", &dcp->f.fid);
2738     printf("refcnt=%d, dflags=%x, mflags=%x, validPos=%d\n", dcp->refCount,
2739            dcp->dflags, dcp->mflags, dcp->validPos);
2740
2741 #ifdef  AFS33
2742     printf("\tf.modtime=%d, f.versNo=%d.%d\n", dcp->f.modTime,
2743            dcp->f.versionNo.high, dcp->f.versionNo.low);
2744 #else
2745     printf("\tf.hvn=%d, f.hcn=%d, f.modtime=%d, f.versNo=%d\n",
2746            dcp->f.hvNextp, dcp->f.hcNextp, dcp->f.modTime, dcp->f.versionNo);
2747 #endif
2748 #ifdef AFS_SGI62_ENV
2749     printf
2750         ("\tf.chunk=%d, f.inode=%" AFS_INT64_FMT ", f.chunkBytes=%d, f.states=%x",
2751          dcp->f.chunk, dcp->f.inode, dcp->f.chunkBytes, dcp->f.states);
2752 #else
2753     printf
2754         ("\tf.chunk=%d, f.inode=%d, f.chunkBytes=%d, f.states=%x\n",
2755          dcp->f.chunk, dcp->f.inode, dcp->f.chunkBytes, dcp->f.states);
2756 #endif
2757     printf("\tlruq.prev=%lx, lruq.next=%lx, index=%d\n",
2758            dcp->lruq.prev, dcp->lruq.next, dcp->index);
2759 }
2760
2761 void
2762 print_bkg(int kmem)
2763 {
2764     off_t symoff;
2765     struct brequest afs_brs[NBRS], ue, *uentry = &ue, *uep;
2766     afs_int32 count, i, j;
2767     short scount;
2768
2769     printf("\n\nPrinting some background daemon info...\n\n");
2770     findsym("afs_brsWaiters", &symoff);
2771     kread(kmem, symoff, (char *)&scount, sizeof scount);
2772     printf("Number of processes waiting for bkg daemon %d\n", scount);
2773     findsym("afs_brsDaemons", &symoff);
2774     kread(kmem, symoff, (char *)&scount, sizeof scount);
2775     printf("Number of free bkg daemons %d\n", scount);
2776     findsym("afs_brs", &symoff);
2777     kread(kmem, symoff, (char *)afs_brs, sizeof afs_brs);
2778     printf("Print the current bkg process table\n");
2779     for (i = 0, j = 0; i < NBRS; i++, j++) {
2780 /*      kread(kmem, (off_t) afs_brs[i], (char *)uentry, sizeof *uentry);*/
2781         uentry = &afs_brs[i];
2782         if (uentry->refCount == 0)
2783             break;
2784         printf
2785             ("[%d] vcache=0x%lx, cred=0x%lx, code=%d, refCount=%d, opcode=%d, flags=%x [%lx, %lx, %lx, %lx]\n",
2786              i, uentry->vc, uentry->cred, uentry->code, uentry->refCount,
2787              uentry->opcode, uentry->flags, uentry->size_parm[0],
2788              uentry->size_parm[1], uentry->ptr_parm[0], uentry->ptr_parm[1]);
2789
2790     }
2791     printf("... found %d active 'afs_brs' entries\n", j);
2792 }
2793
2794 void
2795 print_vlru(int kmem)
2796 {
2797     off_t symoff;
2798     struct vcache Ve, *Ventry = &Ve, *Vep, *tvc;
2799     struct afs_q VLRU, vlru, *vu = &vlru, *tq, *uq;
2800     u_long vlru_addr, l1, l2, l3;
2801     afs_int32 count, i, j = 0, maxvcount, vcount, nvnode;
2802     short scount;
2803
2804     printf("\n\nPrinting vcache VLRU info (oldest first)...\n\n");
2805     findsym("afs_cacheStats", &symoff);
2806     kread(kmem, symoff, (char *)&maxvcount, sizeof maxvcount);
2807     findsym("VLRU", &symoff);
2808     kread(kmem, symoff, (char *)&VLRU, sizeof VLRU);
2809     vlru_addr = (u_long) symoff;
2810     for (tq = VLRU.prev; (u_long) tq != vlru_addr; tq = uq) {
2811         tvc = QTOV(tq);
2812         kread(kmem, (off_t) tq, (char *)vu, sizeof VLRU);
2813         uq = vu->prev;
2814         kread(kmem, (off_t) tvc, (char *)Ventry, sizeof *Ventry);
2815         print_vcache(kmem, Ventry, tvc, 1);
2816         j++;
2817     }
2818     printf("... found %d active vcache entries in the VLRU\n", j);
2819 }
2820
2821 void
2822 print_dlru(int kmem)
2823 {
2824     off_t symoff;
2825     struct dcache Ve, *Ventry = &Ve, *Vep, *tdc;
2826     struct afs_q DLRU, dlru, *vu = &dlru, *tq, *uq;
2827     u_long dlru_addr, l1, l2, l3;
2828     afs_int32 count, i, j = 0, maxvcount, vcount, nvnode;
2829     short scount;
2830
2831     printf("\n\nPrinting vcache DLRU info...\n\n");
2832     findsym("afs_DLRU", &symoff);
2833     kread(kmem, symoff, (char *)&DLRU, sizeof DLRU);
2834     dlru_addr = (u_long) symoff;
2835     for (tq = DLRU.prev; (u_long) tq != dlru_addr; tq = uq) {
2836         tdc = (struct dcache *)tq;
2837         kread(kmem, (off_t) tq, (char *)vu, sizeof DLRU);
2838         uq = vu->prev;
2839         kread(kmem, (off_t) tdc, (char *)Ventry, sizeof *Ventry);
2840         print_dcache(kmem, Ventry, tdc, 1);
2841         j++;
2842     }
2843     printf("... found %d active dcache entries in the DLRU\n\n\n", j);
2844
2845     findsym("afs_freeDSList", &symoff);
2846     kread(kmem, symoff, (char *)&dlru_addr, sizeof dlru_addr);
2847     printf("\tfreeDSList link list starts at 0x%x\n", dlru_addr);
2848     j = 0;
2849     for (tdc = (struct dcache *)dlru_addr; tdc;
2850          tdc = (struct dcache *)Ventry->lruq.next) {
2851         kread(kmem, (off_t) tdc, (char *)Ventry, sizeof *Ventry);
2852         print_dcache(kmem, Ventry, tdc, 1);
2853         j++;
2854 /*      printf("%3d) %x\n", j, tdc);*/
2855     }
2856     printf("... found %d dcache entries in the freeDSList\n", j);
2857 }
2858
2859 int
2860 print_gcpags(int pnt)
2861 {
2862     off_t symoff;
2863     afs_int32 afs_gcpags;
2864     afs_int32 afs_gcpags_procsize;
2865
2866     if (pnt)
2867         printf("\n\nPrinting GCPAGS structures...\n");
2868
2869     findsym("afs_gcpags", &symoff);
2870     kread(kmem, symoff, (char *)&afs_gcpags, sizeof afs_gcpags);
2871
2872     findsym("afs_gcpags_procsize", &symoff);
2873     kread(kmem, symoff, (char *)&afs_gcpags_procsize,
2874           sizeof afs_gcpags_procsize);
2875
2876     printf("afs_gcpags=%d\n", afs_gcpags);
2877     printf("afs_gcpags_procsize=%d\n", afs_gcpags_procsize);
2878
2879     return 0;
2880 }
2881
2882
2883 #ifdef  AFS_AIX_ENV
2884 #include <sys/syspest.h>        /* to define the assert and ASSERT macros       */
2885 #include <sys/timer.h>          /* For the timer related defines                */
2886 #include <sys/intr.h>           /* for the serialization defines                */
2887 #include <sys/malloc.h>         /* for the parameters to xmalloc()              */
2888
2889 struct tos {
2890     struct tos *toprev;         /* previous tos in callout table */
2891     struct tos *tonext;         /* next tos in callout table    */
2892     struct trb *trb;            /* this timer request block     */
2893     afs_int32 type;
2894     long p1;
2895 };
2896
2897 struct callo {
2898     int ncallo;                 /* number of callout table elements     */
2899     struct tos *head;           /* callout table head element           */
2900 };
2901 #endif
2902
2903 void
2904 print_callout(int kmem)
2905 {
2906     off_t symoff;
2907 #ifndef AFS_AIX_ENV
2908     printf("\n\nCallout table doesn't exist for this system\n");
2909 #else
2910     struct callo Co, *Coe = &Co, *Cop;
2911     struct tos To, *Toe = &To, *tos;
2912     struct trb Trb, *Trbe = &Trb, *trb;
2913     int i = 0;
2914
2915
2916     printf("\n\nPrinting callout table info...\n\n");
2917     findsym("afs_callo", &symoff);
2918     kread(kmem, symoff, (char *)&Co, sizeof Co);
2919     printf("Number of callouts %d\n", Co.ncallo);
2920     if (Co.ncallo > 0) {
2921         printf("Count\tType\taddr\tfunc\tdata\n");
2922         for (tos = Co.head; tos != NULL; tos = Toe->tonext) {
2923             i++;
2924             kread(kmem, (off_t) tos, (char *)&To, sizeof To);
2925             kread(kmem, (off_t) Toe->trb, (char *)&Trb, sizeof Trb);
2926             printf("%d\t%d\t%x\t%x\t%x\n", i, Toe->type, Toe->p1, Trbe->tof,
2927                    Trbe->func_data);
2928         }
2929     }
2930 #endif
2931 }
2932
2933 void
2934 print_dnlc(int kmem)
2935 {
2936     struct nc *nameHash[256];
2937
2938 }
2939
2940
2941 void
2942 print_global_locks(int kmem)
2943 {
2944     off_t symoff;
2945     afs_int32 count;
2946     int i;
2947     static struct {
2948         char *name;
2949     } locks[] = { {
2950     "afs_xvcache"}, {
2951     "afs_xdcache"}, {
2952     "afs_xserver"}, {
2953     "afs_xvcb"}, {
2954     "afs_xbrs"}, {
2955     "afs_xcell"}, {
2956     "afs_xconn"}, {
2957     "afs_xuser"}, {
2958     "afs_xvolume"},
2959 #ifndef AFS_AIX_ENV
2960     {
2961     "osi_fsplock"},
2962 #endif
2963     {
2964     "osi_flplock"}, {
2965     "afs_xcbhash"}, {
2966     "afs_xinterface"}, {
2967     0},};
2968
2969
2970     printf("\n\nPrinting afs global locks...\n\n");
2971     for (i = 0; locks[i].name; i++) {
2972         findsym(locks[i].name, &symoff);
2973         kread(kmem, symoff, (char *)&count, sizeof count);
2974         printf("%s = 0x%x\n", locks[i].name, count);
2975     }
2976 }
2977
2978
2979 void
2980 print_global_afs_resource(int kmem)
2981 {
2982     off_t symoff;
2983     char sysname[100];
2984     afs_int32 count;
2985     long addr;
2986
2987     printf("\n\nPrinting some general resource related globals...\n\n");
2988     findsym("afs_setTimeHost", &symoff);
2989     kread(kmem, symoff, (char *)&count, sizeof count);
2990     printf("\tafs_setTimeHost = 0x%x\n", count);
2991     findsym("afs_volCounter", &symoff);
2992     kread(kmem, symoff, (char *)&count, sizeof count);
2993     printf("\tafs_volCounter = 0x%x\n", count);
2994     findsym("afs_cellindex", &symoff);
2995     kread(kmem, symoff, (char *)&count, sizeof count);
2996     printf("\tafs_cellIndex = 0x%x\n", count);
2997     findsym("afs_marinerHost", &symoff);
2998     kread(kmem, symoff, (char *)&count, sizeof count);
2999     printf("\tafs_marinerHost = 0x%x\n", count);
3000     findsym("afs_sysname", &symoff);
3001     kread(kmem, symoff, (char *)&addr, sizeof addr);
3002 #ifdef  AFS_HPUX_ENV
3003     printf("\tafs_sysname = %d\n", addr);
3004 #else
3005     kread(kmem, (off_t) addr, sysname, (KDUMP_SIZE_T) 30);
3006     printf("\tafs_sysname = %s\n", sysname);
3007 #endif
3008 #ifdef AFS_SGI65_ENV
3009     findsym("afs_ipno", &symoff);
3010     kread(kmem, symoff, (char *)&count, sizeof count);
3011     printf("\tCPU BOARD = IP%d\n", count);
3012 #endif
3013 }
3014
3015
3016 void
3017 print_global_afs_cache(int kmem)
3018 {
3019     off_t symoff;
3020     char sysname[100];
3021     afs_int32 count;
3022 #ifdef AFS_SGI62_ENV
3023     ino64_t inode;
3024 #endif
3025 #ifndef AFS32
3026     afs_hyper_t h;
3027 #endif
3028
3029     printf("\n\nPrinting some general cache related globals...\n\n");
3030     findsym("afs_mariner", &symoff);
3031     kread(kmem, symoff, (char *)&count, sizeof count);
3032     printf("\tafs_mariner = 0x%x\n", count);
3033     findsym("freeVCList", &symoff);
3034     kread(kmem, symoff, (char *)&count, sizeof count);
3035     printf("\tafs_freeVCList = 0x%x XXX\n", count);
3036     findsym("afs_freeDCList", &symoff);
3037     kread(kmem, symoff, (char *)&count, sizeof count);
3038     printf("\tfreeDCList = 0x%x\n", count);
3039     findsym("afs_freeDCCount", &symoff);
3040     kread(kmem, symoff, (char *)&count, sizeof count);
3041     printf("\tfreeDCCount = 0x%x (%d)\n", count, count);
3042     findsym("afs_discardDCList", &symoff);
3043     kread(kmem, symoff, (char *)&count, sizeof count);
3044     printf("\tdiscardDCList = 0x%x\n", count);
3045     findsym("afs_discardDCCount", &symoff);
3046     kread(kmem, symoff, (char *)&count, sizeof count);
3047     printf("\tdiscardDCCount = 0x%x (%d)\n", count, count);
3048     findsym("afs_freeDSList", &symoff);
3049     kread(kmem, symoff, (char *)&count, sizeof count);
3050     printf("\tfreeDSList= 0x%x XXXX\n", count);
3051 #ifdef AFS_SGI62_ENV
3052     findsym("cacheInode", &symoff);
3053     kread(kmem, symoff, (char *)&inode, sizeof inode);
3054     printf("\tcacheInode = 0x%llx (%" AFS_INT64_FMT ")\n", inode, inode);
3055     findsym("volumeInode", &symoff);
3056     kread(kmem, symoff, (char *)&inode, sizeof inode);
3057     printf("\tvolumeInode = 0x%llx (%" AFS_INT64_FMT ")\n", inode, inode);
3058 #else
3059     findsym("cacheInode", &symoff);
3060     kread(kmem, symoff, (char *)&count, sizeof count);
3061     printf("\tcacheInode = 0x%x (%d)\n", count, count);
3062     findsym("volumeInode", &symoff);
3063     kread(kmem, symoff, (char *)&count, sizeof count);
3064     printf("\tvolumeInode = 0x%x (%d)\n", count, count);
3065 #endif
3066     findsym("cacheDiskType", &symoff);
3067     kread(kmem, symoff, (char *)&count, sizeof count);
3068     printf("\tcacheDiskType = 0x%x (%d)\n", count, count);
3069 #ifndef AFS32
3070     findsym("afs_indexCounter", &symoff);
3071     kread(kmem, symoff, (char *)&h, sizeof(struct afs_hyper_t));
3072     printf("\tafs_indexCounter = 0x%X.%X (%d.%d)\n", h.high, h.low, h.high,
3073            h.low);
3074 #endif
3075     findsym("afs_cacheFiles", &symoff);
3076     kread(kmem, symoff, (char *)&count, sizeof count);
3077     printf("\tafs_cacheFiles = 0x%x (%d)\n", count, count);
3078     findsym("afs_cacheBlocks", &symoff);
3079     kread(kmem, symoff, (char *)&count, sizeof count);
3080     printf("\tafs_cacheBlocks = 0x%x (%d)\n", count, count);
3081     findsym("afs_cacheStats", &symoff);
3082     kread(kmem, symoff, (char *)&count, sizeof count);
3083     printf("\tafs_cacheStats = 0x%x (%d)\n", count, count);
3084     findsym("afs_blocksUsed", &symoff);
3085     kread(kmem, symoff, (char *)&count, sizeof count);
3086     printf("\tafs_blocksUsed = 0x%x (%d)\n", count, count);
3087     findsym("afs_blocksDiscarded", &symoff);
3088     kread(kmem, symoff, (char *)&count, sizeof count);
3089     printf("\tafs_blocksDiscarded = 0x%x (%d)\n", count, count);
3090     findsym("afs_fsfragsize", &symoff);
3091     kread(kmem, symoff, (char *)&count, sizeof count);
3092     printf("\tafs_fsfragsize = 0x%x\n", count);
3093     findsym("afs_WaitForCacheDrain", &symoff);
3094     kread(kmem, symoff, (char *)&count, sizeof count);
3095     printf("\tafs_WaitForCacheDrain = 0x%x (%d)\n", count, count);
3096     findsym("afs_CacheTooFull", &symoff);
3097     kread(kmem, symoff, (char *)&count, sizeof count);
3098     printf("\tafs_CacheTooFull = 0x%x (%d)\n", count, count);
3099
3100
3101     if (findsym("pagCounter", &symoff)) {
3102         kread(kmem, symoff, (char *)&count, sizeof count);
3103         printf("\tpagCounter = 0x%x (%d)\n", count, count);
3104     } else {
3105         printf("Ignoring pagCounter\n");
3106     }
3107 }
3108
3109
3110 void
3111 print_rxstats(int kmem)
3112 {
3113     off_t symoff;
3114     char sysname[100];
3115     afs_int32 count, i;
3116     struct rx_statistics rx_stats;
3117
3118     printf("\n\nPrinting some general RX stats...\n\n");
3119     findsym("rx_stats", &symoff);
3120     kread(kmem, symoff, (char *)&rx_stats, sizeof rx_stats);
3121     printf("\t\tpacketRequests = %d\n", rx_stats.packetRequests);
3122     printf("\t\tnoPackets[%d] = %d\n", RX_PACKET_CLASS_RECEIVE,
3123            rx_stats.receivePktAllocFailures);
3124     printf("\t\tnoPackets[%d] = %d\n", RX_PACKET_CLASS_SEND,
3125            rx_stats.sendPktAllocFailures);
3126     printf("\t\tnoPackets[%d] = %d\n", RX_PACKET_CLASS_SPECIAL,
3127            rx_stats.specialPktAllocFailures);
3128     printf("\t\tnoPackets[%d] = %d\n", RX_PACKET_CLASS_RECV_CBUF,
3129            rx_stats.receiveCbufPktAllocFailures);
3130     printf("\t\tnoPackets[%d] = %d\n", RX_PACKET_CLASS_SEND_CBUF,
3131            rx_stats.sendCbufPktAllocFailures);
3132     printf("\t\tsocketGreedy = %d\n", rx_stats.socketGreedy);
3133     printf("\t\tbogusPacketOnRead = %d\n", rx_stats.bogusPacketOnRead);
3134     printf("\t\tbogusHost = %d\n", rx_stats.bogusHost);
3135     printf("\t\tnoPacketOnRead = %d\n", rx_stats.noPacketOnRead);
3136     printf("\t\tnoPacketBuffersOnRead = %d\n",
3137            rx_stats.noPacketBuffersOnRead);
3138     printf("\t\tselects = %d\n", rx_stats.selects);
3139     printf("\t\tsendSelects = %d\n", rx_stats.sendSelects);
3140     for (i = 0; i < RX_N_PACKET_TYPES; i++)
3141         printf("\t\tpacketsRead[%d] = %d\n", i, rx_stats.packetsRead[i]);
3142     printf("\t\tdataPacketsRead = %d\n", rx_stats.dataPacketsRead);
3143     printf("\t\tackPacketsRead = %d\n", rx_stats.ackPacketsRead);
3144     printf("\t\tdupPacketsRead = %d\n", rx_stats.dupPacketsRead);
3145     printf("\t\tspuriousPacketsRead = %d\n", rx_stats.spuriousPacketsRead);
3146     for (i = 0; i < RX_N_PACKET_TYPES; i++)
3147         printf("\t\tpacketsSent[%d] = %d\n", i, rx_stats.packetsSent[i]);
3148     printf("\t\tackPacketsSent = %d\n", rx_stats.ackPacketsSent);
3149     printf("\t\tpingPacketsSent = %d\n", rx_stats.pingPacketsSent);
3150     printf("\t\tabortPacketsSent = %d\n", rx_stats.abortPacketsSent);
3151     printf("\t\tbusyPacketsSent = %d\n", rx_stats.busyPacketsSent);
3152     printf("\t\tdataPacketsSent = %d\n", rx_stats.dataPacketsSent);
3153     printf("\t\tdataPacketsReSent = %d\n", rx_stats.dataPacketsReSent);
3154     printf("\t\tdataPacketsPushed = %d\n", rx_stats.dataPacketsPushed);
3155     printf("\t\tignoreAckedPacket = %d\n", rx_stats.ignoreAckedPacket);
3156     printf("\t\ttotalRtt = %d sec, %d usec\n", rx_stats.totalRtt.sec,
3157            rx_stats.totalRtt.usec);
3158     printf("\t\tminRtt = %d sec, %d usec\n", rx_stats.minRtt.sec,
3159            rx_stats.minRtt.usec);
3160     printf("\t\tmaxRtt = %d sec, %d usec\n", rx_stats.maxRtt.sec,
3161            rx_stats.maxRtt.usec);
3162     printf("\t\tnRttSamples = %d\n", rx_stats.nRttSamples);
3163     printf("\t\tnServerConns = %d\n", rx_stats.nServerConns);
3164     printf("\t\tnClientConns = %d\n", rx_stats.nClientConns);
3165     printf("\t\tnPeerStructs = %d\n", rx_stats.nPeerStructs);
3166     printf("\t\tnCallStructs = %d\n", rx_stats.nCallStructs);
3167     printf("\t\tnFreeCallStructs = %d\n", rx_stats.nFreeCallStructs);
3168     printf("\t\tnetSendFailures  = %d\n", rx_stats.netSendFailures);
3169     printf("\t\tfatalErrors      = %d\n", rx_stats.fatalErrors);
3170 }
3171
3172
3173 void
3174 print_rx(int kmem)
3175 {
3176     off_t symoff;
3177     char sysname[100], c;
3178     afs_int32 count, i, ar[100];
3179     short sm;
3180     struct rx_statistics rx_stats;
3181
3182     printf("\n\nPrinting some RX globals...\n\n");
3183     findsym("rx_extraQuota", &symoff);
3184     kread(kmem, symoff, (char *)&count, sizeof count);
3185     printf("\trx_extraQuota = %d\n", count);
3186     findsym("rx_extraPackets", &symoff);
3187     kread(kmem, symoff, (char *)&count, sizeof count);
3188     printf("\trx_extraPackets = %d\n", count);
3189     findsym("rx_stackSize", &symoff);
3190     kread(kmem, symoff, (char *)&count, sizeof count);
3191     printf("\trx_stackSize = %d\n", count);
3192     findsym("rx_connDeadTime", &symoff);
3193     kread(kmem, symoff, (char *)&count, sizeof count);
3194
3195     printf("\trx_connDeadTime = %d\n", count);
3196     findsym("rx_idleConnectionTime", &symoff);
3197     kread(kmem, symoff, (char *)&count, sizeof count);
3198
3199     printf("\trx_idleConnectionTime = %d\n", count);
3200
3201     findsym("rx_idlePeerTime", &symoff);
3202     kread(kmem, symoff, (char *)&count, sizeof count);
3203     printf("\trx_idlePeerTime = %d\n", count);
3204
3205     findsym("rx_initSendWindow", &symoff);
3206     kread(kmem, symoff, (char *)&count, sizeof count);
3207     printf("\trx_initSendWindow = %d\n", count);
3208
3209     findsym("rxi_nSendFrags", &symoff);
3210     kread(kmem, symoff, (char *)&count, sizeof count);
3211     printf("\trxi_nSendFrags = %d\n", count);
3212
3213     findsym("rx_nPackets", &symoff);
3214     kread(kmem, symoff, (char *)&count, sizeof count);
3215
3216     printf("\trx_nPackets = %d\n", count);
3217     findsym("rx_nFreePackets", &symoff);
3218     kread(kmem, symoff, (char *)&count, sizeof count);
3219
3220     printf("\trx_nFreePackets = %d\n", count);
3221     findsym("rx_socket", &symoff);
3222     kread(kmem, symoff, (char *)&count, sizeof count);
3223
3224     printf("\trx_socket = 0x%x\n", count);
3225     findsym("rx_port", &symoff);
3226     kread(kmem, symoff, (char *)&sm, sizeof sm);
3227
3228     printf("\trx_Port = %d\n", sm);
3229     findsym("rx_packetQuota", &symoff);
3230     kread(kmem, symoff, (char *)ar, sizeof ar);
3231
3232     for (i = 0; i < RX_N_PACKET_CLASSES; i++)
3233         printf("\trx_packetQuota[%d] = %d\n", i, ar[i]);
3234     findsym("rx_nextCid", &symoff);
3235     kread(kmem, symoff, (char *)&count, sizeof count);
3236
3237     printf("\trx_nextCid = 0x%x\n", count);
3238     findsym("rx_epoch", &symoff);
3239     kread(kmem, symoff, (char *)&count, sizeof count);
3240
3241     printf("\trx_epoch = 0u%u\n", count);
3242     findsym("rx_waitingForPackets", &symoff);
3243     kread(kmem, symoff, (char *)&c, sizeof(c));
3244
3245     printf("\trx_waitingForPackets = %x\n", (int)c);
3246     findsym("rxi_nCalls", &symoff);
3247     kread(kmem, symoff, (char *)&count, sizeof count);
3248
3249     printf("\trxi_nCalls = %d\n", count);
3250     findsym("rxi_dataQuota", &symoff);
3251     kread(kmem, symoff, (char *)&count, sizeof count);
3252
3253     printf("\trxi_dataQuota = %d\n", count);
3254 #ifdef  AFS_AIX_ENV
3255     if (findsym("rxi_Alloccnt", &symoff)) {
3256         kread(kmem, symoff, (char *)&count, sizeof count);
3257         printf("\trxi_Alloccnt = %d\n", count);
3258     }
3259
3260     if (findsym("rxi_Allocsize", &symoff)) {
3261         kread(kmem, symoff, (char *)&count, sizeof count);
3262         printf("\trxi_Allocsize = %d\n", count);
3263     }
3264 #endif
3265     findsym("rxi_availProcs", &symoff);
3266     kread(kmem, symoff, (char *)&count, sizeof count);
3267
3268     printf("\trxi_availProcs = %d\n", count);
3269     findsym("rxi_totalMin", &symoff);
3270     kread(kmem, symoff, (char *)&count, sizeof count);
3271
3272     printf("\trxi_totalMin = %d\n", count);
3273     findsym("rxi_minDeficit", &symoff);
3274     kread(kmem, symoff, (char *)&count, sizeof count);
3275
3276     printf("\trxi_minDeficit = %d\n", count);
3277     print_services(kmem);
3278 #ifdef KDUMP_RX_LOCK
3279     if (use_rx_lock) {
3280         print_peertable_lock(kmem);
3281         print_conntable_lock(kmem);
3282         print_calltable_lock(kmem);
3283     } else {
3284         print_peertable(kmem);
3285         print_conntable(kmem);
3286         print_calltable(kmem);
3287     }
3288 #else
3289     print_peertable(kmem);
3290     print_conntable(kmem);
3291     print_calltable(kmem);
3292 #endif
3293     print_eventtable(kmem);
3294     print_rxstats(kmem);
3295 }
3296
3297
3298 void
3299 print_services(afs_int32 kmem)
3300 {
3301     off_t symoff;
3302     struct rx_service *rx_services[RX_MAX_SERVICES], se, *sentry = &se, *sep;
3303     char sysname[100];
3304     afs_int32 count, i, j;
3305
3306     findsym("rx_services", &symoff);
3307     kread(kmem, symoff, (char *)rx_services, RX_MAX_SERVICES * sizeof(long));
3308
3309     printf("\n\nPrinting all 'rx_services' structures...\n");
3310     for (i = 0, j = 0; i < RX_MAX_SERVICES; i++) {
3311         if (rx_services[i]) {
3312             j++;
3313             kread(kmem, (off_t) rx_services[i], (char *)sentry,
3314                   sizeof *sentry);
3315             kread(kmem, (off_t) sentry->serviceName, sysname,
3316                   (KDUMP_SIZE_T) 40);
3317             printf
3318                 ("\t%lx: serviceId=%d, port=%d, serviceName=%s, socket=0x%x\n",
3319                  rx_services[i], sentry->serviceId, sentry->servicePort,
3320                  sysname, sentry->socket);
3321             printf
3322                 ("\t\tnSecObj=%d, nReqRunning=%d, maxProcs=%d, minProcs=%d, connDeadTime=%d, idleDeadTime=%d\n",
3323                  sentry->nSecurityObjects, sentry->nRequestsRunning,
3324                  sentry->maxProcs, sentry->minProcs, sentry->connDeadTime,
3325                  sentry->idleDeadTime);
3326         }
3327     }
3328     printf("... found %d 'rx_services' entries in the table\n", j);
3329 }
3330
3331
3332 #ifdef KDUMP_RX_LOCK
3333 void
3334 print_peertable_lock(afs_int32 kmem)
3335 {
3336     off_t symoff;
3337     struct rx_peer_rx_lock *rx_peerTable[256], se, *sentry = &se, *sep;
3338     long count, i, j;
3339
3340     findsym("rx_peerHashTable", &symoff);
3341     kread(kmem, symoff, (char *)&count, sizeof(long));
3342     if (!count) {
3343         printf("No 'rx_peer' structures found.\n");
3344         return;
3345     }
3346
3347     kread(kmem, count, (char *)rx_peerTable, 256 * sizeof(long));
3348     printf("\n\nPrinting all 'rx_peer' structures...\n");
3349     for (i = 0, j = 0; i < 256; i++) {
3350         for (sep = rx_peerTable[i]; sep; sep = sentry->next, j++) {
3351             kread(kmem, (off_t) sep, (char *)sentry, sizeof *sentry);
3352             printf("\t%lx: next=0x%lx, host=0x%x, ", sep, sentry->next,
3353                    sentry->host);
3354             printf("ifMTU=%d, natMTU=%d, maxMTU=%d\n", sentry->ifMTU,
3355                    sentry->natMTU, sentry->maxMTU);
3356             printf("\t\trtt=%d:%d, timeout(%d:%d), nSent=%d, reSends=%d\n",
3357                    sentry->rtt, sentry->rtt_dev, sentry->timeout.sec,
3358                    sentry->timeout.usec, sentry->nSent, sentry->reSends);
3359             printf("\t\trefCount=%d, port=%d, idleWhen=0x%x\n",
3360                    sentry->refCount, sentry->port, sentry->idleWhen);
3361             printf
3362                 ("\t\tCongestionQueue (0x%x:0x%x), inPacketSkew=0x%x, outPacketSkew=0x%x\n",
3363                  sentry->congestionQueue.prev, sentry->congestionQueue.next,
3364                  sentry->inPacketSkew, sentry->outPacketSkew);
3365             printf("\t\tpeer_lock=%d\n", sentry->peer_lock);
3366         }
3367     }
3368     printf("... found %d 'rx_peer' entries in the table\n", j);
3369 }
3370
3371 #endif /* KDUMP_RX_LOCK */
3372 void
3373 print_peertable(afs_int32 kmem)
3374 {
3375     off_t symoff;
3376     struct rx_peer *rx_peerTable[256], se, *sentry = &se, *sep;
3377     long count, i, j;
3378
3379     findsym("rx_peerHashTable", &symoff);
3380     kread(kmem, symoff, (char *)&count, sizeof(long));
3381
3382     kread(kmem, count, (char *)rx_peerTable, 256 * sizeof(long));
3383     printf("\n\nPrinting all 'rx_peer' structures...\n");
3384     for (i = 0, j = 0; i < 256; i++) {
3385         for (sep = rx_peerTable[i]; sep; sep = sentry->next, j++) {
3386             kread(kmem, (off_t) sep, (char *)sentry, sizeof *sentry);
3387             printf("\t%lx: next=0x%lx, host=0x%x, ", sep, sentry->next,
3388                    sentry->host);
3389             printf("ifMTU=%d, natMTU=%d, maxMTU=%d\n", sentry->ifMTU,
3390                    sentry->natMTU, sentry->maxMTU);
3391             printf("\t\trtt=%d:%d, timeout(%d:%d), nSent=%d, reSends=%d\n",
3392                    sentry->rtt, sentry->rtt_dev, sentry->timeout.sec,
3393                    sentry->timeout.usec, sentry->nSent, sentry->reSends);
3394             printf("\t\trefCount=%d, port=%d, idleWhen=0x%x\n",
3395                    sentry->refCount, sentry->port, sentry->idleWhen);
3396             printf
3397                 ("\t\tCongestionQueue (0x%x:0x%x), inPacketSkew=0x%x, outPacketSkew=0x%x\n",
3398                  sentry->congestionQueue.prev, sentry->congestionQueue.next,
3399                  sentry->inPacketSkew, sentry->outPacketSkew);
3400 #ifdef RX_ENABLE_LOCKS
3401             printf("\t\tpeer_lock=%d\n", sentry->peer_lock);
3402 #endif /* RX_ENABLE_LOCKS */
3403         }
3404     }
3405     printf("... found %d 'rx_peer' entries in the table\n", j);
3406 }
3407
3408
3409 #ifdef KDUMP_RX_LOCK
3410 void
3411 print_conntable_lock(afs_int32 kmem)
3412 {
3413     off_t symoff;
3414     struct rx_connection_rx_lock *rx_connTable[256], se, *sentry = &se;
3415     struct rx_connection_rx_lock *sep;
3416     long count, i, j;
3417
3418     findsym("rx_connHashTable", &symoff);
3419     kread(kmem, symoff, (char *)&count, sizeof(long));
3420     if (!count) {
3421         printf("No 'rx_connection' structures found.\n");
3422         return;
3423     }
3424
3425     kread(kmem, count, (char *)rx_connTable, 256 * sizeof(long));
3426     printf("\n\nPrinting all 'rx_connection' structures...\n");
3427     for (i = 0, j = 0; i < 256; i++) {
3428         for (sep = rx_connTable[i]; sep; sep = sentry->next, j++) {
3429             kread(kmem, (off_t) sep, (char *)sentry, sizeof *sentry);
3430             printf
3431                 ("\t%lx: next=0x%lx, peer=0x%lx, epoch=0x%x, cid=0x%x, ackRate=%d\n",
3432                  sep, se.next, se.peer, se.epoch, se.cid, se.ackRate);
3433             printf("\t\tcall[%lx=%d, %lx=%d, %lx=%d, %lx=%d]\n", se.call[0],
3434                    se.callNumber[0], se.call[1], se.callNumber[1], se.call[2],
3435                    se.callNumber[2], se.call[3], se.callNumber[3]);
3436             printf
3437                 ("\t\ttimeout=%d, flags=0x%x, type=0x%x, serviceId=%d, service=0x%lx, refCount=%d\n",
3438                  se.timeout, se.flags, se.type, se.serviceId, se.service,
3439                  se.refCount);
3440             printf
3441                 ("\t\tserial=%d, lastSerial=%d, secsUntilDead=%d, secsUntilPing=%d, secIndex=%d\n",
3442                  se.serial, se.lastSerial, se.secondsUntilDead,
3443                  se.secondsUntilPing, se.securityIndex);
3444             printf
3445                 ("\t\terror=%d, secObject=0x%lx, secData=0x%lx, secHeaderSize=%d, secmaxTrailerSize=%d\n",
3446                  se.error, se.securityObject, se.securityData,
3447                  se.securityHeaderSize, se.securityMaxTrailerSize);
3448             printf
3449                 ("\t\tchallEvent=0x%lx, lastSendTime=0x%x, maxSerial=%d, hardDeadTime=%d\n",
3450                  se.challengeEvent, se.lastSendTime, se.maxSerial,
3451                  se.hardDeadTime);
3452             if (se.flags & RX_CONN_MAKECALL_WAITING)
3453                 printf
3454                     ("\t\t***** Conn in RX_CONN_MAKECALL_WAITING state *****\n");
3455             printf
3456                 ("\t\tcall_lock=%d, call_cv=%d, data_lock=%d, refCount=%d\n",
3457                  se.conn_call_lock, se.conn_call_cv, se.conn_data_lock,
3458                  se.refCount);
3459         }
3460     }
3461     printf("... found %d 'rx_connection' entries in the table\n", j);
3462 }
3463 #endif /* KDUMP_RX_LOCK */
3464
3465 void
3466 print_conntable(afs_int32 kmem)
3467 {
3468     off_t symoff;
3469     struct rx_connection *rx_connTable[256], se, *sentry = &se, *sep;
3470     long count, i, j;
3471
3472     findsym("rx_connHashTable", &symoff);
3473     kread(kmem, symoff, (char *)&count, sizeof(long));
3474
3475     kread(kmem, count, (char *)rx_connTable, 256 * sizeof(long));
3476     printf("\n\nPrinting all 'rx_connection' structures...\n");
3477     for (i = 0, j = 0; i < 256; i++) {
3478         for (sep = rx_connTable[i]; sep; sep = sentry->next, j++) {
3479             kread(kmem, (off_t) sep, (char *)sentry, sizeof *sentry);
3480             printf
3481                 ("\t%lx: next=0x%lx, peer=0x%lx, epoch=0x%x, cid=0x%x, ackRate=%d\n",
3482                  sep, se.next, se.peer, se.epoch, se.cid, se.ackRate);
3483             printf("\t\tcall[%x=%d, %x=%d, %x=%d, %x=%d]\n", se.call[0],
3484                    se.callNumber[0], se.call[1], se.callNumber[1], se.call[2],
3485                    se.callNumber[2], se.call[3], se.callNumber[3]);
3486             printf
3487                 ("\t\ttimeout=%d, flags=0x%x, type=0x%x, serviceId=%d, service=0x%lx, refCount=%d\n",
3488                  se.timeout, se.flags, se.type, se.serviceId, se.service,
3489                  se.refCount);
3490             printf
3491                 ("\t\tserial=%d, lastSerial=%d, secsUntilDead=%d, secsUntilPing=%d, secIndex=%d\n",
3492                  se.serial, se.lastSerial, se.secondsUntilDead,
3493                  se.secondsUntilPing, se.securityIndex);
3494             printf
3495                 ("\t\terror=%d, secObject=0x%lx, secData=0x%lx, secHeaderSize=%d, secmaxTrailerSize=%d\n",
3496                  se.error, se.securityObject, se.securityData,
3497                  se.securityHeaderSize, se.securityMaxTrailerSize);
3498             printf
3499                 ("\t\tchallEvent=0x%lx, lastSendTime=0x%x, maxSerial=%d, hardDeadTime=%d\n",
3500                  se.challengeEvent, se.lastSendTime, se.maxSerial,
3501                  se.hardDeadTime);
3502             if (se.flags & RX_CONN_MAKECALL_WAITING)
3503                 printf
3504                     ("\t\t***** Conn in RX_CONN_MAKECALL_WAITING state *****\n");
3505 #ifdef RX_ENABLE_LOCKS
3506             printf
3507                 ("\t\tcall_lock=%d, call_cv=%d, data_lock=%d, refCount=%d\n",
3508                  se.conn_call_lock, se.conn_call_cv, se.conn_data_lock,
3509                  se.refCount);
3510 #endif /* RX_ENABLE_LOCKS */
3511         }
3512     }
3513     printf("... found %d 'rx_connection' entries in the table\n", j);
3514 }
3515
3516
3517 #ifdef KDUMP_RX_LOCK
3518 void
3519 print_calltable_lock(afs_int32 kmem)
3520 {
3521     off_t symoff;
3522     struct rx_connection_rx_lock *rx_connTable[256], se;
3523     struct rx_connection_rx_lock *sentry = &se;
3524     struct rx_connection_rx_lock *sep;
3525     long count, i, j, k;
3526
3527     findsym("rx_connHashTable", &symoff);
3528     kread(kmem, symoff, (char *)&count, sizeof(long));
3529     if (!count) {
3530         printf("No 'rx_call' structures found.\n");
3531         return;
3532     }
3533
3534     kread(kmem, count, (char *)rx_connTable, 256 * sizeof(long));
3535     printf("\n\nPrinting all active 'rx_call' structures...\n");
3536     for (i = 0, j = 0; i < 256; i++) {
3537         for (sep = rx_connTable[i]; sep; sep = se.next) {
3538             kread(kmem, (off_t) sep, (char *)sentry, sizeof *sentry);
3539             for (k = 0; k < RX_MAXCALLS; k++) {
3540                 struct rx_call_rx_lock ce, *centry = &ce;
3541                 struct rx_call_rx_lock *call = se.call[k];
3542                 if (call) {
3543                     j++;
3544                     kread(kmem, (off_t) call, (char *)centry, sizeof *centry);
3545                     printf
3546                         ("\t%lx: conn=0x%lx, qiheader(0x%lx:0x%lx), tq(0x%lx:0x%lx), rq(0x%lx:0x%lx)\n",
3547                          call, centry->conn, centry->queue_item_header.prev,
3548                          centry->queue_item_header.next, centry->tq.prev,
3549                          centry->tq.next, centry->rq.prev, centry->rq.next);
3550                     printf
3551                         ("\t\t: curvec=%d, curpos=%d, nLeft=%d, nFree=%d, currPacket=0x%lx, callNumber=0x%x\n",
3552                          centry->curvec, centry->curpos, centry->nLeft,
3553                          centry->nFree, centry->currentPacket,
3554                          centry->callNumber);
3555                     printf
3556                         ("\t\t: channel=%d, state=0x%x, mode=0x%x, flags=0x%x, localStatus=0x%x, remStatus=0x%x\n",
3557                          centry->channel, centry->state, centry->mode,
3558                          centry->flags, centry->localStatus,
3559                          centry->remoteStatus);
3560                     printf
3561                         ("\t\t: error=%d, timeout=0x%x, rnext=0x%x, rprev=0x%x, rwind=0x%x, tfirst=0x%x, tnext=0x%x\n",
3562                          centry->error, centry->timeout, centry->rnext,
3563                          centry->rprev, centry->rwind, centry->tfirst,
3564                          centry->tnext);
3565                     printf
3566                         ("\t\t: twind=%d, resendEvent=0x%lx, timeoutEvent=0x%lx, keepAliveEvent=0x%lx, delayedAckEvent=0x%lx\n",
3567                          centry->twind, centry->resendEvent,
3568                          centry->timeoutEvent, centry->keepAliveEvent,
3569                          centry->delayedAckEvent);
3570                     printf
3571                         ("\t\t: lastSendTime=0x%x, lastReceiveTime=0x%x, lastAcked=0x%x, startTime=0x%x, startWait=0x%x\n",
3572                          centry->lastSendTime, centry->lastReceiveTime,
3573                          centry->lastAcked, centry->startTime,
3574                          centry->startWait);
3575                     if (centry->flags & RX_CALL_WAIT_PROC)
3576                         printf
3577                             ("\t\t******** Call in RX_CALL_WAIT_PROC state **********\n");
3578                     if (centry->flags & RX_CALL_WAIT_WINDOW_ALLOC)
3579                         printf
3580                             ("\t\t******** Call in RX_CALL_WAIT_WINDOW_ALLOC state **********\n");
3581                     if (centry->flags & RX_CALL_READER_WAIT)
3582                         printf
3583                             ("\t\t******** Conn in RX_CALL_READER_WAIT state **********\n");
3584                     if (centry->flags & RX_CALL_WAIT_PACKETS)
3585                         printf
3586                             ("\t\t******** Conn in RX_CALL_WAIT_PACKETS state **********\n");
3587                     printf
3588                         ("\t\t: lock=0x%x, cv_twind=0x%x, cv_rq=0x%x, refCount=%d\n",
3589                          centry->lock, centry->cv_twind, centry->cv_rq,
3590                          centry->refCount);
3591                     printf("\t\t: MTU=%d\n", centry->MTU);
3592                 }
3593             }
3594         }
3595     }
3596     printf("... found %d 'rx_call' entries in the table\n", j);
3597 }
3598 #endif /* KDUMP_RX_LOCK */
3599
3600 void
3601 print_calltable(afs_int32 kmem)
3602 {
3603     off_t symoff;
3604     struct rx_connection *rx_connTable[256], se, *sentry = &se, *sep;
3605     long count, i, j, k;
3606
3607     findsym("rx_connHashTable", &symoff);
3608     kread(kmem, symoff, (char *)&count, sizeof(long));
3609
3610     kread(kmem, count, (char *)rx_connTable, 256 * sizeof(long));
3611     printf("\n\nPrinting all active 'rx_call' structures...\n");
3612     for (i = 0, j = 0; i < 256; i++) {
3613         for (sep = rx_connTable[i]; sep; sep = se.next) {
3614             kread(kmem, (off_t) sep, (char *)sentry, sizeof *sentry);
3615             for (k = 0; k < RX_MAXCALLS; k++) {
3616                 struct rx_call ce, *centry = &ce, *call = se.call[k];
3617                 if (call) {
3618                     j++;
3619                     kread(kmem, (off_t) call, (char *)centry, sizeof *centry);
3620                     printf
3621                         ("\t%lx: conn=0x%lx, qiheader(0x%lx:0x%lx), tq(0x%lx:0x%lx), rq(0x%lx:0x%lx)\n",
3622                          call, centry->conn, centry->queue_item_header.prev,
3623                          centry->queue_item_header.next, centry->tq.prev,
3624                          centry->tq.next, centry->rq.prev, centry->rq.next);
3625                     printf
3626                         ("\t\t: curvec=%d, curpos=%d, nLeft=%d, nFree=%d, currPacket=0x%lx, callNumber=0x%x\n",
3627                          centry->curvec, centry->curpos, centry->nLeft,
3628                          centry->nFree, centry->currentPacket,
3629                          centry->callNumber);
3630                     printf
3631                         ("\t\t: channel=%d, state=0x%x, mode=0x%x, flags=0x%x, localStatus=0x%x, remStatus=0x%x\n",
3632                          centry->channel, centry->state, centry->mode,
3633                          centry->flags, centry->localStatus,
3634                          centry->remoteStatus);
3635                     printf
3636                         ("\t\t: error=%d, timeout=0x%x, rnext=0x%x, rprev=0x%x, rwind=0x%x, tfirst=0x%x, tnext=0x%x\n",
3637                          centry->error, centry->timeout, centry->rnext,
3638                          centry->rprev, centry->rwind, centry->tfirst,
3639                          centry->tnext);
3640                     printf
3641                         ("\t\t: twind=%d, resendEvent=0x%lx, timeoutEvent=0x%lx, keepAliveEvent=0x%lx, delayedAckEvent=0x%lx\n",
3642                          centry->twind, centry->resendEvent,
3643                          centry->timeoutEvent, centry->keepAliveEvent,
3644                          centry->delayedAckEvent);
3645                     printf
3646                         ("\t\t: lastSendTime=0x%x, lastReceiveTime=0x%x, lastAcked=0x%x, startTime=0x%x, startWait=0x%x\n",
3647                          centry->lastSendTime, centry->lastReceiveTime,
3648                          centry->lastAcked, centry->startTime,
3649                          centry->startWait);
3650                     if (centry->flags & RX_CALL_WAIT_PROC)
3651                         printf
3652                             ("\t\t******** Call in RX_CALL_WAIT_PROC state **********\n");
3653                     if (centry->flags & RX_CALL_WAIT_WINDOW_ALLOC)
3654                         printf
3655                             ("\t\t******** Call in RX_CALL_WAIT_WINDOW_ALLOC state **********\n");
3656                     if (centry->flags & RX_CALL_READER_WAIT)
3657                         printf
3658                             ("\t\t******** Conn in RX_CALL_READER_WAIT state **********\n");
3659                     if (centry->flags & RX_CALL_WAIT_PACKETS)
3660                         printf
3661                             ("\t\t******** Conn in RX_CALL_WAIT_PACKETS state **********\n");
3662 #ifdef RX_ENABLE_LOCKS
3663                     printf
3664                         ("\t\t: lock=0x%x, cv_twind=0x%x, cv_rq=0x%x, refCount=%d\n",
3665                          centry->lock, centry->cv_twind, centry->cv_rq,
3666                          centry->refCount);
3667 #endif /* RX_ENABLE_LOCKS */
3668                     printf("\t\t: MTU=%d\n", centry->MTU);
3669                 }
3670             }
3671         }
3672     }
3673     printf("... found %d 'rx_call' entries in the table\n", j);
3674 }
3675
3676 void
3677 print_eventtable(afs_int32 kmem)
3678 {
3679     off_t symoff;
3680     struct rx_queue epq;
3681     struct rx_queue evq;
3682     char *epend, *evend;
3683     afs_int32 count, i, j = 0, k = 0;
3684
3685 #if ! defined(AFS_HPUX_ENV) && ! defined(AFS_AIX_ENV)
3686     findsym("rxevent_nFree", &symoff);
3687     kread(kmem, symoff, (char *)&count, sizeof(afs_int32));
3688     printf("\n\n\trxevent_nFree = %d\n", count);
3689
3690     findsym("rxevent_nPosted", &symoff);
3691     kread(kmem, symoff, (char *)&count, sizeof(afs_int32));
3692     printf("\trxevent_nPosted = %d\n", count);
3693 #endif
3694 }
3695
3696 /*
3697  * print_upDownStats
3698  *
3699  * Print the up/downtime stats for the given class of server records
3700  * provided.
3701  */
3702 void
3703 print_upDownStats(struct afs_stats_SrvUpDownInfo *a_upDownP)
3704 {                               /*print_upDownStats */
3705
3706     /*
3707      * First, print the simple values.
3708      */
3709     printf("\t\t%10d numTtlRecords\n", a_upDownP->numTtlRecords);
3710     printf("\t\t%10d numUpRecords\n", a_upDownP->numUpRecords);
3711     printf("\t\t%10d numDownRecords\n", a_upDownP->numDownRecords);
3712     printf("\t\t%10d sumOfRecordAges\n", a_upDownP->sumOfRecordAges);
3713     printf("\t\t%10d ageOfYoungestRecord\n", a_upDownP->ageOfYoungestRecord);
3714     printf("\t\t%10d ageOfOldestRecord\n", a_upDownP->ageOfOldestRecord);
3715     printf("\t\t%10d numDowntimeIncidents\n",
3716            a_upDownP->numDowntimeIncidents);
3717     printf("\t\t%10d numRecordsNeverDown\n", a_upDownP->numRecordsNeverDown);
3718     printf("\t\t%10d maxDowntimesInARecord\n",
3719            a_upDownP->maxDowntimesInARecord);
3720     printf("\t\t%10d sumOfDowntimes\n", a_upDownP->sumOfDowntimes);
3721     printf("\t\t%10d shortestDowntime\n", a_upDownP->shortestDowntime);
3722     printf("\t\t%10d longestDowntime\n", a_upDownP->longestDowntime);
3723
3724     /*
3725      * Now, print the array values.
3726      */
3727     printf("\t\tDowntime duration distribution:\n");
3728     printf("\t\t\t%8d: 0 min .. 10 min\n", a_upDownP->downDurations[0]);
3729     printf("\t\t\t%8d: 10 min .. 30 min\n", a_upDownP->downDurations[1]);
3730     printf("\t\t\t%8d: 30 min .. 1 hr\n", a_upDownP->downDurations[2]);
3731     printf("\t\t\t%8d: 1 hr .. 2 hr\n", a_upDownP->downDurations[3]);
3732     printf("\t\t\t%8d: 2 hr .. 4 hr\n", a_upDownP->downDurations[4]);
3733     printf("\t\t\t%8d: 4 hr .. 8 hr\n", a_upDownP->downDurations[5]);
3734     printf("\t\t\t%8d: > 8 hr\n", a_upDownP->downDurations[6]);
3735
3736     printf("\t\tDowntime incident distribution:\n");
3737     printf("\t\t\t%8d: 0 times\n", a_upDownP->downIncidents[0]);
3738     printf("\t\t\t%8d: 1 time\n", a_upDownP->downDurations[1]);
3739     printf("\t\t\t%8d: 2 .. 5 times\n", a_upDownP->downDurations[2]);
3740     printf("\t\t\t%8d: 6 .. 10 times\n", a_upDownP->downDurations[3]);
3741     printf("\t\t\t%8d: 10 .. 50 times\n", a_upDownP->downDurations[4]);
3742     printf("\t\t\t%8d: > 50 times\n", a_upDownP->downDurations[5]);
3743 }                               /*print_upDownStats */
3744
3745
3746 void
3747 print_cmperfstats(struct afs_stats_CMPerf *perfP)
3748 {
3749     struct afs_stats_SrvUpDownInfo *upDownP;    /*Ptr to server up/down info */
3750
3751     printf("\t%10d numPerfCalls\n", perfP->numPerfCalls);
3752     printf("\t%10d epoch\n", perfP->epoch);
3753     printf("\t%10d numCellsVisible\n", perfP->numCellsVisible);
3754     printf("\t%10d numCellsContacted\n", perfP->numCellsContacted);
3755     printf("\t%10d dlocalAccesses\n", perfP->dlocalAccesses);
3756     printf("\t%10d vlocalAccesses\n", perfP->vlocalAccesses);
3757     printf("\t%10d dremoteAccesses\n", perfP->dremoteAccesses);
3758     printf("\t%10d vremoteAccesses\n", perfP->vremoteAccesses);
3759     printf("\t%10d cacheNumEntries\n", perfP->cacheNumEntries);
3760     printf("\t%10d cacheBlocksTotal\n", perfP->cacheBlocksTotal);
3761     printf("\t%10d cacheBlocksInUse\n", perfP->cacheBlocksInUse);
3762     printf("\t%10d cacheBlocksOrig\n", perfP->cacheBlocksOrig);
3763     printf("\t%10d cacheMaxDirtyChunks\n", perfP->cacheMaxDirtyChunks);
3764     printf("\t%10d cacheCurrDirtyChunks\n", perfP->cacheCurrDirtyChunks);
3765     printf("\t%10d dcacheHits\n", perfP->dcacheHits);
3766     printf("\t%10d vcacheHits\n", perfP->vcacheHits);
3767     printf("\t%10d dcacheMisses\n", perfP->dcacheMisses);
3768     printf("\t%10d vcacheMisses\n", perfP->vcacheMisses);
3769     printf("\t%10d cacheFlushes\n", perfP->cacheFlushes);
3770     printf("\t%10d cacheFilesReused\n", perfP->cacheFilesReused);
3771     printf("\t%10d vcacheXAllocs\n", perfP->vcacheXAllocs);
3772     printf("\t%10d dcacheXAllocs\n", perfP->dcacheXAllocs);
3773
3774     printf("\t%10d bufAlloced\n", perfP->bufAlloced);
3775     printf("\t%10d bufHits\n", perfP->bufHits);
3776     printf("\t%10d bufMisses\n", perfP->bufMisses);
3777     printf("\t%10d bufFlushDirty\n", perfP->bufFlushDirty);
3778
3779     printf("\t%10d LargeBlocksActive\n", perfP->LargeBlocksActive);
3780     printf("\t%10d LargeBlocksAlloced\n", perfP->LargeBlocksAlloced);
3781     printf("\t%10d SmallBlocksActive\n", perfP->SmallBlocksActive);
3782     printf("\t%10d SmallBlocksAlloced\n", perfP->SmallBlocksAlloced);
3783     printf("\t%10d MediumBlocksActive\n", perfP->MediumBlocksActive);
3784     printf("\t%10d MediumBlocksAlloced\n", perfP->MediumBlocksAlloced);
3785     printf("\t%10d OutStandingMemUsage\n", perfP->OutStandingMemUsage);
3786     printf("\t%10d OutStandingAllocs\n", perfP->OutStandingAllocs);
3787     printf("\t%10d CallBackAlloced\n", perfP->CallBackAlloced);
3788     printf("\t%10d CallBackFlushes\n", perfP->CallBackFlushes);
3789     printf("\t%10d CallBackLoops\n", perfP->cbloops);
3790
3791     printf("\t%10d srvRecords\n", perfP->srvRecords);
3792     printf("\t%10d srvNumBuckets\n", perfP->srvNumBuckets);
3793     printf("\t%10d srvMaxChainLength\n", perfP->srvMaxChainLength);
3794     printf("\t%10d srvRecordsHWM\n", perfP->srvRecordsHWM);
3795     printf("\t%10d srvMaxChainLengthHWM\n", perfP->srvMaxChainLengthHWM);
3796
3797     printf("\t%10d sysName_ID\n", perfP->sysName_ID);
3798     printf("\t%10d osi_Read_EFAULTS\n", perfP->osiread_efaults);
3799
3800     printf("\tFile Server up/downtimes, same cell:\n");
3801     print_upDownStats(&(perfP->fs_UpDown[0]));
3802
3803     printf("\tFile Server up/downtimes, diff cell:\n");
3804     print_upDownStats(&(perfP->fs_UpDown[1]));
3805
3806     printf("\tVL Server up/downtimes, same cell:\n");
3807     print_upDownStats(&(perfP->vl_UpDown[0]));
3808
3809     printf("\tVL Server up/downtimes, diff cell:\n");
3810     print_upDownStats(&(perfP->vl_UpDown[1]));
3811 }
3812
3813
3814 void
3815 print_cmstats(struct afs_CMStats *cmp)
3816 {
3817     printf("\t%10d afs_init\n", cmp->callInfo.C_afs_init);
3818     printf("\t%10d gop_rdwr\n", cmp->callInfo.C_gop_rdwr);
3819     printf("\t%10d aix_gnode_rele\n", cmp->callInfo.C_aix_gnode_rele);
3820     printf("\t%10d gettimeofday\n", cmp->callInfo.C_gettimeofday);
3821     printf("\t%10d m_cpytoc\n", cmp->callInfo.C_m_cpytoc);
3822     printf("\t%10d aix_vattr_null\n", cmp->callInfo.C_aix_vattr_null);
3823     printf("\t%10d afs_gn_frunc\n", cmp->callInfo.C_afs_gn_ftrunc);
3824     printf("\t%10d afs_gn_rdwr\n", cmp->callInfo.C_afs_gn_rdwr);
3825     printf("\t%10d afs_gn_ioctl\n", cmp->callInfo.C_afs_gn_ioctl);
3826     printf("\t%10d afs_gn_locktl\n", cmp->callInfo.C_afs_gn_lockctl);
3827     printf("\t%10d afs_gn_readlink\n", cmp->callInfo.C_afs_gn_readlink);
3828     printf("\t%10d afs_gn_readdir\n", cmp->callInfo.C_afs_gn_readdir);
3829     printf("\t%10d afs_gn_select\n", cmp->callInfo.C_afs_gn_select);
3830     printf("\t%10d afs_gn_strategy\n", cmp->callInfo.C_afs_gn_strategy);
3831     printf("\t%10d afs_gn_symlink\n", cmp->callInfo.C_afs_gn_symlink);
3832     printf("\t%10d afs_gn_revoke\n", cmp->callInfo.C_afs_gn_revoke);
3833     printf("\t%10d afs_gn_link\n", cmp->callInfo.C_afs_gn_link);
3834     printf("\t%10d afs_gn_mkdir\n", cmp->callInfo.C_afs_gn_mkdir);
3835     printf("\t%10d afs_gn_mknod\n", cmp->callInfo.C_afs_gn_mknod);
3836     printf("\t%10d afs_gn_remove\n", cmp->callInfo.C_afs_gn_remove);
3837     printf("\t%10d afs_gn_rename\n", cmp->callInfo.C_afs_gn_rename);
3838     printf("\t%10d afs_gn_rmdir\n", cmp->callInfo.C_afs_gn_rmdir);
3839     printf("\t%10d afs_gn_fid\n", cmp->callInfo.C_afs_gn_fid);
3840     printf("\t%10d afs_gn_lookup\n", cmp->callInfo.C_afs_gn_lookup);
3841     printf("\t%10d afs_gn_open\n", cmp->callInfo.C_afs_gn_open);
3842     printf("\t%10d afs_gn_create\n", cmp->callInfo.C_afs_gn_create);
3843     printf("\t%10d afs_gn_hold\n", cmp->callInfo.C_afs_gn_hold);
3844     printf("\t%10d afs_gn_rele\n", cmp->callInfo.C_afs_gn_rele);
3845     printf("\t%10d afs_gn_unmap\n", cmp->callInfo.C_afs_gn_unmap);
3846     printf("\t%10d afs_gn_access\n", cmp->callInfo.C_afs_gn_access);
3847     printf("\t%10d afs_gn_getattr\n", cmp->callInfo.C_afs_gn_getattr);
3848     printf("\t%10d afs_gn_setattr\n", cmp->callInfo.C_afs_gn_setattr);
3849     printf("\t%10d afs_gn_fclear\n", cmp->callInfo.C_afs_gn_fclear);
3850     printf("\t%10d afs_gn_fsync\n", cmp->callInfo.C_afs_gn_fsync);
3851     printf("\t%10d phash\n", cmp->callInfo.C_pHash);
3852     printf("\t%10d DInit\n", cmp->callInfo.C_DInit);
3853     printf("\t%10d DRead\n", cmp->callInfo.C_DRead);
3854     printf("\t%10d FixupBucket\n", cmp->callInfo.C_FixupBucket);
3855     printf("\t%10d afs_newslot\n", cmp->callInfo.C_afs_newslot);
3856     printf("\t%10d DRelease\n", cmp->callInfo.C_DRelease);
3857     printf("\t%10d DFlush\n", cmp->callInfo.C_DFlush);
3858     printf("\t%10d DFlushEntry\n", cmp->callInfo.C_DFlushEntry);
3859     printf("\t%10d DVOffset\n", cmp->callInfo.C_DVOffset);
3860     printf("\t%10d DZap\n", cmp->callInfo.C_DZap);
3861     printf("\t%10d DNew\n", cmp->callInfo.C_DNew);
3862     printf("\t%10d afs_RemoveVCB\n", cmp->callInfo.C_afs_RemoveVCB);
3863     printf("\t%10d afs_NewVCache\n", cmp->callInfo.C_afs_NewVCache);
3864     printf("\t%10d afs_FlushActiveVcaches\n",
3865            cmp->callInfo.C_afs_FlushActiveVcaches);
3866     printf("\t%10d afs_VerifyVCache\n", cmp->callInfo.C_afs_VerifyVCache);
3867     printf("\t%10d afs_WriteVCache\n", cmp->callInfo.C_afs_WriteVCache);
3868     printf("\t%10d afs_GetVCache\n", cmp->callInfo.C_afs_GetVCache);
3869     printf("\t%10d afs_StuffVcache\n", cmp->callInfo.C_afs_StuffVcache);
3870     printf("\t%10d afs_FindVCache\n", cmp->callInfo.C_afs_FindVCache);
3871     printf("\t%10d afs_PutDCache\n", cmp->callInfo.C_afs_PutDCache);
3872     printf("\t%10d afs_PutVCache\n", cmp->callInfo.C_afs_PutVCache);
3873     printf("\t%10d CacheStoreProc\n", cmp->callInfo.C_CacheStoreProc);
3874     printf("\t%10d afs_FindDcache\n", cmp->callInfo.C_afs_FindDCache);
3875     printf("\t%10d afs_TryToSmush\n", cmp->callInfo.C_afs_TryToSmush);
3876     printf("\t%10d afs_AdjustSize\n", cmp->callInfo.C_afs_AdjustSize);
3877     printf("\t%10d afs_CheckSize\n", cmp->callInfo.C_afs_CheckSize);
3878     printf("\t%10d afs_StoreWarn\n", cmp->callInfo.C_afs_StoreWarn);
3879     printf("\t%10d CacheFetchProc\n", cmp->callInfo.C_CacheFetchProc);
3880     printf("\t%10d UFS_CacheStoreProc\n", cmp->callInfo.C_UFS_CacheStoreProc);
3881     printf("\t%10d UFS_CacheFetchProc\n", cmp->callInfo.C_UFS_CacheFetchProc);
3882     printf("\t%10d afs_GetDCache\n", cmp->callInfo.C_afs_GetDCache);
3883     printf("\t%10d afs_SimpleVStat\n", cmp->callInfo.C_afs_SimpleVStat);
3884     printf("\t%10d afs_ProcessFS\n", cmp->callInfo.C_afs_ProcessFS);
3885     printf("\t%10d afs_InitCacheInfo\n", cmp->callInfo.C_afs_InitCacheInfo);
3886     printf("\t%10d afs_InitVolumeInfo\n", cmp->callInfo.C_afs_InitVolumeInfo);
3887     printf("\t%10d afs_InitCacheFile\n", cmp->callInfo.C_afs_InitCacheFile);
3888     printf("\t%10d afs_CacheInit\n", cmp->callInfo.C_afs_CacheInit);
3889     printf("\t%10d afs_GetDSlot\n", cmp->callInfo.C_afs_GetDSlot);
3890     printf("\t%10d afs_WriteThroughDSlots\n",
3891            cmp->callInfo.C_afs_WriteThroughDSlots);
3892     printf("\t%10d afs_MemGetDSlot\n", cmp->callInfo.C_afs_MemGetDSlot);
3893     printf("\t%10d afs_UFSGetDSlot\n", cmp->callInfo.C_afs_UFSGetDSlot);
3894     printf("\t%10d afs_StoreDCache\n", cmp->callInfo.C_afs_StoreDCache);
3895     printf("\t%10d afs_StoreMini\n", cmp->callInfo.C_afs_StoreMini);
3896     printf("\t%10d afs_StoreAllSegments\n",
3897            cmp->callInfo.C_afs_StoreAllSegments);
3898     printf("\t%10d afs_InvalidateAllSegments\n",
3899            cmp->callInfo.C_afs_InvalidateAllSegments);
3900     printf("\t%10d afs_TruncateAllSegments\n",
3901            cmp->callInfo.C_afs_TruncateAllSegments);
3902     printf("\t%10d afs_CheckVolSync\n", cmp->callInfo.C_afs_CheckVolSync);
3903     printf("\t%10d afs_wakeup\n", cmp->callInfo.C_afs_wakeup);
3904     printf("\t%10d afs_CFileOpen\n", cmp->callInfo.C_afs_CFileOpen);
3905     printf("\t%10d afs_CFileTruncate\n", cmp->callInfo.C_afs_CFileTruncate);
3906     printf("\t%10d afs_GetDownD\n", cmp->callInfo.C_afs_GetDownD);
3907     printf("\t%10d afs_WriteDCache\n", cmp->callInfo.C_afs_WriteDCache);
3908     printf("\t%10d afs_FlushDCache\n", cmp->callInfo.C_afs_FlushDCache);
3909     printf("\t%10d afs_GetDownDSlot\n", cmp->callInfo.C_afs_GetDownDSlot);
3910     printf("\t%10d afs_FlushVCache\n", cmp->callInfo.C_afs_FlushVCache);
3911     printf("\t%10d afs_GetDownV\n", cmp->callInfo.C_afs_GetDownV);
3912     printf("\t%10d afs_QueueVCB\n", cmp->callInfo.C_afs_QueueVCB);
3913     printf("\t%10d afs_call\n", cmp->callInfo.C_afs_call);
3914     printf("\t%10d afs_syscall_call\n", cmp->callInfo.C_afs_syscall_call);
3915     printf("\t%10d afs_syscall_icreate\n",
3916            cmp->callInfo.C_afs_syscall_icreate);
3917     printf("\t%10d afs_syscall_iopen\n", cmp->callInfo.C_afs_syscall_iopen);
3918     printf("\t%10d afs_syscall_iincdec\n",
3919            cmp->callInfo.C_afs_syscall_iincdec);
3920     printf("\t%10d afs_syscall_ireadwrite\n",
3921            cmp->callInfo.C_afs_syscall_ireadwrite);
3922     printf("\t%10d afs_syscall\n", cmp->callInfo.C_afs_syscall);
3923     printf("\t%10d lpioctl\n", cmp->callInfo.C_lpioctl);
3924     printf("\t%10d lsetpag\n", cmp->callInfo.C_lsetpag);
3925     printf("\t%10d afs_CheckInit\n", cmp->callInfo.C_afs_CheckInit);
3926     printf("\t%10d ClearCallback\n", cmp->callInfo.C_ClearCallBack);
3927     printf("\t%10d SRXAFSCB_GetCE\n", cmp->callInfo.C_SRXAFSCB_GetCE);
3928     printf("\t%10d SRXAFSCB_GetLock\n", cmp->callInfo.C_SRXAFSCB_GetLock);
3929     printf("\t%10d SRXAFSCB_CallBack\n", cmp->callInfo.C_SRXAFSCB_CallBack);
3930     printf("\t%10d SRXAFSCB_InitCallBackState\n",
3931            cmp->callInfo.C_SRXAFSCB_InitCallBackState);
3932     printf("\t%10d SRXAFSCB_Probe\n", cmp->callInfo.C_SRXAFSCB_Probe);
3933     printf("\t%10d afs_Chunk\n", cmp->callInfo.C_afs_Chunk);
3934     printf("\t%10d afs_ChunkBase\n", cmp->callInfo.C_afs_ChunkBase);
3935     printf("\t%10d afs_ChunkOffset\n", cmp->callInfo.C_afs_ChunkOffset);
3936     printf("\t%10d afs_ChunkSize\n", cmp->callInfo.C_afs_ChunkSize);
3937     printf("\t%10d afs_ChunkToBase\n", cmp->callInfo.C_afs_ChunkToBase);
3938     printf("\t%10d afs_ChunkToSize\n", cmp->callInfo.C_afs_ChunkToSize);
3939     printf("\t%10d afs_SetChunkSize\n", cmp->callInfo.C_afs_SetChunkSize);
3940     printf("\t%10d afs_config\n", cmp->callInfo.C_afs_config);
3941     printf("\t%10d mem_freebytes\n", cmp->callInfo.C_mem_freebytes);
3942     printf("\t%10d mem_getbytes\n", cmp->callInfo.C_mem_getbytes);
3943     printf("\t%10d afs_Daemon\n", cmp->callInfo.C_afs_Daemon);
3944     printf("\t%10d afs_CheckRootVolume\n",
3945            cmp->callInfo.C_afs_CheckRootVolume);
3946     printf("\t%10d BPath\n", cmp->callInfo.C_BPath);
3947     printf("\t%10d BPrefetch\n", cmp->callInfo.C_BPrefetch);
3948     printf("\t%10d BStore\n", cmp->callInfo.C_BStore);
3949     printf("\t%10d afs_BBusy\n", cmp->callInfo.C_afs_BBusy);
3950     printf("\t%10d afs_BQueue\n", cmp->callInfo.C_afs_BQueue);
3951     printf("\t%10d afs_BRelease\n", cmp->callInfo.C_afs_BRelease);
3952     printf("\t%10d afs_BackgroundDaemon\n",
3953            cmp->callInfo.C_afs_BackgroundDaemon);
3954     printf("\t%10d exporter_add\n", cmp->callInfo.C_exporter_add);
3955     printf("\t%10d exporter_find\n", cmp->callInfo.C_exporter_find);
3956     printf("\t%10d afs_gfs_kalloc\n", cmp->callInfo.C_afs_gfs_kalloc);
3957     printf("\t%10d afs_gfs_kfree\n", cmp->callInfo.C_afs_gfs_kfree);
3958     printf("\t%10d gop_lookupname\n", cmp->callInfo.C_gop_lookupname);
3959     printf("\t%10d afs_uniqtime\n", cmp->callInfo.C_afs_uniqtime);
3960     printf("\t%10d gfs_vattr_null\n", cmp->callInfo.C_gfs_vattr_null);
3961     printf("\t%10d afs_lock\n", cmp->callInfo.C_afs_lock);
3962     printf("\t%10d afs_unlock\n", cmp->callInfo.C_afs_unlock);
3963     printf("\t%10d afs_update\n", cmp->callInfo.C_afs_update);
3964     printf("\t%10d afs_gclose\n", cmp->callInfo.C_afs_gclose);
3965     printf("\t%10d afs_gopen\n", cmp->callInfo.C_afs_gopen);
3966     printf("\t%10d afs_greadlink\n", cmp->callInfo.C_afs_greadlink);
3967     printf("\t%10d afs_select\n", cmp->callInfo.C_afs_select);
3968     printf("\t%10d afs_gbmap\n", cmp->callInfo.C_afs_gbmap);
3969     printf("\t%10d afs_getfsdata\n", cmp->callInfo.C_afs_getfsdata);
3970     printf("\t%10d afs_gsymlink\n", cmp->callInfo.C_afs_gsymlink);
3971     printf("\t%10d afs_namei\n", cmp->callInfo.C_afs_namei);
3972     printf("\t%10d afs_gmount\n", cmp->callInfo.C_afs_gmount);
3973     printf("\t%10d afs_gget\n", cmp->callInfo.C_afs_gget);
3974     printf("\t%10d afs_glink\n", cmp->callInfo.C_afs_glink);
3975     printf("\t%10d afs_gmkdir\n", cmp->callInfo.C_afs_gmkdir);
3976     printf("\t%10d afs_unlink\n", cmp->callInfo.C_afs_unlink);
3977     printf("\t%10d afs_grmdir\n", cmp->callInfo.C_afs_grmdir);
3978     printf("\t%10d afs_makenode\n", cmp->callInfo.C_afs_makenode);
3979     printf("\t%10d afs_grename\n", cmp->callInfo.C_afs_grename);
3980     printf("\t%10d afs_rele\n", cmp->callInfo.C_afs_rele);
3981     printf("\t%10d afs_syncgp\n", cmp->callInfo.C_afs_syncgp);
3982     printf("\t%10d afs_getval\n", cmp->callInfo.C_afs_getval);
3983     printf("\t%10d afs_trunc\n", cmp->callInfo.C_afs_trunc);
3984     printf("\t%10d afs_rwgp\n", cmp->callInfo.C_afs_rwgp);
3985     printf("\t%10d afs_stat\n", cmp->callInfo.C_afs_stat);
3986     printf("\t%10d afsc_link\n", cmp->callInfo.C_afsc_link);
3987     printf("\t%10d afs_vfs_mount\n", cmp->callInfo.C_afs_vfs_mount);
3988     printf("\t%10d afs_uniqtime\n", cmp->callInfo.C_afs_uniqtime);
3989     printf("\t%10d iopen\n", cmp->callInfo.C_iopen);
3990     printf("\t%10d idec\n", cmp->callInfo.C_idec);
3991     printf("\t%10d iinc\n", cmp->callInfo.C_iinc);
3992     printf("\t%10d ireadwrite\n", cmp->callInfo.C_ireadwrite);
3993     printf("\t%10d iread\n", cmp->callInfo.C_iread);
3994     printf("\t%10d iwrite\n", cmp->callInfo.C_iwrite);
3995     printf("\t%10d iforget\n", cmp->callInfo.C_iforget);
3996     printf("\t%10d icreate\n", cmp->callInfo.C_icreate);
3997     printf("\t%10d igetinode\n", cmp->callInfo.C_igetinode);
3998     printf("\t%10d osi_SleepR\n", cmp->callInfo.C_osi_SleepR);
3999     printf("\t%10d osi_SleepS\n", cmp->callInfo.C_osi_SleepS);
4000     printf("\t%10d osi_SleepW\n", cmp->callInfo.C_osi_SleepW);
4001     printf("\t%10d osi_Sleep\n", cmp->callInfo.C_osi_Sleep);
4002     printf("\t%10d afs_LookupMCE\n", cmp->callInfo.C_afs_LookupMCE);
4003     printf("\t%10d afs_MemReadBlk\n", cmp->callInfo.C_afs_MemReadBlk);
4004     printf("\t%10d afs_MemReadUIO\n", cmp->callInfo.C_afs_MemReadUIO);
4005     printf("\t%10d afs_MemWriteBlk\n", cmp->callInfo.C_afs_MemWriteBlk);
4006     printf("\t%10d afs_MemWriteUIO\n", cmp->callInfo.C_afs_MemWriteUIO);
4007     printf("\t%10d afs_MemCacheStoreProc\n",
4008            cmp->callInfo.C_afs_MemCacheStoreProc);
4009     printf("\t%10d afs_MemCacheFetchProc\n",
4010            cmp->callInfo.C_afs_MemCacheFetchProc);
4011     printf("\t%10d afs_MemCacheTruncate\n",
4012            cmp->callInfo.C_afs_MemCacheTruncate);
4013     printf("\t%10d afs_MemCacheStoreProc\n",
4014            cmp->callInfo.C_afs_MemCacheStoreProc);
4015     printf("\t%10d afs_GetNfsClientPag\n",
4016            cmp->callInfo.C_afs_GetNfsClientPag);
4017     printf("\t%10d afs_FindNfsClientPag\n",
4018            cmp->callInfo.C_afs_FindNfsClientPag);
4019     printf("\t%10d afs_PutNfsClientPag\n",
4020            cmp->callInfo.C_afs_PutNfsClientPag);
4021     printf("\t%10d afs_nfsclient_reqhandler\n",
4022            cmp->callInfo.C_afs_nfsclient_reqhandler);
4023     printf("\t%10d afs_nfsclient_GC\n", cmp->callInfo.C_afs_nfsclient_GC);
4024     printf("\t%10d afs_nfsclient_hold\n", cmp->callInfo.C_afs_nfsclient_hold);
4025     printf("\t%10d afs_nfsclient_stats\n",
4026            cmp->callInfo.C_afs_nfsclient_stats);
4027     printf("\t%10d afs_nfsclient_sysname\n",
4028            cmp->callInfo.C_afs_nfsclient_sysname);
4029     printf("\t%10d afs_rfs_dispatch\n", cmp->callInfo.C_afs_rfs_dispatch);
4030     printf("\t%10d afs_nfs2afscall\n", cmp->callInfo.C_Nfs2AfsCall);
4031     printf("\t%10d afs_sun_xuntext\n", cmp->callInfo.C_afs_sun_xuntext);
4032     printf("\t%10d osi_Active\n", cmp->callInfo.C_osi_Active);
4033     printf("\t%10d osi_FlushPages\n", cmp->callInfo.C_osi_FlushPages);
4034     printf("\t%10d osi_FlushText\n", cmp->callInfo.C_osi_FlushText);
4035     printf("\t%10d osi_CallProc\n", cmp->callInfo.C_osi_CallProc);
4036     printf("\t%10d osi_CancelProc\n", cmp->callInfo.C_osi_CancelProc);
4037     printf("\t%10d osi_Invisible\n", cmp->callInfo.C_osi_Invisible);
4038     printf("\t%10d osi_Time\n", cmp->callInfo.C_osi_Time);
4039     printf("\t%10d osi_Alloc\n", cmp->callInfo.C_osi_Alloc);
4040     printf("\t%10d osi_SetTime\n", cmp->callInfo.C_osi_SetTime);
4041     printf("\t%10d osi_Dump\n", cmp->callInfo.C_osi_Dump);
4042     printf("\t%10d osi_Free\n", cmp->callInfo.C_osi_Free);
4043     printf("\t%10d osi_UFSOpen\n", cmp->callInfo.C_osi_UFSOpen);
4044     printf("\t%10d osi_Close\n", cmp->callInfo.C_osi_Close);
4045     printf("\t%10d osi_Stat\n", cmp->callInfo.C_osi_Stat);
4046     printf("\t%10d osi_Truncate\n", cmp->callInfo.C_osi_Truncate);
4047     printf("\t%10d osi_Read\n", cmp->callInfo.C_osi_Read);
4048     printf("\t%10d osi_Write\n", cmp->callInfo.C_osi_Write);
4049     printf("\t%10d osi_MapStrategy\n", cmp->callInfo.C_osi_MapStrategy);
4050     printf("\t%10d osi_AllocLargeSpace\n",
4051            cmp->callInfo.C_osi_AllocLargeSpace);
4052     printf("\t%10d osi_FreeLargeSpace\n", cmp->callInfo.C_osi_FreeLargeSpace);
4053     printf("\t%10d osi_AllocSmallSpace\n",
4054            cmp->callInfo.C_osi_AllocSmallSpace);
4055     printf("\t%10d osi_FreeSmallSpace\n", cmp->callInfo.C_osi_FreeSmallSpace);
4056     printf("\t%10d osi_CloseToTheEdge\n", cmp->callInfo.C_osi_CloseToTheEdge);
4057     printf("\t%10d osi_xgreedy\n", cmp->callInfo.C_osi_xgreedy);
4058     printf("\t%10d osi_FreeSocket\n", cmp->callInfo.C_osi_FreeSocket);
4059     printf("\t%10d osi_NewSocket\n", cmp->callInfo.C_osi_NewSocket);
4060     printf("\t%10d osi_NetSend\n", cmp->callInfo.C_osi_NetSend);
4061     printf("\t%10d WaitHack\n", cmp->callInfo.C_WaitHack);
4062     printf("\t%10d osi_CancelWait\n", cmp->callInfo.C_osi_CancelWait);
4063     printf("\t%10d osi_Wakeup\n", cmp->callInfo.C_osi_Wakeup);
4064     printf("\t%10d osi_Wait\n", cmp->callInfo.C_osi_Wait);
4065     printf("\t%10d dirp_Read\n", cmp->callInfo.C_dirp_Read);
4066     printf("\t%10d dirp_Cpy\n", cmp->callInfo.C_dirp_Cpy);
4067     printf("\t%10d dirp_Eq\n", cmp->callInfo.C_dirp_Eq);
4068     printf("\t%10d dirp_Write\n", cmp->callInfo.C_dirp_Write);
4069     printf("\t%10d dirp_Zap\n", cmp->callInfo.C_dirp_Zap);
4070     printf("\t%10d afs_ioctl\n", cmp->callInfo.C_afs_ioctl);
4071     printf("\t%10d handleIoctl\n", cmp->callInfo.C_HandleIoctl);
4072     printf("\t%10d afs_xioctl\n", cmp->callInfo.C_afs_xioctl);
4073     printf("\t%10d afs_pioctl\n", cmp->callInfo.C_afs_pioctl);
4074     printf("\t%10d HandlePioctl\n", cmp->callInfo.C_HandlePioctl);
4075     printf("\t%10d PGetVolumeStatus\n", cmp->callInfo.C_PGetVolumeStatus);
4076     printf("\t%10d PSetVolumeStatus\n", cmp->callInfo.C_PSetVolumeStatus);
4077     printf("\t%10d PFlush\n", cmp->callInfo.C_PFlush);
4078     printf("\t%10d PFlushVolumeData\n", cmp->callInfo.C_PFlushVolumeData);
4079     printf("\t%10d PNewStatMount\n", cmp->callInfo.C_PNewStatMount);
4080     printf("\t%10d PGetTokens\n", cmp->callInfo.C_PGetTokens);
4081     printf("\t%10d PSetTokens\n", cmp->callInfo.C_PSetTokens);
4082     printf("\t%10d PUnlog\n", cmp->callInfo.C_PUnlog);
4083     printf("\t%10d PCheckServers\n", cmp->callInfo.C_PCheckServers);
4084     printf("\t%10d PCheckAuth\n", cmp->callInfo.C_PCheckAuth);
4085     printf("\t%10d PCheckVolNames\n", cmp->callInfo.C_PCheckVolNames);
4086     printf("\t%10d PFindVolume\n", cmp->callInfo.C_PFindVolume);
4087     printf("\t%10d Prefetch\n", cmp->callInfo.C_Prefetch);
4088     printf("\t%10d PGetCacheSize\n", cmp->callInfo.C_PGetCacheSize);
4089     printf("\t%10d PSetCacheSize\n", cmp->callInfo.C_PSetCacheSize);
4090     printf("\t%10d PSetSysName\n", cmp->callInfo.C_PSetSysName);
4091     printf("\t%10d PExportAfs\n", cmp->callInfo.C_PExportAfs);
4092     printf("\t%10d HandleClientContext\n",
4093            cmp->callInfo.C_HandleClientContext);
4094     printf("\t%10d PViceAccess\n", cmp->callInfo.C_PViceAccess);
4095     printf("\t%10d PRemoveCallBack\n", cmp->callInfo.C_PRemoveCallBack);
4096     printf("\t%10d PRemoveMount\n", cmp->callInfo.C_PRemoveMount);
4097     printf("\t%10d PSetVolumeStatus\n", cmp->callInfo.C_PSetVolumeStatus);
4098     printf("\t%10d PListCells\n", cmp->callInfo.C_PListCells);
4099     printf("\t%10d PNewCell\n", cmp->callInfo.C_PNewCell);
4100     printf("\t%10d PGetUserCell\n", cmp->callInfo.C_PGetUserCell);
4101     printf("\t%10d PGetCellStatus\n", cmp->callInfo.C_PGetCellStatus);
4102     printf("\t%10d PSetCellStatus\n", cmp->callInfo.C_PSetCellStatus);
4103     printf("\t%10d PVenusLogging\n", cmp->callInfo.C_PVenusLogging);
4104     printf("\t%10d PGetAcl\n", cmp->callInfo.C_PGetAcl);
4105     printf("\t%10d PGetFID\n", cmp->callInfo.C_PGetFID);
4106     printf("\t%10d PSetAcl\n", cmp->callInfo.C_PSetAcl);
4107     printf("\t%10d PGetFileCell\n", cmp->callInfo.C_PGetFileCell);
4108     printf("\t%10d PGetWSCell\n", cmp->callInfo.C_PGetWSCell);
4109     printf("\t%10d PGetSPrefs\n", cmp->callInfo.C_PGetSPrefs);
4110     printf("\t%10d PSetSPrefs\n", cmp->callInfo.C_PSetSPrefs);
4111     printf("\t%10d afs_ResetAccessCache\n",
4112            cmp->callInfo.C_afs_ResetAccessCache);
4113     printf("\t%10d afs_FindUser\n", cmp->callInfo.C_afs_FindUser);
4114     printf("\t%10d afs_GetUser\n", cmp->callInfo.C_afs_GetUser);
4115     printf("\t%10d afs_GCUserData\n", cmp->callInfo.C_afs_GCUserData);
4116     printf("\t%10d afs_PutUser\n", cmp->callInfo.C_afs_PutUser);
4117     printf("\t%10d afs_SetPrimary\n", cmp->callInfo.C_afs_SetPrimary);
4118     printf("\t%10d afs_ResetUserConns\n", cmp->callInfo.C_afs_ResetUserConns);
4119     printf("\t%10d afs_RemoveUserConns\n", cmp->callInfo.C_RemoveUserConns);
4120     printf("\t%10d afs_ResourceInit\n", cmp->callInfo.C_afs_ResourceInit);
4121     printf("\t%10d afs_GetCell\n", cmp->callInfo.C_afs_GetCell);
4122     printf("\t%10d afs_GetCellByIndex\n", cmp->callInfo.C_afs_GetCellByIndex);
4123     printf("\t%10d afs_GetCellByName\n", cmp->callInfo.C_afs_GetCellByName);
4124     printf("\t%10d afs_GetRealCellByIndex\n",
4125            cmp->callInfo.C_afs_GetRealCellByIndex);
4126     printf("\t%10d afs_NewCell\n", cmp->callInfo.C_afs_NewCell);
4127     printf("\t%10d CheckVLDB\n", cmp->callInfo.C_CheckVLDB);
4128     printf("\t%10d afs_GetVolume\n", cmp->callInfo.C_afs_GetVolume);
4129     printf("\t%10d afs_PutVolume\n", cmp->callInfo.C_afs_PutVolume);
4130     printf("\t%10d afs_GetVolumeByName\n",
4131            cmp->callInfo.C_afs_GetVolumeByName);
4132     printf("\t%10d afs_random\n", cmp->callInfo.C_afs_random);
4133     printf("\t%10d InstallVolumeEntry\n", cmp->callInfo.C_InstallVolumeEntry);
4134     printf("\t%10d InstallVolumeInfo\n", cmp->callInfo.C_InstallVolumeInfo);
4135     printf("\t%10d afs_ResetVolumeInfo\n",
4136            cmp->callInfo.C_afs_ResetVolumeInfo);
4137     printf("\t%10d afs_FindServer\n", cmp->callInfo.C_afs_FindServer);
4138     printf("\t%10d afs_GetServer\n", cmp->callInfo.C_afs_GetServer);
4139     printf("\t%10d afs_SortServers\n", cmp->callInfo.C_afs_SortServers);
4140     printf("\t%10d afs_CheckServers\n", cmp->callInfo.C_afs_CheckServers);
4141     printf("\t%10d ServerDown\n", cmp->callInfo.C_ServerDown);
4142     printf("\t%10d afs_Conn\n", cmp->callInfo.C_afs_Conn);
4143     printf("\t%10d afs_PutConn\n", cmp->callInfo.C_afs_PutConn);
4144     printf("\t%10d afs_ConnByHost\n", cmp->callInfo.C_afs_ConnByHost);
4145     printf("\t%10d afs_ConnByMHosts\n", cmp->callInfo.C_afs_ConnByMHosts);
4146     printf("\t%10d afs_Analyze\n", cmp->callInfo.C_afs_Analyze);
4147     printf("\t%10d CheckVLServer\n", cmp->callInfo.C_CheckVLServer);
4148     printf("\t%10d afs_CheckCacheResets\n",
4149            cmp->callInfo.C_afs_CheckCacheResets);
4150     printf("\t%10d afs_CheckVolumeNames\n",
4151            cmp->callInfo.C_afs_CheckVolumeNames);
4152     printf("\t%10d afs_CheckCode\n", cmp->callInfo.C_afs_CheckCode);
4153     printf("\t%10d afs_CopyError\n", cmp->callInfo.C_afs_CopyError);
4154     printf("\t%10d afs_FinalizeReq\n", cmp->callInfo.C_afs_FinalizeReq);
4155     printf("\t%10d afs_GetVolCache\n", cmp->callInfo.C_afs_GetVolCache);
4156     printf("\t%10d afs_GetVolSlot\n", cmp->callInfo.C_afs_GetVolSlot);
4157     printf("\t%10d afs_UFSGetVolSlot\n", cmp->callInfo.C_afs_UFSGetVolSlot);
4158     printf("\t%10d afs_MemGetVolSlot\n", cmp->callInfo.C_afs_MemGetVolSlot);
4159     printf("\t%10d afs_WriteVolCache\n", cmp->callInfo.C_afs_WriteVolCache);
4160     printf("\t%10d haveCallbacksfrom\n", cmp->callInfo.C_HaveCallBacksFrom);
4161     printf("\t%10d afs_getpage\n", cmp->callInfo.C_afs_getpage);
4162     printf("\t%10d afs_putpage\n", cmp->callInfo.C_afs_putpage);
4163     printf("\t%10d afs_nfsrdwr\n", cmp->callInfo.C_afs_nfsrdwr);
4164     printf("\t%10d afs_map\n", cmp->callInfo.C_afs_map);
4165     printf("\t%10d afs_cmp\n", cmp->callInfo.C_afs_cmp);
4166     printf("\t%10d afs_PageLeft\n", cmp->callInfo.C_afs_PageLeft);
4167     printf("\t%10d afs_mount\n", cmp->callInfo.C_afs_mount);
4168     printf("\t%10d afs_unmount\n", cmp->callInfo.C_afs_unmount);
4169     printf("\t%10d afs_root\n", cmp->callInfo.C_afs_root);
4170     printf("\t%10d afs_statfs\n", cmp->callInfo.C_afs_statfs);
4171     printf("\t%10d afs_sync\n", cmp->callInfo.C_afs_sync);
4172     printf("\t%10d afs_vget\n", cmp->callInfo.C_afs_vget);
4173     printf("\t%10d afs_index\n", cmp->callInfo.C_afs_index);
4174     printf("\t%10d afs_setpag\n", cmp->callInfo.C_afs_setpag);
4175     printf("\t%10d genpag\n", cmp->callInfo.C_genpag);
4176     printf("\t%10d getpag\n", cmp->callInfo.C_getpag);
4177     printf("\t%10d genpag\n", cmp->callInfo.C_genpag);
4178     printf("\t%10d afs_GetMariner\n", cmp->callInfo.C_afs_GetMariner);
4179     printf("\t%10d afs_AddMarinerName\n", cmp->callInfo.C_afs_AddMarinerName);
4180     printf("\t%10d afs_open\n", cmp->callInfo.C_afs_open);
4181     printf("\t%10d afs_close\n", cmp->callInfo.C_afs_close);
4182     printf("\t%10d afs_closex\n", cmp->callInfo.C_afs_closex);
4183     printf("\t%10d afs_write\n", cmp->callInfo.C_afs_write);
4184     printf("\t%10d afs_UFSwrite\n", cmp->callInfo.C_afs_UFSWrite);
4185     printf("\t%10d afs_Memwrite\n", cmp->callInfo.C_afs_MemWrite);
4186     printf("\t%10d afs_rdwr\n", cmp->callInfo.C_afs_rdwr);
4187     printf("\t%10d afs_read\n", cmp->callInfo.C_afs_read);
4188     printf("\t%10d afs_UFSread\n", cmp->callInfo.C_afs_UFSRead);
4189     printf("\t%10d afs_Memread\n", cmp->callInfo.C_afs_MemRead);
4190     printf("\t%10d afs_CopyOutAttrs\n", cmp->callInfo.C_afs_CopyOutAttrs);
4191     printf("\t%10d afs_access\n", cmp->callInfo.C_afs_access);
4192     printf("\t%10d afs_getattr\n", cmp->callInfo.C_afs_getattr);
4193     printf("\t%10d afs_setattr\n", cmp->callInfo.C_afs_setattr);
4194     printf("\t%10d afs_VAttrToAS\n", cmp->callInfo.C_afs_VAttrToAS);
4195     printf("\t%10d EvalMountPoint\n", cmp->callInfo.C_EvalMountPoint);
4196     printf("\t%10d afs_lookup\n", cmp->callInfo.C_afs_lookup);
4197     printf("\t%10d afs_create\n", cmp->callInfo.C_afs_create);
4198     printf("\t%10d afs_LocalHero\n", cmp->callInfo.C_afs_LocalHero);
4199     printf("\t%10d afs_remove\n", cmp->callInfo.C_afs_remove);
4200     printf("\t%10d afs_link\n", cmp->callInfo.C_afs_link);
4201     printf("\t%10d afs_rename\n", cmp->callInfo.C_afs_rename);
4202     printf("\t%10d afs_InitReq\n", cmp->callInfo.C_afs_InitReq);
4203     printf("\t%10d afs_mkdir\n", cmp->callInfo.C_afs_mkdir);
4204     printf("\t%10d afs_rmdir\n", cmp->callInfo.C_afs_rmdir);
4205     printf("\t%10d afs_readdir\n", cmp->callInfo.C_afs_readdir);
4206     printf("\t%10d afs_read1dir\n", cmp->callInfo.C_afs_read1dir);
4207     printf("\t%10d afs_readdir_move\n", cmp->callInfo.C_afs_readdir_move);
4208     printf("\t%10d afs_readdir_iter\n", cmp->callInfo.C_afs_readdir_iter);
4209     printf("\t%10d afs_symlink\n", cmp->callInfo.C_afs_symlink);
4210     printf("\t%10d afs_HandleLink\n", cmp->callInfo.C_afs_HandleLink);
4211     printf("\t%10d afs_MemHandleLink\n", cmp->callInfo.C_afs_MemHandleLink);
4212     printf("\t%10d afs_UFSHandleLink\n", cmp->callInfo.C_afs_UFSHandleLink);
4213     printf("\t%10d HandleFlock\n", cmp->callInfo.C_HandleFlock);
4214     printf("\t%10d afs_readlink\n", cmp->callInfo.C_afs_readlink);
4215     printf("\t%10d afs_fsync\n", cmp->callInfo.C_afs_fsync);
4216     printf("\t%10d afs_inactive\n", cmp->callInfo.C_afs_inactive);
4217     printf("\t%10d afs_ustrategy\n", cmp->callInfo.C_afs_ustrategy);
4218     printf("\t%10d afs_strategy\n", cmp->callInfo.C_afs_strategy);
4219     printf("\t%10d afs_bread\n", cmp->callInfo.C_afs_bread);
4220     printf("\t%10d afs_brelse\n", cmp->callInfo.C_afs_brelse);
4221     printf("\t%10d afs_bmap\n", cmp->callInfo.C_afs_bmap);
4222     printf("\t%10d afs_fid\n", cmp->callInfo.C_afs_fid);
4223     printf("\t%10d afs_FakeOpen\n", cmp->callInfo.C_afs_FakeOpen);
4224     printf("\t%10d afs_FakeClose\n", cmp->callInfo.C_afs_FakeClose);
4225     printf("\t%10d afs_StoreOnLastReference\n",
4226            cmp->callInfo.C_afs_StoreOnLastReference);
4227     printf("\t%10d afs_AccessOK\n", cmp->callInfo.C_afs_AccessOK);
4228     printf("\t%10d afs_GetAccessBits\n", cmp->callInfo.C_afs_GetAccessBits);
4229     printf("\t%10d afsio_copy\n", cmp->callInfo.C_afsio_copy);
4230     printf("\t%10d afsio_trim\n", cmp->callInfo.C_afsio_trim);
4231     printf("\t%10d afsio_skip\n", cmp->callInfo.C_afsio_skip);
4232     printf("\t%10d afs_page_read\n", cmp->callInfo.C_afs_page_read);
4233     printf("\t%10d afs_page_write\n", cmp->callInfo.C_afs_page_write);
4234     printf("\t%10d afs_page_read\n", cmp->callInfo.C_afs_page_read);
4235     printf("\t%10d afs_get_groups_from_pag\n",
4236            cmp->callInfo.C_afs_get_groups_from_pag);
4237     printf("\t%10d afs_get_pag_from_groups\n",
4238            cmp->callInfo.C_afs_get_pag_from_groups);
4239     printf("\t%10d AddPag\n", cmp->callInfo.C_AddPag);
4240     printf("\t%10d PagInCred\n", cmp->callInfo.C_PagInCred);
4241     printf("\t%10d afs_getgroups\n", cmp->callInfo.C_afs_getgroups);
4242     printf("\t%10d afs_page_in\n", cmp->callInfo.C_afs_page_in);
4243     printf("\t%10d afs_page_out\n", cmp->callInfo.C_afs_page_out);
4244     printf("\t%10d afs_AdvanceFD\n", cmp->callInfo.C_afs_AdvanceFD);
4245     printf("\t%10d afs_lockf\n", cmp->callInfo.C_afs_lockf);
4246     printf("\t%10d afs_xsetgroups\n", cmp->callInfo.C_afs_xsetgroups);
4247     printf("\t%10d afs_nlinks\n", cmp->callInfo.C_afs_nlinks);
4248     printf("\t%10d afs_lockctl\n", cmp->callInfo.C_afs_lockctl);
4249     printf("\t%10d afs_xflock\n", cmp->callInfo.C_afs_xflock);
4250     printf("\t%10d PGetCPrefs\n", cmp->callInfo.C_PGetCPrefs);
4251     printf("\t%10d PSetCPrefs\n", cmp->callInfo.C_PSetCPrefs);
4252 #ifdef  AFS_HPUX_ENV
4253     printf("\t%10d afs_pagein\n", cmp->callInfo.C_afs_pagein);
4254     printf("\t%10d afs_pageout\n", cmp->callInfo.C_afs_pageout);
4255     printf("\t%10d afs_hp_strategy\n", cmp->callInfo.C_afs_hp_strategy);
4256 #endif
4257 }
4258
4259 #endif