efs_fs.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * efs_fs.h
  3.  *
  4.  * Copyright (c) 1999 Al Smith
  5.  *
  6.  * Portions derived from work (c) 1995,1996 Christian Vogelgsang.
  7.  */
  8. #ifndef __EFS_FS_H__
  9. #define __EFS_FS_H__
  10. #define EFS_VERSION "1.0a"
  11. static const char cprt[] = "EFS: "EFS_VERSION" - (c) 1999 Al Smith <Al.Smith@aeschi.ch.eu.org>";
  12. #include <asm/uaccess.h>
  13. #ifndef LINUX_VERSION_CODE
  14. #include <linux/version.h>
  15. #endif
  16. #if LINUX_VERSION_CODE < 0x20200
  17. #error This code is only for linux-2.2 and later.
  18. #endif
  19. /* 1 block is 512 bytes */
  20. #define EFS_BLOCKSIZE_BITS 9
  21. #define EFS_BLOCKSIZE (1 << EFS_BLOCKSIZE_BITS)
  22. #include <linux/efs_fs_i.h>
  23. #include <linux/efs_dir.h>
  24. #ifndef MIN
  25. #define MIN(a, b) (((a) < (b)) ? (a) : (b))
  26. #endif
  27. #ifndef MAX
  28. #define MAX(a, b) (((a) > (b)) ? (a) : (b))
  29. #endif
  30. #ifdef _EFS_USE_GENERIC
  31. #define INODE_INFO(i) (struct efs_inode_info *) &((i)->u.generic_ip)
  32. #define SUPER_INFO(s) (struct efs_sb_info *) &((s)->u.generic_sbp)
  33. #else
  34. #define INODE_INFO(i) &((i)->u.efs_i)
  35. #define SUPER_INFO(s) &((s)->u.efs_sb)
  36. #endif
  37. extern struct inode_operations efs_dir_inode_operations;
  38. extern struct file_operations efs_dir_operations;
  39. extern struct address_space_operations efs_symlink_aops;
  40. extern struct super_block *efs_read_super(struct super_block *, void *, int);
  41. extern int efs_statfs(struct super_block *, struct statfs *);
  42. extern void efs_read_inode(struct inode *);
  43. extern efs_block_t efs_map_block(struct inode *, efs_block_t);
  44. extern struct dentry *efs_lookup(struct inode *, struct dentry *);
  45. extern int efs_bmap(struct inode *, int);
  46. #endif /* __EFS_FS_H__ */