1
2
3
4
5
6
7
8
9
10
11
12
13 #ifndef _JFFS2_FS_SB
14 #define _JFFS2_FS_SB
15
16 #include <linux/types.h>
17 #include <linux/spinlock.h>
18 #include <linux/workqueue.h>
19 #include <linux/completion.h>
20 #include <linux/mutex.h>
21 #include <linux/timer.h>
22 #include <linux/wait.h>
23 #include <linux/list.h>
24 #include <linux/rwsem.h>
25
26 #define JFFS2_SB_FLAG_RO 1
27 #define JFFS2_SB_FLAG_SCANNING 2
28 #define JFFS2_SB_FLAG_BUILDING 4
29
30 struct jffs2_inodirty;
31
32 struct jffs2_mount_opts {
33 bool override_compr;
34 unsigned int compr;
35
36
37
38
39
40
41 unsigned int rp_size;
42 };
43
44
45
46
47
48 struct jffs2_sb_info {
49 struct mtd_info *mtd;
50
51 uint32_t highest_ino;
52 uint32_t check_ino;
53
54 unsigned int flags;
55
56 struct task_struct *gc_task;
57 struct completion gc_thread_start;
58 struct completion gc_thread_exit;
59
60 struct mutex alloc_sem;
61
62
63 uint32_t cleanmarker_size;
64
65
66 uint32_t flash_size;
67 uint32_t used_size;
68 uint32_t dirty_size;
69 uint32_t wasted_size;
70 uint32_t free_size;
71 uint32_t erasing_size;
72 uint32_t bad_size;
73 uint32_t sector_size;
74 uint32_t unchecked_size;
75
76 uint32_t nr_free_blocks;
77 uint32_t nr_erasing_blocks;
78
79
80 uint8_t resv_blocks_write;
81 uint8_t resv_blocks_deletion;
82 uint8_t resv_blocks_gctrigger;
83 uint8_t resv_blocks_gcbad;
84 uint8_t resv_blocks_gcmerge;
85
86 uint8_t vdirty_blocks_gctrigger;
87
88 uint32_t nospc_dirty_size;
89
90 uint32_t nr_blocks;
91 struct jffs2_eraseblock *blocks;
92
93 struct jffs2_eraseblock *nextblock;
94
95 struct jffs2_eraseblock *gcblock;
96
97 struct list_head clean_list;
98 struct list_head very_dirty_list;
99 struct list_head dirty_list;
100 struct list_head erasable_list;
101 struct list_head erasable_pending_wbuf_list;
102 struct list_head erasing_list;
103 struct list_head erase_checking_list;
104 struct list_head erase_pending_list;
105 struct list_head erase_complete_list;
106 struct list_head free_list;
107 struct list_head bad_list;
108 struct list_head bad_used_list;
109
110 spinlock_t erase_completion_lock;
111
112 wait_queue_head_t erase_wait;
113
114 wait_queue_head_t inocache_wq;
115 int inocache_hashsize;
116 struct jffs2_inode_cache **inocache_list;
117 spinlock_t inocache_lock;
118
119
120
121
122 struct mutex erase_free_sem;
123
124 uint32_t wbuf_pagesize;
125
126 #ifdef CONFIG_JFFS2_FS_WBUF_VERIFY
127 unsigned char *wbuf_verify;
128 #endif
129 #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
130 unsigned char *wbuf;
131 uint32_t wbuf_ofs;
132 uint32_t wbuf_len;
133 struct jffs2_inodirty *wbuf_inodes;
134 struct rw_semaphore wbuf_sem;
135
136 struct delayed_work wbuf_dwork;
137
138 unsigned char *oobbuf;
139 int oobavail;
140 #endif
141
142 struct jffs2_summary *summary;
143 struct jffs2_mount_opts mount_opts;
144
145 #ifdef CONFIG_JFFS2_FS_XATTR
146 #define XATTRINDEX_HASHSIZE (57)
147 uint32_t highest_xid;
148 uint32_t highest_xseqno;
149 struct list_head xattrindex[XATTRINDEX_HASHSIZE];
150 struct list_head xattr_unchecked;
151 struct list_head xattr_dead_list;
152 struct jffs2_xattr_ref *xref_dead_list;
153 struct jffs2_xattr_ref *xref_temp;
154 struct rw_semaphore xattr_sem;
155 uint32_t xdatum_mem_usage;
156 uint32_t xdatum_mem_threshold;
157 #endif
158
159 void *os_priv;
160 };
161
162 #endif