| Artem B. Bityutskiy | 733802d | 2005-09-22 12:25:00 +0100 | [diff] [blame] | 1 | /* $Id: jffs2_fs_sb.h,v 1.54 2005/09/21 13:37:34 dedekind Exp $ */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  | 
|  | 3 | #ifndef _JFFS2_FS_SB | 
|  | 4 | #define _JFFS2_FS_SB | 
|  | 5 |  | 
|  | 6 | #include <linux/types.h> | 
|  | 7 | #include <linux/spinlock.h> | 
|  | 8 | #include <linux/workqueue.h> | 
|  | 9 | #include <linux/completion.h> | 
|  | 10 | #include <asm/semaphore.h> | 
|  | 11 | #include <linux/timer.h> | 
|  | 12 | #include <linux/wait.h> | 
|  | 13 | #include <linux/list.h> | 
|  | 14 | #include <linux/rwsem.h> | 
|  | 15 |  | 
|  | 16 | #define JFFS2_SB_FLAG_RO 1 | 
| Artem B. Bityuckiy | 31fbdf7 | 2005-02-28 08:21:09 +0000 | [diff] [blame] | 17 | #define JFFS2_SB_FLAG_SCANNING 2 /* Flash scanning is in progress */ | 
|  | 18 | #define JFFS2_SB_FLAG_BUILDING 4 /* File system building is in progress */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 |  | 
|  | 20 | struct jffs2_inodirty; | 
|  | 21 |  | 
|  | 22 | /* A struct for the overall file system control.  Pointers to | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 23 | jffs2_sb_info structs are named `c' in the source code. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | Nee jffs_control | 
|  | 25 | */ | 
|  | 26 | struct jffs2_sb_info { | 
|  | 27 | struct mtd_info *mtd; | 
|  | 28 |  | 
|  | 29 | uint32_t highest_ino; | 
|  | 30 | uint32_t checked_ino; | 
|  | 31 |  | 
|  | 32 | unsigned int flags; | 
|  | 33 |  | 
|  | 34 | struct task_struct *gc_task;	/* GC task struct */ | 
| Thomas Gleixner | fff7afd | 2005-05-19 17:18:11 +0100 | [diff] [blame] | 35 | struct completion gc_thread_start; /* GC thread start completion */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | struct completion gc_thread_exit; /* GC thread exit completion port */ | 
|  | 37 |  | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 38 | struct semaphore alloc_sem;	/* Used to protect all the following | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
|  | 44 | uint32_t flash_size; | 
|  | 45 | uint32_t used_size; | 
|  | 46 | uint32_t dirty_size; | 
|  | 47 | uint32_t wasted_size; | 
|  | 48 | uint32_t free_size; | 
|  | 49 | uint32_t erasing_size; | 
|  | 50 | uint32_t bad_size; | 
|  | 51 | uint32_t sector_size; | 
|  | 52 | uint32_t unchecked_size; | 
|  | 53 |  | 
|  | 54 | uint32_t nr_free_blocks; | 
|  | 55 | uint32_t nr_erasing_blocks; | 
|  | 56 |  | 
|  | 57 | /* Number of free blocks there must be before we... */ | 
|  | 58 | uint8_t resv_blocks_write;	/* ... allow a normal filesystem write */ | 
|  | 59 | uint8_t resv_blocks_deletion;	/* ... allow a normal filesystem deletion */ | 
|  | 60 | uint8_t resv_blocks_gctrigger;	/* ... wake up the GC thread */ | 
|  | 61 | uint8_t resv_blocks_gcbad;	/* ... pick a block from the bad_list to GC */ | 
|  | 62 | uint8_t resv_blocks_gcmerge;	/* ... merge pages when garbage collecting */ | 
|  | 63 |  | 
|  | 64 | uint32_t nospc_dirty_size; | 
|  | 65 |  | 
|  | 66 | uint32_t nr_blocks; | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 67 | 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] | 68 | * from the offset (blocks[ofs / sector_size]) */ | 
|  | 69 | struct jffs2_eraseblock *nextblock;	/* The block we're currently filling */ | 
|  | 70 |  | 
|  | 71 | struct jffs2_eraseblock *gcblock;	/* The block we're currently garbage-collecting */ | 
|  | 72 |  | 
|  | 73 | struct list_head clean_list;		/* Blocks 100% full of clean data */ | 
|  | 74 | struct list_head very_dirty_list;	/* Blocks with lots of dirty space */ | 
|  | 75 | struct list_head dirty_list;		/* Blocks with some dirty space */ | 
|  | 76 | struct list_head erasable_list;		/* Blocks which are completely dirty, and need erasing */ | 
|  | 77 | struct list_head erasable_pending_wbuf_list;	/* Blocks which need erasing but only after the current wbuf is flushed */ | 
|  | 78 | struct list_head erasing_list;		/* Blocks which are currently erasing */ | 
|  | 79 | struct list_head erase_pending_list;	/* Blocks which need erasing now */ | 
|  | 80 | struct list_head erase_complete_list;	/* Blocks which are erased and need the clean marker written to them */ | 
|  | 81 | struct list_head free_list;		/* Blocks which are free and ready to be used */ | 
|  | 82 | struct list_head bad_list;		/* Bad blocks. */ | 
|  | 83 | struct list_head bad_used_list;		/* Bad blocks with valid data in. */ | 
|  | 84 |  | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 85 | spinlock_t erase_completion_lock;	/* Protect free_list and erasing_list | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | against erase completion handler */ | 
|  | 87 | wait_queue_head_t erase_wait;		/* For waiting for erases to complete */ | 
|  | 88 |  | 
|  | 89 | wait_queue_head_t inocache_wq; | 
|  | 90 | struct jffs2_inode_cache **inocache_list; | 
|  | 91 | spinlock_t inocache_lock; | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 92 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | /* Sem to allow jffs2_garbage_collect_deletion_dirent to | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 94 | drop the erase_completion_lock while it's holding a pointer | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | to an obsoleted node. I don't like this. Alternatives welcomed. */ | 
|  | 96 | struct semaphore erase_free_sem; | 
|  | 97 |  | 
| Artem B. Bityutskiy | 733802d | 2005-09-22 12:25:00 +0100 | [diff] [blame] | 98 | 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] | 99 |  | 
| Andrew Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 100 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /* Write-behind buffer for NAND flash */ | 
|  | 102 | unsigned char *wbuf; | 
| Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 103 | unsigned char *oobbuf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | uint32_t wbuf_ofs; | 
|  | 105 | uint32_t wbuf_len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | struct jffs2_inodirty *wbuf_inodes; | 
|  | 107 |  | 
|  | 108 | struct rw_semaphore wbuf_sem;	/* Protects the write buffer */ | 
|  | 109 |  | 
|  | 110 | /* Information about out-of-band area usage... */ | 
| Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 111 | struct nand_ecclayout *ecclayout; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | uint32_t badblock_pos; | 
|  | 113 | uint32_t fsdata_pos; | 
|  | 114 | uint32_t fsdata_len; | 
|  | 115 | #endif | 
|  | 116 |  | 
| Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 117 | struct jffs2_summary *summary;		/* Summary information */ | 
|  | 118 |  | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 119 | #ifdef CONFIG_JFFS2_FS_XATTR | 
|  | 120 | #define XATTRINDEX_HASHSIZE	(57) | 
|  | 121 | uint32_t highest_xid; | 
| KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 122 | uint32_t highest_xseqno; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 123 | struct list_head xattrindex[XATTRINDEX_HASHSIZE]; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 124 | struct list_head xattr_unchecked; | 
| KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 125 | struct list_head xattr_dead_list; | 
|  | 126 | struct jffs2_xattr_ref *xref_dead_list; | 
| KaiGai Kohei | 8f2b6f4 | 2006-05-13 15:15:07 +0900 | [diff] [blame] | 127 | struct jffs2_xattr_ref *xref_temp; | 
| KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 128 | struct rw_semaphore xattr_sem; | 
|  | 129 | uint32_t xdatum_mem_usage; | 
|  | 130 | uint32_t xdatum_mem_threshold; | 
|  | 131 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | /* OS-private pointer for getting back to master superblock info */ | 
|  | 133 | void *os_priv; | 
|  | 134 | }; | 
|  | 135 |  | 
|  | 136 | #endif /* _JFFS2_FB_SB */ |