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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/linux/bfs_fs.h - BFS data structures on disk.
  3.  * Copyright (C) 1999 Tigran Aivazian <tigran@veritas.com>
  4.  */
  5. #ifndef _LINUX_BFS_FS_H
  6. #define _LINUX_BFS_FS_H
  7. #define BFS_BSIZE_BITS 9
  8. #define BFS_BSIZE (1<<BFS_BSIZE_BITS)
  9. #define BFS_MAGIC 0x1BADFACE
  10. #define BFS_ROOT_INO 2
  11. #define BFS_INODES_PER_BLOCK 8
  12. /* SVR4 vnode type values (bfs_inode->i_vtype) */
  13. #define BFS_VDIR 2
  14. #define BFS_VREG 1
  15. /* BFS inode layout on disk */
  16. struct bfs_inode {
  17. __u16 i_ino;
  18. __u16 i_unused;
  19. __u32 i_sblock;
  20. __u32 i_eblock;
  21. __u32 i_eoffset;
  22. __u32 i_vtype;
  23. __u32 i_mode;
  24. __s32 i_uid;
  25. __s32 i_gid;
  26. __u32 i_nlink;
  27. __u32 i_atime;
  28. __u32 i_mtime;
  29. __u32 i_ctime;
  30. __u32 i_padding[4];
  31. };
  32. #define BFS_NAMELEN 14
  33. #define BFS_DIRENT_SIZE 16
  34. #define BFS_DIRS_PER_BLOCK 32
  35. struct bfs_dirent {
  36. __u16 ino;
  37. char name[BFS_NAMELEN];
  38. };
  39. /* BFS superblock layout on disk */
  40. struct bfs_super_block {
  41. __u32 s_magic;
  42. __u32 s_start;
  43. __u32 s_end;
  44. __s32 s_from;
  45. __s32 s_to;
  46. __s32 s_bfrom;
  47. __s32 s_bto;
  48. char  s_fsname[6];
  49. char  s_volume[6];
  50. __u32 s_padding[118];
  51. };
  52. #define BFS_NZFILESIZE(ip) 
  53.         (((ip)->i_eoffset + 1) - (ip)->i_sblock * BFS_BSIZE)
  54. #define BFS_FILESIZE(ip) 
  55.         ((ip)->i_sblock == 0 ? 0 : BFS_NZFILESIZE(ip))
  56. #define BFS_FILEBLOCKS(ip) 
  57.         ((ip)->i_sblock == 0 ? 0 : ((ip)->i_eblock + 1) - (ip)->i_sblock)
  58. #define BFS_OFF2INO(offset) 
  59.         ((((offset) - BFS_BSIZE) / sizeof(struct bfs_inode)) + BFS_ROOT_INO)
  60. #define BFS_INO2OFF(ino) 
  61. ((__u32)(((ino) - BFS_ROOT_INO) * sizeof(struct bfs_inode)) + BFS_BSIZE)
  62. #define BFS_UNCLEAN(bfs_sb, sb)
  63. ((bfs_sb->s_from != -1) && (bfs_sb->s_to != -1) && !(sb->s_flags & MS_RDONLY))
  64. #ifdef __KERNEL__
  65. /* file.c */
  66. extern struct inode_operations bfs_file_inops;
  67. extern struct file_operations bfs_file_operations;
  68. extern struct address_space_operations bfs_aops;
  69. /* dir.c */
  70. extern struct inode_operations bfs_dir_inops;
  71. extern struct file_operations bfs_dir_operations;
  72. #endif /* __KERNEL__ */
  73. #endif /* _LINUX_BFS_FS_H */