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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: jffs2_fs_i.h,v 1.8 2001/04/18 13:05:28 dwmw2 Exp $ */
  2. #ifndef _JFFS2_FS_I
  3. #define _JFFS2_FS_I
  4. /* Include the pipe_inode_info at the beginning so that we can still
  5.    use the storage space in the inode when we have a pipe inode.
  6.    This sucks.
  7. */
  8. #undef THISSUCKS /* Only for 2.2 */
  9. #ifdef THISSUCKS
  10. #include <linux/pipe_fs_i.h>
  11. #endif
  12. struct jffs2_inode_info {
  13. #ifdef THISSUCKS
  14.         struct pipe_inode_info pipecrap;
  15. #endif
  16. /* We need an internal semaphore similar to inode->i_sem.
  17.    Unfortunately, we can't used the existing one, because
  18.    either the GC would deadlock, or we'd have to release it
  19.    before letting GC proceed. Or we'd have to put ugliness
  20.    into the GC code so it didn't attempt to obtain the i_sem
  21.    for the inode(s) which are already locked */
  22. struct semaphore sem;
  23. /* The highest (datanode) version number used for this ino */
  24. __u32 highest_version;
  25. /* List of data fragments which make up the file */
  26. struct jffs2_node_frag *fraglist;
  27. /* There may be one datanode which isn't referenced by any of the
  28.    above fragments, if it contains a metadata update but no actual
  29.    data - or if this is a directory inode */
  30. /* This also holds the _only_ dnode for symlinks/device nodes, 
  31.    etc. */
  32. struct jffs2_full_dnode *metadata;
  33. /* Directory entries */
  34. struct jffs2_full_dirent *dents;
  35. /* Some stuff we just have to keep in-core at all times, for each inode. */
  36. struct jffs2_inode_cache *inocache;
  37. /* Keep a pointer to the last physical node in the list. We don't 
  38.    use the doubly-linked lists because we don't want to increase
  39.    the memory usage that much. This is simpler */
  40. // struct jffs2_raw_node_ref *lastnode;
  41. __u16 flags;
  42. __u8 usercompr;
  43. };
  44. #ifdef JFFS2_OUT_OF_KERNEL
  45. #define JFFS2_INODE_INFO(i) ((struct jffs2_inode_info *) &(i)->u)
  46. #else
  47. #define JFFS2_INODE_INFO(i) (&i->u.jffs2_i)
  48. #endif
  49. #endif /* _JFFS2_FS_I */