stats.h
来自「基于组件方式开发操作系统的OSKIT源代码」· C头文件 代码 · 共 33 行
H
33 行
/* * 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_Hstruct 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 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?