qnx4.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. struct buffer_head *sb_buf; /* superblock buffer */
  11. struct qnx4_super_block *sb; /* our superblock */
  12. unsigned int Version; /* may be useful */
  13. struct qnx4_inode_entry *BitMap; /* useful */
  14. };
  15. struct qnx4_inode_info {
  16. struct qnx4_inode_entry raw;
  17. loff_t mmu_private;
  18. struct inode vfs_inode;
  19. };
  20. extern struct inode *qnx4_iget(struct super_block *, unsigned long);
  21. extern struct dentry *qnx4_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd);
  22. extern unsigned long qnx4_count_free_blocks(struct super_block *sb);
  23. extern unsigned long qnx4_block_map(struct inode *inode, long iblock);
  24. extern struct buffer_head *qnx4_bread(struct inode *, int, int);
  25. extern const struct inode_operations qnx4_file_inode_operations;
  26. extern const struct inode_operations qnx4_dir_inode_operations;
  27. extern const struct file_operations qnx4_file_operations;
  28. extern const struct file_operations qnx4_dir_operations;
  29. extern int qnx4_is_free(struct super_block *sb, long block);
  30. extern int qnx4_set_bitmap(struct super_block *sb, long block, int busy);
  31. extern int qnx4_create(struct inode *inode, struct dentry *dentry, int mode, struct nameidata *nd);
  32. extern void qnx4_truncate(struct inode *inode);
  33. extern void qnx4_free_inode(struct inode *inode);
  34. extern int qnx4_unlink(struct inode *dir, struct dentry *dentry);
  35. extern int qnx4_rmdir(struct inode *dir, struct dentry *dentry);
  36. static inline struct qnx4_sb_info *qnx4_sb(struct super_block *sb)
  37. {
  38. return sb->s_fs_info;
  39. }
  40. static inline struct qnx4_inode_info *qnx4_i(struct inode *inode)
  41. {
  42. return container_of(inode, struct qnx4_inode_info, vfs_inode);
  43. }
  44. static inline struct qnx4_inode_entry *qnx4_raw_inode(struct inode *inode)
  45. {
  46. return &qnx4_i(inode)->raw;
  47. }