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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _AFFS_FS_H
  2. #define _AFFS_FS_H
  3. /*
  4.  * The affs filesystem constants/structures
  5.  */
  6. #include <linux/types.h>
  7. #define AFFS_SUPER_MAGIC 0xadff
  8. struct affs_date;
  9. /* --- Prototypes ----------------------------------------------------------------------------- */
  10. /* amigaffs.c */
  11. extern int affs_insert_hash(struct inode *inode, struct buffer_head *bh);
  12. extern int affs_remove_hash(struct inode *dir, struct buffer_head *rem_bh);
  13. extern int affs_remove_header(struct dentry *dentry);
  14. extern u32 affs_checksum_block(struct super_block *sb, struct buffer_head *bh);
  15. extern void affs_fix_checksum(struct super_block *sb, struct buffer_head *bh);
  16. extern void secs_to_datestamp(time_t secs, struct affs_date *ds);
  17. extern mode_t prot_to_mode(u32 prot);
  18. extern void mode_to_prot(struct inode *inode);
  19. extern void affs_error(struct super_block *sb, const char *function, const char *fmt, ...);
  20. extern void affs_warning(struct super_block *sb, const char *function, const char *fmt, ...);
  21. extern int affs_check_name(const unsigned char *name, int len);
  22. extern int affs_copy_name(unsigned char *bstr, struct dentry *dentry);
  23. /* bitmap. c */
  24. extern u32 affs_count_free_bits(u32 blocksize, const void *data);
  25. extern u32 affs_count_free_blocks(struct super_block *s);
  26. extern void affs_free_block(struct super_block *sb, u32 block);
  27. extern u32 affs_alloc_block(struct inode *inode, u32 goal);
  28. extern int affs_init_bitmap(struct super_block *sb);
  29. /* namei.c */
  30. extern int affs_hash_name(struct super_block *sb, const u8 *name, unsigned int len);
  31. extern struct dentry *affs_lookup(struct inode *dir, struct dentry *dentry);
  32. extern int affs_unlink(struct inode *dir, struct dentry *dentry);
  33. extern int affs_create(struct inode *dir, struct dentry *dentry, int mode);
  34. extern int affs_mkdir(struct inode *dir, struct dentry *dentry, int mode);
  35. extern int affs_rmdir(struct inode *dir, struct dentry *dentry);
  36. extern int affs_link(struct dentry *olddentry, struct inode *dir,
  37.   struct dentry *dentry);
  38. extern int affs_symlink(struct inode *dir, struct dentry *dentry,
  39.      const char *symname);
  40. extern int affs_rename(struct inode *old_dir, struct dentry *old_dentry,
  41.     struct inode *new_dir, struct dentry *new_dentry);
  42. /* inode.c */
  43. extern unsigned long  affs_parent_ino(struct inode *dir);
  44. extern struct inode *affs_new_inode(struct inode *dir);
  45. extern int  affs_notify_change(struct dentry *dentry, struct iattr *attr);
  46. extern void  affs_put_inode(struct inode *inode);
  47. extern void  affs_delete_inode(struct inode *inode);
  48. extern void  affs_clear_inode(struct inode *inode);
  49. extern void  affs_read_inode(struct inode *inode);
  50. extern void  affs_write_inode(struct inode *inode, int);
  51. extern int  affs_add_entry(struct inode *dir, struct inode *inode, struct dentry *dentry, s32 type);
  52. /* super.c */
  53. extern int  affs_fs(void);
  54. /* file.c */
  55. void affs_free_prealloc(struct inode *inode);
  56. extern void affs_truncate(struct inode *);
  57. /* dir.c */
  58. extern void   affs_dir_truncate(struct inode *);
  59. /* jump tables */
  60. extern struct inode_operations  affs_file_inode_operations;
  61. extern struct inode_operations  affs_dir_inode_operations;
  62. extern struct inode_operations   affs_symlink_inode_operations;
  63. extern struct file_operations  affs_file_operations;
  64. extern struct file_operations  affs_file_operations_ofs;
  65. extern struct file_operations  affs_dir_operations;
  66. extern struct address_space_operations  affs_symlink_aops;
  67. extern struct address_space_operations  affs_aops;
  68. extern struct address_space_operations  affs_aops_ofs;
  69. extern struct dentry_operations  affs_dentry_operations;
  70. extern struct dentry_operations  affs_dentry_operations_intl;
  71. #endif