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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _FAT_CVF
  2. #define _FAT_CVF
  3. #define CVF_USE_READPAGE  0x0001
  4. struct cvf_format
  5. { int cvf_version;
  6.   char* cvf_version_text;
  7.   unsigned long flags;
  8.   int (*detect_cvf) (struct super_block*sb);
  9.   int (*mount_cvf) (struct super_block*sb,char*options);
  10.   int (*unmount_cvf) (struct super_block*sb);
  11.   struct buffer_head* (*cvf_bread) (struct super_block*sb,int block);
  12.   struct buffer_head* (*cvf_getblk) (struct super_block*sb,int block);
  13.   void (*cvf_brelse) (struct super_block *sb,struct buffer_head *bh);
  14.   void (*cvf_mark_buffer_dirty) (struct super_block *sb,
  15.                               struct buffer_head *bh);
  16.   void (*cvf_set_uptodate) (struct super_block *sb,
  17.                          struct buffer_head *bh,
  18.                          int val);
  19.   int (*cvf_is_uptodate) (struct super_block *sb,struct buffer_head *bh);
  20.   void (*cvf_ll_rw_block) (struct super_block *sb,
  21.                         int opr,
  22.                         int nbreq,
  23.                         struct buffer_head *bh[32]);
  24.   int (*fat_access) (struct super_block *sb,int nr,int new_value);
  25.   int (*cvf_statfs) (struct super_block *sb,struct statfs *buf, int bufsiz);
  26.   int (*cvf_bmap) (struct inode *inode,int block);
  27.   ssize_t (*cvf_file_read) ( struct file *, char *, size_t, loff_t *);
  28.   ssize_t (*cvf_file_write) ( struct file *, const char *, size_t, loff_t *);
  29.   int (*cvf_mmap) (struct file *, struct vm_area_struct *);
  30.   int (*cvf_readpage) (struct inode *, struct page *);
  31.   int (*cvf_writepage) (struct inode *, struct page *);
  32.   int (*cvf_dir_ioctl) (struct inode * inode, struct file * filp,
  33.                         unsigned int cmd, unsigned long arg);
  34.   void (*zero_out_cluster) (struct inode*, int clusternr);
  35. };
  36. int register_cvf_format(struct cvf_format*cvf_format);
  37. int unregister_cvf_format(struct cvf_format*cvf_format);
  38. void dec_cvf_format_use_count_by_version(int version);
  39. int detect_cvf(struct super_block*sb,char*force);
  40. extern struct cvf_format *cvf_formats[];
  41. extern int cvf_format_use_count[];
  42. #endif