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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/linux/nfsd/interface.h
  3.  *
  4.  * defines interface between nfsd and other bits of
  5.  * the kernel.  Particularly filesystems (eventually).
  6.  *
  7.  * Copyright (C) 2000 Neil Brown <neilb@cse.unsw.edu.au>
  8.  */
  9. #ifndef LINUX_NFSD_INTERFACE_H
  10. #define LINUX_NFSD_INTERFACE_H
  11. #include <linux/config.h>
  12. #ifdef CONFIG_NFSD_MODULE
  13. extern struct nfsd_linkage {
  14. long (*do_nfsservctl)(int cmd, void *argp, void *resp);
  15. } * nfsd_linkage;
  16. #endif
  17. #endif /* LINUX_NFSD_INTERFACE_H */