const.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/linux/nfsd/const.h
  3.  *
  4.  * Various constants related to NFS.
  5.  *
  6.  * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #ifndef _LINUX_NFSD_CONST_H
  9. #define _LINUX_NFSD_CONST_H
  10. #include <linux/nfs.h>
  11. #include <linux/nfs2.h>
  12. #include <linux/nfs3.h>
  13. /*
  14.  * Maximum protocol version supported by knfsd
  15.  */
  16. #define NFSSVC_MAXVERS 3
  17. /*
  18.  * Maximum blocksize supported by daemon currently at 8K
  19.  */
  20. #define NFSSVC_MAXBLKSIZE 8192
  21. #ifdef __KERNEL__
  22. #ifndef NFS_SUPER_MAGIC
  23. # define NFS_SUPER_MAGIC 0x6969
  24. #endif
  25. #endif /* __KERNEL__ */
  26. #endif /* _LINUX_NFSD_CONST_H */