jffs2_fs_sb.h 5.0 KB

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