xref: /openbmc/linux/fs/jffs2/jffs2_fs_sb.h (revision cd3ed3c7)
1c00c310eSDavid Woodhouse /*
2c00c310eSDavid Woodhouse  * JFFS2 -- Journalling Flash File System, Version 2.
3c00c310eSDavid Woodhouse  *
4c00c310eSDavid Woodhouse  * Copyright © 2001-2007 Red Hat, Inc.
56088c058SDavid Woodhouse  * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org>
6c00c310eSDavid Woodhouse  *
7c00c310eSDavid Woodhouse  * Created by David Woodhouse <dwmw2@infradead.org>
8c00c310eSDavid Woodhouse  *
9c00c310eSDavid Woodhouse  * For licensing information, see the file 'LICENCE' in this directory.
10c00c310eSDavid Woodhouse  *
11c00c310eSDavid Woodhouse  */
12cbb9a561SDavid Woodhouse 
13cbb9a561SDavid Woodhouse #ifndef _JFFS2_FS_SB
14cbb9a561SDavid Woodhouse #define _JFFS2_FS_SB
15cbb9a561SDavid Woodhouse 
16cbb9a561SDavid Woodhouse #include <linux/types.h>
17cbb9a561SDavid Woodhouse #include <linux/spinlock.h>
18cbb9a561SDavid Woodhouse #include <linux/workqueue.h>
19cbb9a561SDavid Woodhouse #include <linux/completion.h>
20ced22070SDavid Woodhouse #include <linux/mutex.h>
21cbb9a561SDavid Woodhouse #include <linux/timer.h>
22cbb9a561SDavid Woodhouse #include <linux/wait.h>
23cbb9a561SDavid Woodhouse #include <linux/list.h>
24cbb9a561SDavid Woodhouse #include <linux/rwsem.h>
25cbb9a561SDavid Woodhouse 
26cbb9a561SDavid Woodhouse #define JFFS2_SB_FLAG_RO 1
27cbb9a561SDavid Woodhouse #define JFFS2_SB_FLAG_SCANNING 2 /* Flash scanning is in progress */
28cbb9a561SDavid Woodhouse #define JFFS2_SB_FLAG_BUILDING 4 /* File system building is in progress */
29cbb9a561SDavid Woodhouse 
30cbb9a561SDavid Woodhouse struct jffs2_inodirty;
31cbb9a561SDavid Woodhouse 
3292abc475SAndres Salomon struct jffs2_mount_opts {
3392abc475SAndres Salomon 	bool override_compr;
3492abc475SAndres Salomon 	unsigned int compr;
358da8ba2eSDaniel Drake 
368da8ba2eSDaniel Drake 	/* The size of the reserved pool. The reserved pool is the JFFS2 flash
378da8ba2eSDaniel Drake 	 * space which may only be used by root cannot be used by the other
388da8ba2eSDaniel Drake 	 * users. This is implemented simply by means of not allowing the
398da8ba2eSDaniel Drake 	 * latter users to write to the file system if the amount if the
408da8ba2eSDaniel Drake 	 * available space is less then 'rp_size'. */
41*cd3ed3c7Slizhe 	bool set_rp_size;
428da8ba2eSDaniel Drake 	unsigned int rp_size;
4392abc475SAndres Salomon };
4492abc475SAndres Salomon 
45cbb9a561SDavid Woodhouse /* A struct for the overall file system control.  Pointers to
46cbb9a561SDavid Woodhouse    jffs2_sb_info structs are named `c' in the source code.
47cbb9a561SDavid Woodhouse    Nee jffs_control
48cbb9a561SDavid Woodhouse */
49cbb9a561SDavid Woodhouse struct jffs2_sb_info {
50cbb9a561SDavid Woodhouse 	struct mtd_info *mtd;
51cbb9a561SDavid Woodhouse 
52cbb9a561SDavid Woodhouse 	uint32_t highest_ino;
535817b9dcSDavid Woodhouse 	uint32_t check_ino;		/* *NEXT* inode to be checked */
54cbb9a561SDavid Woodhouse 
55cbb9a561SDavid Woodhouse 	unsigned int flags;
56cbb9a561SDavid Woodhouse 
57cbb9a561SDavid Woodhouse 	struct task_struct *gc_task;	/* GC task struct */
58cbb9a561SDavid Woodhouse 	struct completion gc_thread_start; /* GC thread start completion */
59cbb9a561SDavid Woodhouse 	struct completion gc_thread_exit; /* GC thread exit completion port */
60cbb9a561SDavid Woodhouse 
61ced22070SDavid Woodhouse 	struct mutex alloc_sem;		/* Used to protect all the following
62cbb9a561SDavid Woodhouse 					   fields, and also to protect against
63cbb9a561SDavid Woodhouse 					   out-of-order writing of nodes. And GC. */
64cbb9a561SDavid Woodhouse 	uint32_t cleanmarker_size;	/* Size of an _inline_ CLEANMARKER
65cbb9a561SDavid Woodhouse 					 (i.e. zero for OOB CLEANMARKER */
66cbb9a561SDavid Woodhouse 
67cbb9a561SDavid Woodhouse 	uint32_t flash_size;
68cbb9a561SDavid Woodhouse 	uint32_t used_size;
69cbb9a561SDavid Woodhouse 	uint32_t dirty_size;
70cbb9a561SDavid Woodhouse 	uint32_t wasted_size;
71cbb9a561SDavid Woodhouse 	uint32_t free_size;
72cbb9a561SDavid Woodhouse 	uint32_t erasing_size;
73cbb9a561SDavid Woodhouse 	uint32_t bad_size;
74cbb9a561SDavid Woodhouse 	uint32_t sector_size;
75cbb9a561SDavid Woodhouse 	uint32_t unchecked_size;
76cbb9a561SDavid Woodhouse 
77cbb9a561SDavid Woodhouse 	uint32_t nr_free_blocks;
78cbb9a561SDavid Woodhouse 	uint32_t nr_erasing_blocks;
79cbb9a561SDavid Woodhouse 
80cbb9a561SDavid Woodhouse 	/* Number of free blocks there must be before we... */
81cbb9a561SDavid Woodhouse 	uint8_t resv_blocks_write;	/* ... allow a normal filesystem write */
82cbb9a561SDavid Woodhouse 	uint8_t resv_blocks_deletion;	/* ... allow a normal filesystem deletion */
83cbb9a561SDavid Woodhouse 	uint8_t resv_blocks_gctrigger;	/* ... wake up the GC thread */
84cbb9a561SDavid Woodhouse 	uint8_t resv_blocks_gcbad;	/* ... pick a block from the bad_list to GC */
85cbb9a561SDavid Woodhouse 	uint8_t resv_blocks_gcmerge;	/* ... merge pages when garbage collecting */
868fb870dfSDavid Woodhouse 	/* Number of 'very dirty' blocks before we trigger immediate GC */
878fb870dfSDavid Woodhouse 	uint8_t vdirty_blocks_gctrigger;
88cbb9a561SDavid Woodhouse 
89cbb9a561SDavid Woodhouse 	uint32_t nospc_dirty_size;
90cbb9a561SDavid Woodhouse 
91cbb9a561SDavid Woodhouse 	uint32_t nr_blocks;
92cbb9a561SDavid Woodhouse 	struct jffs2_eraseblock *blocks;	/* The whole array of blocks. Used for getting blocks
93cbb9a561SDavid Woodhouse 						 * from the offset (blocks[ofs / sector_size]) */
94cbb9a561SDavid Woodhouse 	struct jffs2_eraseblock *nextblock;	/* The block we're currently filling */
95cbb9a561SDavid Woodhouse 
96cbb9a561SDavid Woodhouse 	struct jffs2_eraseblock *gcblock;	/* The block we're currently garbage-collecting */
97cbb9a561SDavid Woodhouse 
98cbb9a561SDavid Woodhouse 	struct list_head clean_list;		/* Blocks 100% full of clean data */
99cbb9a561SDavid Woodhouse 	struct list_head very_dirty_list;	/* Blocks with lots of dirty space */
100cbb9a561SDavid Woodhouse 	struct list_head dirty_list;		/* Blocks with some dirty space */
101cbb9a561SDavid Woodhouse 	struct list_head erasable_list;		/* Blocks which are completely dirty, and need erasing */
102cbb9a561SDavid Woodhouse 	struct list_head erasable_pending_wbuf_list;	/* Blocks which need erasing but only after the current wbuf is flushed */
103cbb9a561SDavid Woodhouse 	struct list_head erasing_list;		/* Blocks which are currently erasing */
104e2bc322bSDavid Woodhouse 	struct list_head erase_checking_list;	/* Blocks which are being checked and marked */
105cbb9a561SDavid Woodhouse 	struct list_head erase_pending_list;	/* Blocks which need erasing now */
106cbb9a561SDavid Woodhouse 	struct list_head erase_complete_list;	/* Blocks which are erased and need the clean marker written to them */
107cbb9a561SDavid Woodhouse 	struct list_head free_list;		/* Blocks which are free and ready to be used */
108cbb9a561SDavid Woodhouse 	struct list_head bad_list;		/* Bad blocks. */
109cbb9a561SDavid Woodhouse 	struct list_head bad_used_list;		/* Bad blocks with valid data in. */
110cbb9a561SDavid Woodhouse 
111cbb9a561SDavid Woodhouse 	spinlock_t erase_completion_lock;	/* Protect free_list and erasing_list
112cbb9a561SDavid Woodhouse 						   against erase completion handler */
113cbb9a561SDavid Woodhouse 	wait_queue_head_t erase_wait;		/* For waiting for erases to complete */
114cbb9a561SDavid Woodhouse 
115cbb9a561SDavid Woodhouse 	wait_queue_head_t inocache_wq;
11665e5a0e1SDaniel Drake 	int inocache_hashsize;
117cbb9a561SDavid Woodhouse 	struct jffs2_inode_cache **inocache_list;
118cbb9a561SDavid Woodhouse 	spinlock_t inocache_lock;
119cbb9a561SDavid Woodhouse 
120cbb9a561SDavid Woodhouse 	/* Sem to allow jffs2_garbage_collect_deletion_dirent to
121cbb9a561SDavid Woodhouse 	   drop the erase_completion_lock while it's holding a pointer
122cbb9a561SDavid Woodhouse 	   to an obsoleted node. I don't like this. Alternatives welcomed. */
123ced22070SDavid Woodhouse 	struct mutex erase_free_sem;
124cbb9a561SDavid Woodhouse 
125cbb9a561SDavid Woodhouse 	uint32_t wbuf_pagesize; /* 0 for NOR and other flashes with no wbuf */
126cbb9a561SDavid Woodhouse 
127a6bc432eSDavid Woodhouse #ifdef CONFIG_JFFS2_FS_WBUF_VERIFY
128a6bc432eSDavid Woodhouse 	unsigned char *wbuf_verify; /* read-back buffer for verification */
129a6bc432eSDavid Woodhouse #endif
130cbb9a561SDavid Woodhouse #ifdef CONFIG_JFFS2_FS_WRITEBUFFER
131a7a6ace1SArtem Bityutskiy 	unsigned char *wbuf; /* Write-behind buffer for NAND flash */
132cbb9a561SDavid Woodhouse 	uint32_t wbuf_ofs;
133cbb9a561SDavid Woodhouse 	uint32_t wbuf_len;
134cbb9a561SDavid Woodhouse 	struct jffs2_inodirty *wbuf_inodes;
135cbb9a561SDavid Woodhouse 	struct rw_semaphore wbuf_sem;	/* Protects the write buffer */
136cbb9a561SDavid Woodhouse 
137208b14e5SArtem Bityutskiy 	struct delayed_work wbuf_dwork; /* write-buffer write-out work */
138208b14e5SArtem Bityutskiy 
139a7a6ace1SArtem Bityutskiy 	unsigned char *oobbuf;
140a7a6ace1SArtem Bityutskiy 	int oobavail; /* How many bytes are available for JFFS2 in OOB */
141cbb9a561SDavid Woodhouse #endif
142cbb9a561SDavid Woodhouse 
143cbb9a561SDavid Woodhouse 	struct jffs2_summary *summary;		/* Summary information */
14492abc475SAndres Salomon 	struct jffs2_mount_opts mount_opts;
145cbb9a561SDavid Woodhouse 
146aa98d7cfSKaiGai Kohei #ifdef CONFIG_JFFS2_FS_XATTR
147aa98d7cfSKaiGai Kohei #define XATTRINDEX_HASHSIZE	(57)
148aa98d7cfSKaiGai Kohei 	uint32_t highest_xid;
149c9f700f8SKaiGai Kohei 	uint32_t highest_xseqno;
150aa98d7cfSKaiGai Kohei 	struct list_head xattrindex[XATTRINDEX_HASHSIZE];
151aa98d7cfSKaiGai Kohei 	struct list_head xattr_unchecked;
152c9f700f8SKaiGai Kohei 	struct list_head xattr_dead_list;
153c9f700f8SKaiGai Kohei 	struct jffs2_xattr_ref *xref_dead_list;
1548f2b6f49SKaiGai Kohei 	struct jffs2_xattr_ref *xref_temp;
155aa98d7cfSKaiGai Kohei 	struct rw_semaphore xattr_sem;
156aa98d7cfSKaiGai Kohei 	uint32_t xdatum_mem_usage;
157aa98d7cfSKaiGai Kohei 	uint32_t xdatum_mem_threshold;
158aa98d7cfSKaiGai Kohei #endif
159cbb9a561SDavid Woodhouse 	/* OS-private pointer for getting back to master superblock info */
160cbb9a561SDavid Woodhouse 	void *os_priv;
161cbb9a561SDavid Woodhouse };
162cbb9a561SDavid Woodhouse 
163027d9ac2SDan Carpenter #endif /* _JFFS2_FS_SB */
164