| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * JFFS2 -- Journalling Flash File System, Version 2. | 
|  | 3 | * | 
| David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 4 | * Copyright © 2001-2007 Red Hat, Inc. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * | 
|  | 6 | * Created by David Woodhouse <dwmw2@infradead.org> | 
|  | 7 | * | 
|  | 8 | * For licensing information, see the file 'LICENCE' in this directory. | 
|  | 9 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ | 
|  | 11 |  | 
|  | 12 | #include <linux/kernel.h> | 
|  | 13 | #include <linux/slab.h> | 
|  | 14 | #include <linux/mtd/mtd.h> | 
|  | 15 | #include <linux/compiler.h> | 
|  | 16 | #include <linux/crc32.h> | 
|  | 17 | #include <linux/sched.h> | 
|  | 18 | #include <linux/pagemap.h> | 
|  | 19 | #include "nodelist.h" | 
|  | 20 |  | 
|  | 21 | struct erase_priv_struct { | 
|  | 22 | struct jffs2_eraseblock *jeb; | 
|  | 23 | struct jffs2_sb_info *c; | 
|  | 24 | }; | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 25 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #ifndef __ECOS | 
|  | 27 | static void jffs2_erase_callback(struct erase_info *); | 
|  | 28 | #endif | 
|  | 29 | static void jffs2_erase_failed(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset); | 
|  | 30 | static void jffs2_erase_succeeded(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static void jffs2_mark_erased_block(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb); | 
|  | 32 |  | 
|  | 33 | static void jffs2_erase_block(struct jffs2_sb_info *c, | 
|  | 34 | struct jffs2_eraseblock *jeb) | 
|  | 35 | { | 
|  | 36 | int ret; | 
|  | 37 | uint32_t bad_offset; | 
|  | 38 | #ifdef __ECOS | 
|  | 39 | ret = jffs2_flash_erase(c, jeb); | 
|  | 40 | if (!ret) { | 
| David Woodhouse | ef53cb0 | 2007-07-10 10:01:22 +0100 | [diff] [blame] | 41 | jffs2_erase_succeeded(c, jeb); | 
|  | 42 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | } | 
|  | 44 | bad_offset = jeb->offset; | 
|  | 45 | #else /* Linux */ | 
|  | 46 | struct erase_info *instr; | 
|  | 47 |  | 
| Artem B. Bityutskiy | e0c8e42 | 2005-07-24 16:14:17 +0100 | [diff] [blame] | 48 | D1(printk(KERN_DEBUG "jffs2_erase_block(): erase block %#08x (range %#08x-%#08x)\n", | 
|  | 49 | jeb->offset, jeb->offset, jeb->offset + c->sector_size)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | instr = kmalloc(sizeof(struct erase_info) + sizeof(struct erase_priv_struct), GFP_KERNEL); | 
|  | 51 | if (!instr) { | 
|  | 52 | printk(KERN_WARNING "kmalloc for struct erase_info in jffs2_erase_block failed. Refiling block for later\n"); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 53 | mutex_lock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | spin_lock(&c->erase_completion_lock); | 
| Akinobu Mita | f116629 | 2006-06-26 00:24:46 -0700 | [diff] [blame] | 55 | list_move(&jeb->list, &c->erase_pending_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | c->erasing_size -= c->sector_size; | 
|  | 57 | c->dirty_size += c->sector_size; | 
|  | 58 | jeb->dirty_size = c->sector_size; | 
|  | 59 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 60 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | return; | 
|  | 62 | } | 
|  | 63 |  | 
|  | 64 | memset(instr, 0, sizeof(*instr)); | 
|  | 65 |  | 
|  | 66 | instr->mtd = c->mtd; | 
|  | 67 | instr->addr = jeb->offset; | 
|  | 68 | instr->len = c->sector_size; | 
|  | 69 | instr->callback = jffs2_erase_callback; | 
|  | 70 | instr->priv = (unsigned long)(&instr[1]); | 
| Adrian Hunter | bb0eb21 | 2008-08-12 12:40:50 +0300 | [diff] [blame] | 71 | instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN; | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 72 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | ((struct erase_priv_struct *)instr->priv)->jeb = jeb; | 
|  | 74 | ((struct erase_priv_struct *)instr->priv)->c = c; | 
|  | 75 |  | 
|  | 76 | ret = c->mtd->erase(c->mtd, instr); | 
|  | 77 | if (!ret) | 
|  | 78 | return; | 
|  | 79 |  | 
|  | 80 | bad_offset = instr->fail_addr; | 
|  | 81 | kfree(instr); | 
|  | 82 | #endif /* __ECOS */ | 
|  | 83 |  | 
|  | 84 | if (ret == -ENOMEM || ret == -EAGAIN) { | 
|  | 85 | /* Erase failed immediately. Refile it on the list */ | 
|  | 86 | D1(printk(KERN_DEBUG "Erase at 0x%08x failed: %d. Refiling on erase_pending_list\n", jeb->offset, ret)); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 87 | mutex_lock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | spin_lock(&c->erase_completion_lock); | 
| Akinobu Mita | f116629 | 2006-06-26 00:24:46 -0700 | [diff] [blame] | 89 | list_move(&jeb->list, &c->erase_pending_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | c->erasing_size -= c->sector_size; | 
|  | 91 | c->dirty_size += c->sector_size; | 
|  | 92 | jeb->dirty_size = c->sector_size; | 
|  | 93 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 94 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | return; | 
|  | 96 | } | 
|  | 97 |  | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 98 | if (ret == -EROFS) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | printk(KERN_WARNING "Erase at 0x%08x failed immediately: -EROFS. Is the sector locked?\n", jeb->offset); | 
|  | 100 | else | 
|  | 101 | printk(KERN_WARNING "Erase at 0x%08x failed immediately: errno %d\n", jeb->offset, ret); | 
|  | 102 |  | 
|  | 103 | jffs2_erase_failed(c, jeb, bad_offset); | 
|  | 104 | } | 
|  | 105 |  | 
|  | 106 | void jffs2_erase_pending_blocks(struct jffs2_sb_info *c, int count) | 
|  | 107 | { | 
|  | 108 | struct jffs2_eraseblock *jeb; | 
|  | 109 |  | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 110 | mutex_lock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 |  | 
|  | 112 | spin_lock(&c->erase_completion_lock); | 
|  | 113 |  | 
|  | 114 | while (!list_empty(&c->erase_complete_list) || | 
|  | 115 | !list_empty(&c->erase_pending_list)) { | 
|  | 116 |  | 
|  | 117 | if (!list_empty(&c->erase_complete_list)) { | 
|  | 118 | jeb = list_entry(c->erase_complete_list.next, struct jffs2_eraseblock, list); | 
| David Woodhouse | e2bc322 | 2008-04-23 14:15:24 +0100 | [diff] [blame] | 119 | list_move(&jeb->list, &c->erase_checking_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 121 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | jffs2_mark_erased_block(c, jeb); | 
|  | 123 |  | 
|  | 124 | if (!--count) { | 
|  | 125 | D1(printk(KERN_DEBUG "Count reached. jffs2_erase_pending_blocks leaving\n")); | 
|  | 126 | goto done; | 
|  | 127 | } | 
|  | 128 |  | 
|  | 129 | } else if (!list_empty(&c->erase_pending_list)) { | 
|  | 130 | jeb = list_entry(c->erase_pending_list.next, struct jffs2_eraseblock, list); | 
|  | 131 | D1(printk(KERN_DEBUG "Starting erase of pending block 0x%08x\n", jeb->offset)); | 
|  | 132 | list_del(&jeb->list); | 
|  | 133 | c->erasing_size += c->sector_size; | 
|  | 134 | c->wasted_size -= jeb->wasted_size; | 
|  | 135 | c->free_size -= jeb->free_size; | 
|  | 136 | c->used_size -= jeb->used_size; | 
|  | 137 | c->dirty_size -= jeb->dirty_size; | 
|  | 138 | jeb->wasted_size = jeb->used_size = jeb->dirty_size = jeb->free_size = 0; | 
| David Woodhouse | c38c1b6 | 2006-05-25 01:38:27 +0100 | [diff] [blame] | 139 | jffs2_free_jeb_node_refs(c, jeb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | list_add(&jeb->list, &c->erasing_list); | 
|  | 141 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 142 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 |  | 
|  | 144 | jffs2_erase_block(c, jeb); | 
|  | 145 |  | 
|  | 146 | } else { | 
|  | 147 | BUG(); | 
|  | 148 | } | 
|  | 149 |  | 
|  | 150 | /* Be nice */ | 
| Joakim Tjernlund | fd53249 | 2007-06-26 23:32:10 +0200 | [diff] [blame] | 151 | yield(); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 152 | mutex_lock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | spin_lock(&c->erase_completion_lock); | 
|  | 154 | } | 
|  | 155 |  | 
|  | 156 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 157 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | done: | 
|  | 159 | D1(printk(KERN_DEBUG "jffs2_erase_pending_blocks completed\n")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } | 
|  | 161 |  | 
|  | 162 | static void jffs2_erase_succeeded(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb) | 
|  | 163 | { | 
|  | 164 | D1(printk(KERN_DEBUG "Erase completed successfully at 0x%08x\n", jeb->offset)); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 165 | mutex_lock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | spin_lock(&c->erase_completion_lock); | 
| Akinobu Mita | f116629 | 2006-06-26 00:24:46 -0700 | [diff] [blame] | 167 | list_move_tail(&jeb->list, &c->erase_complete_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 169 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | /* Ensure that kupdated calls us again to mark them clean */ | 
|  | 171 | jffs2_erase_pending_trigger(c); | 
|  | 172 | } | 
|  | 173 |  | 
|  | 174 | static void jffs2_erase_failed(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset) | 
|  | 175 | { | 
|  | 176 | /* For NAND, if the failure did not occur at the device level for a | 
|  | 177 | specific physical page, don't bother updating the bad block table. */ | 
| Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 178 | if (jffs2_cleanmarker_oob(c) && (bad_offset != (uint32_t)MTD_FAIL_ADDR_UNKNOWN)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | /* We had a device-level failure to erase.  Let's see if we've | 
|  | 180 | failed too many times. */ | 
|  | 181 | if (!jffs2_write_nand_badblock(c, jeb, bad_offset)) { | 
|  | 182 | /* We'd like to give this block another try. */ | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 183 | mutex_lock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | spin_lock(&c->erase_completion_lock); | 
| Akinobu Mita | f116629 | 2006-06-26 00:24:46 -0700 | [diff] [blame] | 185 | list_move(&jeb->list, &c->erase_pending_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | c->erasing_size -= c->sector_size; | 
|  | 187 | c->dirty_size += c->sector_size; | 
|  | 188 | jeb->dirty_size = c->sector_size; | 
|  | 189 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 190 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | return; | 
|  | 192 | } | 
|  | 193 | } | 
|  | 194 |  | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 195 | mutex_lock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | spin_lock(&c->erase_completion_lock); | 
|  | 197 | c->erasing_size -= c->sector_size; | 
|  | 198 | c->bad_size += c->sector_size; | 
| Akinobu Mita | f116629 | 2006-06-26 00:24:46 -0700 | [diff] [blame] | 199 | list_move(&jeb->list, &c->bad_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | c->nr_erasing_blocks--; | 
|  | 201 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 202 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | wake_up(&c->erase_wait); | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 204 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 |  | 
|  | 206 | #ifndef __ECOS | 
|  | 207 | static void jffs2_erase_callback(struct erase_info *instr) | 
|  | 208 | { | 
|  | 209 | struct erase_priv_struct *priv = (void *)instr->priv; | 
|  | 210 |  | 
|  | 211 | if(instr->state != MTD_ERASE_DONE) { | 
| Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 212 | printk(KERN_WARNING "Erase at 0x%08llx finished, but state != MTD_ERASE_DONE. State is 0x%x instead.\n", | 
|  | 213 | (unsigned long long)instr->addr, instr->state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | jffs2_erase_failed(priv->c, priv->jeb, instr->fail_addr); | 
|  | 215 | } else { | 
|  | 216 | jffs2_erase_succeeded(priv->c, priv->jeb); | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 217 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | kfree(instr); | 
|  | 219 | } | 
|  | 220 | #endif /* !__ECOS */ | 
|  | 221 |  | 
|  | 222 | /* Hmmm. Maybe we should accept the extra space it takes and make | 
|  | 223 | this a standard doubly-linked list? */ | 
|  | 224 | static inline void jffs2_remove_node_refs_from_ino_list(struct jffs2_sb_info *c, | 
|  | 225 | struct jffs2_raw_node_ref *ref, struct jffs2_eraseblock *jeb) | 
|  | 226 | { | 
|  | 227 | struct jffs2_inode_cache *ic = NULL; | 
|  | 228 | struct jffs2_raw_node_ref **prev; | 
|  | 229 |  | 
|  | 230 | prev = &ref->next_in_ino; | 
|  | 231 |  | 
|  | 232 | /* Walk the inode's list once, removing any nodes from this eraseblock */ | 
|  | 233 | while (1) { | 
|  | 234 | if (!(*prev)->next_in_ino) { | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 235 | /* We're looking at the jffs2_inode_cache, which is | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | at the end of the linked list. Stash it and continue | 
|  | 237 | from the beginning of the list */ | 
|  | 238 | ic = (struct jffs2_inode_cache *)(*prev); | 
|  | 239 | prev = &ic->nodes; | 
|  | 240 | continue; | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 241 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 |  | 
| Andrew Victor | 3be3667 | 2005-02-09 09:09:05 +0000 | [diff] [blame] | 243 | if (SECTOR_ADDR((*prev)->flash_offset) == jeb->offset) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | /* It's in the block we're erasing */ | 
|  | 245 | struct jffs2_raw_node_ref *this; | 
|  | 246 |  | 
|  | 247 | this = *prev; | 
|  | 248 | *prev = this->next_in_ino; | 
|  | 249 | this->next_in_ino = NULL; | 
|  | 250 |  | 
|  | 251 | if (this == ref) | 
|  | 252 | break; | 
|  | 253 |  | 
|  | 254 | continue; | 
|  | 255 | } | 
|  | 256 | /* Not to be deleted. Skip */ | 
|  | 257 | prev = &((*prev)->next_in_ino); | 
|  | 258 | } | 
|  | 259 |  | 
|  | 260 | /* PARANOIA */ | 
|  | 261 | if (!ic) { | 
| KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 262 | JFFS2_WARNING("inode_cache/xattr_datum/xattr_ref" | 
|  | 263 | " not found in remove_node_refs()!!\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | return; | 
|  | 265 | } | 
|  | 266 |  | 
|  | 267 | D1(printk(KERN_DEBUG "Removed nodes in range 0x%08x-0x%08x from ino #%u\n", | 
|  | 268 | jeb->offset, jeb->offset + c->sector_size, ic->ino)); | 
|  | 269 |  | 
|  | 270 | D2({ | 
|  | 271 | int i=0; | 
|  | 272 | struct jffs2_raw_node_ref *this; | 
|  | 273 | printk(KERN_DEBUG "After remove_node_refs_from_ino_list: \n" KERN_DEBUG); | 
|  | 274 |  | 
|  | 275 | this = ic->nodes; | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 276 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | while(this) { | 
|  | 278 | printk( "0x%08x(%d)->", ref_offset(this), ref_flags(this)); | 
|  | 279 | if (++i == 5) { | 
|  | 280 | printk("\n" KERN_DEBUG); | 
|  | 281 | i=0; | 
|  | 282 | } | 
|  | 283 | this = this->next_in_ino; | 
|  | 284 | } | 
|  | 285 | printk("\n"); | 
|  | 286 | }); | 
|  | 287 |  | 
| KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 288 | switch (ic->class) { | 
|  | 289 | #ifdef CONFIG_JFFS2_FS_XATTR | 
|  | 290 | case RAWNODE_CLASS_XATTR_DATUM: | 
|  | 291 | jffs2_release_xattr_datum(c, (struct jffs2_xattr_datum *)ic); | 
|  | 292 | break; | 
|  | 293 | case RAWNODE_CLASS_XATTR_REF: | 
|  | 294 | jffs2_release_xattr_ref(c, (struct jffs2_xattr_ref *)ic); | 
|  | 295 | break; | 
|  | 296 | #endif | 
|  | 297 | default: | 
| David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 298 | if (ic->nodes == (void *)ic && ic->pino_nlink == 0) | 
| KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 299 | jffs2_del_ino_cache(c, ic); | 
|  | 300 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | } | 
|  | 302 |  | 
| David Woodhouse | c38c1b6 | 2006-05-25 01:38:27 +0100 | [diff] [blame] | 303 | void jffs2_free_jeb_node_refs(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { | 
| David Woodhouse | 9bfeb69 | 2006-05-26 21:19:05 +0100 | [diff] [blame] | 305 | struct jffs2_raw_node_ref *block, *ref; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | D1(printk(KERN_DEBUG "Freeing all node refs for eraseblock offset 0x%08x\n", jeb->offset)); | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 307 |  | 
| David Woodhouse | 9bfeb69 | 2006-05-26 21:19:05 +0100 | [diff] [blame] | 308 | block = ref = jeb->first_node; | 
|  | 309 |  | 
|  | 310 | while (ref) { | 
|  | 311 | if (ref->flash_offset == REF_LINK_NODE) { | 
|  | 312 | ref = ref->next_in_ino; | 
|  | 313 | jffs2_free_refblock(block); | 
|  | 314 | block = ref; | 
|  | 315 | continue; | 
|  | 316 | } | 
|  | 317 | if (ref->flash_offset != REF_EMPTY_NODE && ref->next_in_ino) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | jffs2_remove_node_refs_from_ino_list(c, ref, jeb); | 
|  | 319 | /* else it was a non-inode node or already removed, so don't bother */ | 
|  | 320 |  | 
| David Woodhouse | 9bfeb69 | 2006-05-26 21:19:05 +0100 | [diff] [blame] | 321 | ref++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } | 
| David Woodhouse | 9bfeb69 | 2006-05-26 21:19:05 +0100 | [diff] [blame] | 323 | jeb->first_node = jeb->last_node = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | } | 
|  | 325 |  | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 326 | static int jffs2_block_check_erase(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t *bad_offset) | 
|  | 327 | { | 
|  | 328 | void *ebuf; | 
|  | 329 | uint32_t ofs; | 
|  | 330 | size_t retlen; | 
|  | 331 | int ret = -EIO; | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 332 |  | 
| Joakim Tjernlund | fab2c39 | 2007-06-01 15:14:09 +0200 | [diff] [blame] | 333 | if (c->mtd->point) { | 
|  | 334 | unsigned long *wordebuf; | 
|  | 335 |  | 
| Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 336 | ret = c->mtd->point(c->mtd, jeb->offset, c->sector_size, | 
|  | 337 | &retlen, &ebuf, NULL); | 
| Joakim Tjernlund | fab2c39 | 2007-06-01 15:14:09 +0200 | [diff] [blame] | 338 | if (ret) { | 
|  | 339 | D1(printk(KERN_DEBUG "MTD point failed %d\n", ret)); | 
|  | 340 | goto do_flash_read; | 
|  | 341 | } | 
|  | 342 | if (retlen < c->sector_size) { | 
|  | 343 | /* Don't muck about if it won't let us point to the whole erase sector */ | 
|  | 344 | D1(printk(KERN_DEBUG "MTD point returned len too short: 0x%zx\n", retlen)); | 
| Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 345 | c->mtd->unpoint(c->mtd, jeb->offset, retlen); | 
| Joakim Tjernlund | fab2c39 | 2007-06-01 15:14:09 +0200 | [diff] [blame] | 346 | goto do_flash_read; | 
|  | 347 | } | 
|  | 348 | wordebuf = ebuf-sizeof(*wordebuf); | 
|  | 349 | retlen /= sizeof(*wordebuf); | 
|  | 350 | do { | 
|  | 351 | if (*++wordebuf != ~0) | 
|  | 352 | break; | 
|  | 353 | } while(--retlen); | 
| Jared Hulbert | a98889f | 2008-04-29 23:26:49 -0700 | [diff] [blame] | 354 | c->mtd->unpoint(c->mtd, jeb->offset, c->sector_size); | 
| Anders Grafström | 8a0f572 | 2008-03-12 20:29:23 +0100 | [diff] [blame] | 355 | if (retlen) { | 
| Andrew Morton | f4e3564 | 2007-08-10 14:01:30 -0700 | [diff] [blame] | 356 | printk(KERN_WARNING "Newly-erased block contained word 0x%lx at offset 0x%08tx\n", | 
| Joakim Tjernlund | fab2c39 | 2007-06-01 15:14:09 +0200 | [diff] [blame] | 357 | *wordebuf, jeb->offset + c->sector_size-retlen*sizeof(*wordebuf)); | 
| Anders Grafström | 8a0f572 | 2008-03-12 20:29:23 +0100 | [diff] [blame] | 358 | return -EIO; | 
|  | 359 | } | 
| Joakim Tjernlund | fab2c39 | 2007-06-01 15:14:09 +0200 | [diff] [blame] | 360 | return 0; | 
|  | 361 | } | 
|  | 362 | do_flash_read: | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 363 | ebuf = kmalloc(PAGE_SIZE, GFP_KERNEL); | 
|  | 364 | if (!ebuf) { | 
|  | 365 | printk(KERN_WARNING "Failed to allocate page buffer for verifying erase at 0x%08x. Refiling\n", jeb->offset); | 
|  | 366 | return -EAGAIN; | 
|  | 367 | } | 
|  | 368 |  | 
|  | 369 | D1(printk(KERN_DEBUG "Verifying erase at 0x%08x\n", jeb->offset)); | 
|  | 370 |  | 
|  | 371 | for (ofs = jeb->offset; ofs < jeb->offset + c->sector_size; ) { | 
|  | 372 | uint32_t readlen = min((uint32_t)PAGE_SIZE, jeb->offset + c->sector_size - ofs); | 
|  | 373 | int i; | 
|  | 374 |  | 
|  | 375 | *bad_offset = ofs; | 
|  | 376 |  | 
| Artem Bityutskiy | b0afbbe | 2007-03-21 11:07:05 +0200 | [diff] [blame] | 377 | ret = c->mtd->read(c->mtd, ofs, readlen, &retlen, ebuf); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 378 | if (ret) { | 
|  | 379 | printk(KERN_WARNING "Read of newly-erased block at 0x%08x failed: %d. Putting on bad_list\n", ofs, ret); | 
| Anders Grafström | 8a0f572 | 2008-03-12 20:29:23 +0100 | [diff] [blame] | 380 | ret = -EIO; | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 381 | goto fail; | 
|  | 382 | } | 
|  | 383 | if (retlen != readlen) { | 
|  | 384 | printk(KERN_WARNING "Short read from newly-erased block at 0x%08x. Wanted %d, got %zd\n", ofs, readlen, retlen); | 
| Anders Grafström | 8a0f572 | 2008-03-12 20:29:23 +0100 | [diff] [blame] | 385 | ret = -EIO; | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 386 | goto fail; | 
|  | 387 | } | 
|  | 388 | for (i=0; i<readlen; i += sizeof(unsigned long)) { | 
|  | 389 | /* It's OK. We know it's properly aligned */ | 
|  | 390 | unsigned long *datum = ebuf + i; | 
|  | 391 | if (*datum + 1) { | 
|  | 392 | *bad_offset += i; | 
|  | 393 | printk(KERN_WARNING "Newly-erased block contained word 0x%lx at offset 0x%08x\n", *datum, *bad_offset); | 
| Anders Grafström | 8a0f572 | 2008-03-12 20:29:23 +0100 | [diff] [blame] | 394 | ret = -EIO; | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 395 | goto fail; | 
|  | 396 | } | 
|  | 397 | } | 
|  | 398 | ofs += readlen; | 
|  | 399 | cond_resched(); | 
|  | 400 | } | 
|  | 401 | ret = 0; | 
|  | 402 | fail: | 
|  | 403 | kfree(ebuf); | 
|  | 404 | return ret; | 
|  | 405 | } | 
|  | 406 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | static void jffs2_mark_erased_block(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb) | 
|  | 408 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | size_t retlen; | 
|  | 410 | int ret; | 
| Andrew Morton | f4e3564 | 2007-08-10 14:01:30 -0700 | [diff] [blame] | 411 | uint32_t uninitialized_var(bad_offset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 |  | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 413 | switch (jffs2_block_check_erase(c, jeb, &bad_offset)) { | 
|  | 414 | case -EAGAIN:	goto refile; | 
|  | 415 | case -EIO:	goto filebad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 |  | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 418 | /* Write the erase complete marker */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | D1(printk(KERN_DEBUG "Writing erased marker to block at 0x%08x\n", jeb->offset)); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 420 | bad_offset = jeb->offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 |  | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 422 | /* Cleanmarker in oob area or no cleanmarker at all ? */ | 
|  | 423 | if (jffs2_cleanmarker_oob(c) || c->cleanmarker_size == 0) { | 
|  | 424 |  | 
|  | 425 | if (jffs2_cleanmarker_oob(c)) { | 
|  | 426 | if (jffs2_write_nand_cleanmarker(c, jeb)) | 
|  | 427 | goto filebad; | 
|  | 428 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } else { | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 430 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | struct kvec vecs[1]; | 
|  | 432 | struct jffs2_unknown_node marker = { | 
|  | 433 | .magic =	cpu_to_je16(JFFS2_MAGIC_BITMASK), | 
|  | 434 | .nodetype =	cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER), | 
|  | 435 | .totlen =	cpu_to_je32(c->cleanmarker_size) | 
|  | 436 | }; | 
|  | 437 |  | 
| David Woodhouse | 046b8b9 | 2006-05-25 01:50:35 +0100 | [diff] [blame] | 438 | jffs2_prealloc_raw_node_refs(c, jeb, 1); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 439 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | marker.hdr_crc = cpu_to_je32(crc32(0, &marker, sizeof(struct jffs2_unknown_node)-4)); | 
|  | 441 |  | 
|  | 442 | vecs[0].iov_base = (unsigned char *) ▮ | 
|  | 443 | vecs[0].iov_len = sizeof(marker); | 
|  | 444 | ret = jffs2_flash_direct_writev(c, vecs, 1, jeb->offset, &retlen); | 
| Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 445 |  | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 446 | if (ret || retlen != sizeof(marker)) { | 
|  | 447 | if (ret) | 
|  | 448 | printk(KERN_WARNING "Write clean marker to block at 0x%08x failed: %d\n", | 
|  | 449 | jeb->offset, ret); | 
|  | 450 | else | 
|  | 451 | printk(KERN_WARNING "Short write to newly-erased block at 0x%08x: Wanted %zd, got %zd\n", | 
|  | 452 | jeb->offset, sizeof(marker), retlen); | 
|  | 453 |  | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 454 | goto filebad; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | } | 
| David Woodhouse | 014b164 | 2008-04-22 23:54:38 +0100 | [diff] [blame] | 457 | /* Everything else got zeroed before the erase */ | 
|  | 458 | jeb->free_size = c->sector_size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 |  | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 460 | mutex_lock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | spin_lock(&c->erase_completion_lock); | 
| David Woodhouse | 014b164 | 2008-04-22 23:54:38 +0100 | [diff] [blame] | 462 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | c->erasing_size -= c->sector_size; | 
| David Woodhouse | 014b164 | 2008-04-22 23:54:38 +0100 | [diff] [blame] | 464 | c->free_size += c->sector_size; | 
|  | 465 |  | 
|  | 466 | /* Account for cleanmarker now, if it's in-band */ | 
|  | 467 | if (c->cleanmarker_size && !jffs2_cleanmarker_oob(c)) | 
|  | 468 | jffs2_link_node_ref(c, jeb, jeb->offset | REF_NORMAL, c->cleanmarker_size, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 |  | 
| David Woodhouse | e2bc322 | 2008-04-23 14:15:24 +0100 | [diff] [blame] | 470 | list_move_tail(&jeb->list, &c->free_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | c->nr_erasing_blocks--; | 
|  | 472 | c->nr_free_blocks++; | 
| David Woodhouse | 85a62db | 2008-04-23 01:17:51 +0100 | [diff] [blame] | 473 |  | 
|  | 474 | jffs2_dbg_acct_sanity_check_nolock(c, jeb); | 
|  | 475 | jffs2_dbg_acct_paranoia_check_nolock(c, jeb); | 
|  | 476 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 478 | mutex_unlock(&c->erase_free_sem); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | wake_up(&c->erase_wait); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 480 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 |  | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 482 | filebad: | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 483 | mutex_lock(&c->erase_free_sem); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 484 | spin_lock(&c->erase_completion_lock); | 
|  | 485 | /* Stick it on a list (any list) so erase_failed can take it | 
|  | 486 | right off again.  Silly, but shouldn't happen often. */ | 
| David Woodhouse | e2bc322 | 2008-04-23 14:15:24 +0100 | [diff] [blame] | 487 | list_move(&jeb->list, &c->erasing_list); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 488 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 489 | mutex_unlock(&c->erase_free_sem); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 490 | jffs2_erase_failed(c, jeb, bad_offset); | 
|  | 491 | return; | 
|  | 492 |  | 
|  | 493 | refile: | 
|  | 494 | /* Stick it back on the list from whence it came and come back later */ | 
|  | 495 | jffs2_erase_pending_trigger(c); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 496 | mutex_lock(&c->erase_free_sem); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 497 | spin_lock(&c->erase_completion_lock); | 
| David Woodhouse | e2bc322 | 2008-04-23 14:15:24 +0100 | [diff] [blame] | 498 | list_move(&jeb->list, &c->erase_complete_list); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 499 | spin_unlock(&c->erase_completion_lock); | 
| David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 500 | mutex_unlock(&c->erase_free_sem); | 
| Thomas Gleixner | 5d15788 | 2005-07-15 08:14:44 +0200 | [diff] [blame] | 501 | return; | 
|  | 502 | } |