David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 1 | /* |
| 2 | * JFFS2 -- Journalling Flash File System, Version 2. |
| 3 | * |
| 4 | * Copyright © 2001-2007 Red Hat, Inc. |
David Woodhouse | 6088c05 | 2010-08-08 14:15:22 +0100 | [diff] [blame] | 5 | * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org> |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 6 | * |
| 7 | * Created by David Woodhouse <dwmw2@infradead.org> |
| 8 | * |
| 9 | * For licensing information, see the file 'LICENCE' in this directory. |
| 10 | * |
| 11 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 20 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
Artem B. Bityuckiy | 31fbdf7 | 2005-02-28 08:21:09 +0000 | [diff] [blame] | 27 | #define JFFS2_SB_FLAG_SCANNING 2 /* Flash scanning is in progress */ |
| 28 | #define JFFS2_SB_FLAG_BUILDING 4 /* File system building is in progress */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | struct jffs2_inodirty; |
| 31 | |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame] | 32 | struct jffs2_mount_opts { |
| 33 | bool override_compr; |
| 34 | unsigned int compr; |
Daniel Drake | 8da8ba2 | 2012-04-10 22:22:35 +0100 | [diff] [blame] | 35 | |
| 36 | /* The size of the reserved pool. The reserved pool is the JFFS2 flash |
| 37 | * space which may only be used by root cannot be used by the other |
| 38 | * users. This is implemented simply by means of not allowing the |
| 39 | * latter users to write to the file system if the amount if the |
| 40 | * available space is less then 'rp_size'. */ |
| 41 | unsigned int rp_size; |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame] | 42 | }; |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* A struct for the overall file system control. Pointers to |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 45 | jffs2_sb_info structs are named `c' in the source code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | Nee jffs_control |
| 47 | */ |
| 48 | struct jffs2_sb_info { |
| 49 | struct mtd_info *mtd; |
| 50 | |
| 51 | uint32_t highest_ino; |
| 52 | uint32_t checked_ino; |
| 53 | |
| 54 | unsigned int flags; |
| 55 | |
| 56 | struct task_struct *gc_task; /* GC task struct */ |
Thomas Gleixner | fff7afd | 2005-05-19 17:18:11 +0100 | [diff] [blame] | 57 | struct completion gc_thread_start; /* GC thread start completion */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct completion gc_thread_exit; /* GC thread exit completion port */ |
| 59 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 60 | struct mutex alloc_sem; /* Used to protect all the following |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | fields, and also to protect against |
| 62 | out-of-order writing of nodes. And GC. */ |
| 63 | uint32_t cleanmarker_size; /* Size of an _inline_ CLEANMARKER |
| 64 | (i.e. zero for OOB CLEANMARKER */ |
| 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 | /* Number of free blocks there must be before we... */ |
| 80 | uint8_t resv_blocks_write; /* ... allow a normal filesystem write */ |
| 81 | uint8_t resv_blocks_deletion; /* ... allow a normal filesystem deletion */ |
| 82 | uint8_t resv_blocks_gctrigger; /* ... wake up the GC thread */ |
| 83 | uint8_t resv_blocks_gcbad; /* ... pick a block from the bad_list to GC */ |
| 84 | uint8_t resv_blocks_gcmerge; /* ... merge pages when garbage collecting */ |
David Woodhouse | 8fb870df | 2007-10-06 15:12:58 -0400 | [diff] [blame] | 85 | /* Number of 'very dirty' blocks before we trigger immediate GC */ |
| 86 | uint8_t vdirty_blocks_gctrigger; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | uint32_t nospc_dirty_size; |
| 89 | |
| 90 | uint32_t nr_blocks; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 91 | struct jffs2_eraseblock *blocks; /* The whole array of blocks. Used for getting blocks |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | * from the offset (blocks[ofs / sector_size]) */ |
| 93 | struct jffs2_eraseblock *nextblock; /* The block we're currently filling */ |
| 94 | |
| 95 | struct jffs2_eraseblock *gcblock; /* The block we're currently garbage-collecting */ |
| 96 | |
| 97 | struct list_head clean_list; /* Blocks 100% full of clean data */ |
| 98 | struct list_head very_dirty_list; /* Blocks with lots of dirty space */ |
| 99 | struct list_head dirty_list; /* Blocks with some dirty space */ |
| 100 | struct list_head erasable_list; /* Blocks which are completely dirty, and need erasing */ |
| 101 | struct list_head erasable_pending_wbuf_list; /* Blocks which need erasing but only after the current wbuf is flushed */ |
| 102 | struct list_head erasing_list; /* Blocks which are currently erasing */ |
David Woodhouse | e2bc322 | 2008-04-23 14:15:24 +0100 | [diff] [blame] | 103 | struct list_head erase_checking_list; /* Blocks which are being checked and marked */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | struct list_head erase_pending_list; /* Blocks which need erasing now */ |
| 105 | struct list_head erase_complete_list; /* Blocks which are erased and need the clean marker written to them */ |
| 106 | struct list_head free_list; /* Blocks which are free and ready to be used */ |
| 107 | struct list_head bad_list; /* Bad blocks. */ |
| 108 | struct list_head bad_used_list; /* Bad blocks with valid data in. */ |
| 109 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 110 | spinlock_t erase_completion_lock; /* Protect free_list and erasing_list |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | against erase completion handler */ |
| 112 | wait_queue_head_t erase_wait; /* For waiting for erases to complete */ |
| 113 | |
| 114 | wait_queue_head_t inocache_wq; |
Daniel Drake | 65e5a0e | 2010-10-07 19:14:02 +0100 | [diff] [blame] | 115 | int inocache_hashsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | struct jffs2_inode_cache **inocache_list; |
| 117 | spinlock_t inocache_lock; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | /* Sem to allow jffs2_garbage_collect_deletion_dirent to |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 120 | drop the erase_completion_lock while it's holding a pointer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | to an obsoleted node. I don't like this. Alternatives welcomed. */ |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 122 | struct mutex erase_free_sem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Artem B. Bityutskiy | 733802d | 2005-09-22 12:25:00 +0100 | [diff] [blame] | 124 | uint32_t wbuf_pagesize; /* 0 for NOR and other flashes with no wbuf */ |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 125 | |
David Woodhouse | a6bc432 | 2007-07-11 14:23:54 +0100 | [diff] [blame] | 126 | #ifdef CONFIG_JFFS2_FS_WBUF_VERIFY |
| 127 | unsigned char *wbuf_verify; /* read-back buffer for verification */ |
| 128 | #endif |
Andrew Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 129 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER |
Artem Bityutskiy | a7a6ace1 | 2007-01-31 11:38:53 +0200 | [diff] [blame] | 130 | unsigned char *wbuf; /* Write-behind buffer for NAND flash */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | uint32_t wbuf_ofs; |
| 132 | uint32_t wbuf_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | struct jffs2_inodirty *wbuf_inodes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | struct rw_semaphore wbuf_sem; /* Protects the write buffer */ |
| 135 | |
Artem Bityutskiy | 208b14e | 2012-05-07 19:02:46 +0300 | [diff] [blame] | 136 | struct delayed_work wbuf_dwork; /* write-buffer write-out work */ |
Artem Bityutskiy | 208b14e | 2012-05-07 19:02:46 +0300 | [diff] [blame] | 137 | |
Artem Bityutskiy | a7a6ace1 | 2007-01-31 11:38:53 +0200 | [diff] [blame] | 138 | unsigned char *oobbuf; |
| 139 | int oobavail; /* How many bytes are available for JFFS2 in OOB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | #endif |
| 141 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 142 | struct jffs2_summary *summary; /* Summary information */ |
Andres Salomon | 92abc47 | 2011-10-16 18:15:16 -0700 | [diff] [blame] | 143 | struct jffs2_mount_opts mount_opts; |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 144 | |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 145 | #ifdef CONFIG_JFFS2_FS_XATTR |
| 146 | #define XATTRINDEX_HASHSIZE (57) |
| 147 | uint32_t highest_xid; |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 148 | uint32_t highest_xseqno; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 149 | struct list_head xattrindex[XATTRINDEX_HASHSIZE]; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 150 | struct list_head xattr_unchecked; |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 151 | struct list_head xattr_dead_list; |
| 152 | struct jffs2_xattr_ref *xref_dead_list; |
KaiGai Kohei | 8f2b6f4 | 2006-05-13 15:15:07 +0900 | [diff] [blame] | 153 | struct jffs2_xattr_ref *xref_temp; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 154 | struct rw_semaphore xattr_sem; |
| 155 | uint32_t xdatum_mem_usage; |
| 156 | uint32_t xdatum_mem_threshold; |
| 157 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /* OS-private pointer for getting back to master superblock info */ |
| 159 | void *os_priv; |
| 160 | }; |
| 161 | |
Dan Carpenter | 027d9ac | 2010-11-15 21:20:05 +0300 | [diff] [blame] | 162 | #endif /* _JFFS2_FS_SB */ |