summaryrefslogtreecommitdiffstats
path: root/include/linux/nfsd/stats.h
blob: 4ce3f06cdc7727ab990a63b30f526e7d55b0de0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * linux/include/nfsd/stats.h
 *
 * Statistics for NFS server.
 *
 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
 */

#ifndef LINUX_NFSD_STATS_H
#define LINUX_NFSD_STATS_H

struct nfsd_stats {
	unsigned int	rchits;		/* repcache hits */
	unsigned int	rcmisses;	/* repcache hits */
	unsigned int	rcnocache;	/* uncached reqs */
	unsigned int	fh_cached;	/* dentry cached */
	unsigned int	fh_valid;	/* dentry validated */
	unsigned int	fh_fixup;	/* dentry fixup validated */
	unsigned int	fh_lookup;	/* new lookup required */
	unsigned int	fh_stale;	/* FH stale error */
};

#ifdef __KERNEL__

extern struct nfsd_stats	nfsdstats;
extern struct svc_stat		nfsd_svcstats;

void	nfsd_stat_init(void);
void	nfsd_stat_shutdown(void);

#endif /* __KERNEL__ */
#endif /* LINUX_NFSD_STATS_H */