jffs2_fs_sb.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* $Id: jffs2_fs_sb.h,v 1.54 2005/09/21 13:37:34 dedekind Exp $ */
  2. #ifndef _JFFS2_FS_SB
  3. #define _JFFS2_FS_SB
  4. #include <linux/types.h>
  5. #include <linux/spinlock.h>
  6. #include <linux/workqueue.h>
  7. #include <linux/completion.h>
  8. #include <asm/semaphore.h>
  9. #include <linux/timer.h>
  10. #include <linux/wait.h>
  11. #include <linux/list.h>
  12. #include <linux/rwsem.h>
  13. #define JFFS2_SB_FLAG_RO 1
  14. #define JFFS2_SB_FLAG_SCANNING 2 /* Flash scanning is in progress */
  15. #define JFFS2_SB_FLAG_BUILDING 4 /* File system building is in progress */
  16. struct jffs2_inodirty;
  17. /* A struct for the overall file system control. Pointers to
  18. jffs2_sb_info structs are named `c' in the source code.
  19. Nee jffs_control
  20. */
  21. struct jffs2_sb_info {
  22. struct mtd_info *mtd;
  23. uint32_t highest_ino;
  24. uint32_t checked_ino;
  25. unsigned int flags;
  26. struct task_struct *gc_task; /* GC task struct */
  27. struct completion gc_thread_start; /* GC thread start completion */
  28. struct completion gc_thread_exit; /* GC thread exit completion port */
  29. struct semaphore alloc_sem; /* Used to protect all the following
  30. fields, and also to protect against
  31. out-of-order writing of nodes. And GC. */
  32. uint32_t cleanmarker_size; /* Size of an _inline_ CLEANMARKER
  33. (i.e. zero for OOB CLEANMARKER */
  34. uint32_t flash_size;
  35. uint32_t used_size;
  36. uint32_t dirty_size;
  37. uint32_t wasted_size;
  38. uint32_t free_size;
  39. uint32_t erasing_size;
  40. uint32_t bad_size;
  41. uint32_t sector_size;
  42. uint32_t unchecked_size;
  43. uint32_t nr_free_blocks;
  44. uint32_t nr_erasing_blocks;
  45. /* Number of free blocks there must be before we... */
  46. uint8_t resv_blocks_write; /* ... allow a normal filesystem write */
  47. uint8_t resv_blocks_deletion; /* ... allow a normal filesystem deletion */
  48. uint8_t resv_blocks_gctrigger; /* ... wake up the GC thread */
  49. uint8_t resv_blocks_gcbad; /* ... pick a block from the bad_list to GC */
  50. uint8_t resv_blocks_gcmerge; /* ... merge pages when garbage collecting */
  51. uint32_t nospc_dirty_size;
  52. uint32_t nr_blocks;
  53. struct jffs2_eraseblock *blocks; /* The whole array of blocks. Used for getting blocks
  54. * from the offset (blocks[ofs / sector_size]) */
  55. struct jffs2_eraseblock *nextblock; /* The block we're currently filling */
  56. struct jffs2_eraseblock *gcblock; /* The block we're currently garbage-collecting */
  57. struct list_head clean_list; /* Blocks 100% full of clean data */
  58. struct list_head very_dirty_list; /* Blocks with lots of dirty space */
  59. struct list_head dirty_list; /* Blocks with some dirty space */
  60. struct list_head erasable_list; /* Blocks which are completely dirty, and need erasing */
  61. struct list_head erasable_pending_wbuf_list; /* Blocks which need erasing but only after the current wbuf is flushed */
  62. struct list_head erasing_list; /* Blocks which are currently erasing */
  63. struct list_head erase_pending_list; /* Blocks which need erasing now */
  64. struct list_head erase_complete_list; /* Blocks which are erased and need the clean marker written to them */
  65. struct list_head free_list; /* Blocks which are free and ready to be used */
  66. struct list_head bad_list; /* Bad blocks. */
  67. struct list_head bad_used_list; /* Bad blocks with valid data in. */
  68. spinlock_t erase_completion_lock; /* Protect free_list and erasing_list
  69. against erase completion handler */
  70. wait_queue_head_t erase_wait; /* For waiting for erases to complete */
  71. wait_queue_head_t inocache_wq;
  72. struct jffs2_inode_cache **inocache_list;
  73. spinlock_t inocache_lock;
  74. /* Sem to allow jffs2_garbage_collect_deletion_dirent to
  75. drop the erase_completion_lock while it's holding a pointer
  76. to an obsoleted node. I don't like this. Alternatives welcomed. */
  77. struct semaphore erase_free_sem;
  78. uint32_t wbuf_pagesize; /* 0 for NOR and other flashes with no wbuf */
  79. #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
  80. /* Write-behind buffer for NAND flash */
  81. unsigned char *wbuf;
  82. unsigned char *oobbuf;
  83. uint32_t wbuf_ofs;
  84. uint32_t wbuf_len;
  85. struct jffs2_inodirty *wbuf_inodes;
  86. struct rw_semaphore wbuf_sem; /* Protects the write buffer */
  87. /* Information about out-of-band area usage... */
  88. struct nand_ecclayout *ecclayout;
  89. uint32_t badblock_pos;
  90. uint32_t fsdata_pos;
  91. uint32_t fsdata_len;
  92. #endif
  93. struct jffs2_summary *summary; /* Summary information */
  94. #ifdef CONFIG_JFFS2_FS_XATTR
  95. #define XATTRINDEX_HASHSIZE (57)
  96. uint32_t highest_xid;
  97. uint32_t highest_xseqno;
  98. struct list_head xattrindex[XATTRINDEX_HASHSIZE];
  99. struct list_head xattr_unchecked;
  100. struct list_head xattr_dead_list;
  101. struct jffs2_xattr_ref *xref_dead_list;
  102. struct jffs2_xattr_ref *xref_temp;
  103. struct rw_semaphore xattr_sem;
  104. uint32_t xdatum_mem_usage;
  105. uint32_t xdatum_mem_threshold;
  106. #endif
  107. /* OS-private pointer for getting back to master superblock info */
  108. void *os_priv;
  109. };
  110. #endif /* _JFFS2_FB_SB */