qnx4.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #include <linux/fs.h>
  2. #include <linux/qnx4_fs.h>
  3. #define QNX4_DEBUG 0
  4. #if QNX4_DEBUG
  5. #define QNX4DEBUG(X) printk X
  6. #else
  7. #define QNX4DEBUG(X) (void) 0
  8. #endif
  9. struct qnx4_sb_info {
  10. unsigned int Version; /* may be useful */
  11. struct qnx4_inode_entry *BitMap; /* useful */
  12. };
  13. struct qnx4_inode_info {
  14. struct qnx4_inode_entry raw;
  15. loff_t mmu_private;
  16. struct inode vfs_inode;
  17. };
  18. extern struct inode *qnx4_iget(struct super_block *, unsigned long);
  19. extern struct dentry *qnx4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags);
  20. extern unsigned long qnx4_count_free_blocks(struct super_block *sb);
  21. extern unsigned long qnx4_block_map(struct inode *inode, long iblock);
  22. extern const struct inode_operations qnx4_dir_inode_operations;
  23. extern const struct file_operations qnx4_dir_operations;
  24. extern int qnx4_is_free(struct super_block *sb, long block);
  25. static inline struct qnx4_sb_info *qnx4_sb(struct super_block *sb)
  26. {
  27. return sb->s_fs_info;
  28. }
  29. static inline struct qnx4_inode_info *qnx4_i(struct inode *inode)
  30. {
  31. return container_of(inode, struct qnx4_inode_info, vfs_inode);
  32. }
  33. static inline struct qnx4_inode_entry *qnx4_raw_inode(struct inode *inode)
  34. {
  35. return &qnx4_i(inode)->raw;
  36. }