blob: ee1cd98fdbf2a633d248e37e6999df2c41b7b83b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
David Woodhousec00c3102007-04-25 14:16:47 +01004 * Copyright © 2001-2007 Red Hat, Inc.
David Woodhouse6088c052010-08-08 14:15:22 +01005 * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Created by David Woodhouse <dwmw2@infradead.org>
8 *
9 * For licensing information, see the file 'LICENCE' in this directory.
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13#include <linux/kernel.h>
14#include <linux/slab.h>
15#include <linux/mtd/mtd.h>
16#include <linux/compiler.h>
17#include <linux/crc32.h>
18#include <linux/sched.h>
19#include <linux/pagemap.h>
20#include "nodelist.h"
21
22struct erase_priv_struct {
23 struct jffs2_eraseblock *jeb;
24 struct jffs2_sb_info *c;
25};
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#ifndef __ECOS
28static void jffs2_erase_callback(struct erase_info *);
29#endif
30static void jffs2_erase_failed(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset);
31static void jffs2_erase_succeeded(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static void jffs2_mark_erased_block(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
33
34static void jffs2_erase_block(struct jffs2_sb_info *c,
35 struct jffs2_eraseblock *jeb)
36{
37 int ret;
38 uint32_t bad_offset;
39#ifdef __ECOS
40 ret = jffs2_flash_erase(c, jeb);
41 if (!ret) {
David Woodhouseef53cb02007-07-10 10:01:22 +010042 jffs2_erase_succeeded(c, jeb);
43 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 }
45 bad_offset = jeb->offset;
46#else /* Linux */
47 struct erase_info *instr;
48
Joe Perches9c261b32012-02-15 15:56:43 -080049 jffs2_dbg(1, "%s(): erase block %#08x (range %#08x-%#08x)\n",
50 __func__,
51 jeb->offset, jeb->offset, jeb->offset + c->sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 instr = kmalloc(sizeof(struct erase_info) + sizeof(struct erase_priv_struct), GFP_KERNEL);
53 if (!instr) {
54 printk(KERN_WARNING "kmalloc for struct erase_info in jffs2_erase_block failed. Refiling block for later\n");
David Woodhouseced22072008-04-22 15:13:40 +010055 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 spin_lock(&c->erase_completion_lock);
Akinobu Mitaf1166292006-06-26 00:24:46 -070057 list_move(&jeb->list, &c->erase_pending_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 c->erasing_size -= c->sector_size;
59 c->dirty_size += c->sector_size;
60 jeb->dirty_size = c->sector_size;
61 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +010062 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return;
64 }
65
66 memset(instr, 0, sizeof(*instr));
67
68 instr->mtd = c->mtd;
69 instr->addr = jeb->offset;
70 instr->len = c->sector_size;
71 instr->callback = jffs2_erase_callback;
72 instr->priv = (unsigned long)(&instr[1]);
Adrian Hunterbb0eb212008-08-12 12:40:50 +030073 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 ((struct erase_priv_struct *)instr->priv)->jeb = jeb;
76 ((struct erase_priv_struct *)instr->priv)->c = c;
77
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +020078 ret = mtd_erase(c->mtd, instr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (!ret)
80 return;
81
82 bad_offset = instr->fail_addr;
83 kfree(instr);
84#endif /* __ECOS */
85
86 if (ret == -ENOMEM || ret == -EAGAIN) {
87 /* Erase failed immediately. Refile it on the list */
Joe Perches9c261b32012-02-15 15:56:43 -080088 jffs2_dbg(1, "Erase at 0x%08x failed: %d. Refiling on erase_pending_list\n",
89 jeb->offset, ret);
David Woodhouseced22072008-04-22 15:13:40 +010090 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 spin_lock(&c->erase_completion_lock);
Akinobu Mitaf1166292006-06-26 00:24:46 -070092 list_move(&jeb->list, &c->erase_pending_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 c->erasing_size -= c->sector_size;
94 c->dirty_size += c->sector_size;
95 jeb->dirty_size = c->sector_size;
96 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +010097 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return;
99 }
100
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000101 if (ret == -EROFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 printk(KERN_WARNING "Erase at 0x%08x failed immediately: -EROFS. Is the sector locked?\n", jeb->offset);
103 else
104 printk(KERN_WARNING "Erase at 0x%08x failed immediately: errno %d\n", jeb->offset, ret);
105
106 jffs2_erase_failed(c, jeb, bad_offset);
107}
108
Joakim Tjernlund9957abe2010-05-19 16:32:52 +0100109int jffs2_erase_pending_blocks(struct jffs2_sb_info *c, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct jffs2_eraseblock *jeb;
Joakim Tjernlund9957abe2010-05-19 16:32:52 +0100112 int work_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
David Woodhouseced22072008-04-22 15:13:40 +0100114 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 spin_lock(&c->erase_completion_lock);
117
118 while (!list_empty(&c->erase_complete_list) ||
119 !list_empty(&c->erase_pending_list)) {
120
121 if (!list_empty(&c->erase_complete_list)) {
122 jeb = list_entry(c->erase_complete_list.next, struct jffs2_eraseblock, list);
David Woodhousee2bc3222008-04-23 14:15:24 +0100123 list_move(&jeb->list, &c->erase_checking_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100125 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 jffs2_mark_erased_block(c, jeb);
127
Joakim Tjernlund9957abe2010-05-19 16:32:52 +0100128 work_done++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (!--count) {
Joe Perches9c261b32012-02-15 15:56:43 -0800130 jffs2_dbg(1, "Count reached. jffs2_erase_pending_blocks leaving\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 goto done;
132 }
133
134 } else if (!list_empty(&c->erase_pending_list)) {
135 jeb = list_entry(c->erase_pending_list.next, struct jffs2_eraseblock, list);
Joe Perches9c261b32012-02-15 15:56:43 -0800136 jffs2_dbg(1, "Starting erase of pending block 0x%08x\n",
137 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 list_del(&jeb->list);
139 c->erasing_size += c->sector_size;
140 c->wasted_size -= jeb->wasted_size;
141 c->free_size -= jeb->free_size;
142 c->used_size -= jeb->used_size;
143 c->dirty_size -= jeb->dirty_size;
144 jeb->wasted_size = jeb->used_size = jeb->dirty_size = jeb->free_size = 0;
David Woodhousec38c1b62006-05-25 01:38:27 +0100145 jffs2_free_jeb_node_refs(c, jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 list_add(&jeb->list, &c->erasing_list);
147 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100148 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 jffs2_erase_block(c, jeb);
151
152 } else {
153 BUG();
154 }
155
156 /* Be nice */
Wolfram Sang3866f672010-09-01 18:03:41 +0200157 cond_resched();
David Woodhouseced22072008-04-22 15:13:40 +0100158 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 spin_lock(&c->erase_completion_lock);
160 }
161
162 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100163 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 done:
Joe Perches9c261b32012-02-15 15:56:43 -0800165 jffs2_dbg(1, "jffs2_erase_pending_blocks completed\n");
Joakim Tjernlund9957abe2010-05-19 16:32:52 +0100166 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169static void jffs2_erase_succeeded(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
170{
Joe Perches9c261b32012-02-15 15:56:43 -0800171 jffs2_dbg(1, "Erase completed successfully at 0x%08x\n", jeb->offset);
David Woodhouseced22072008-04-22 15:13:40 +0100172 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 spin_lock(&c->erase_completion_lock);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700174 list_move_tail(&jeb->list, &c->erase_complete_list);
David Woodhouseae3b6ba2010-05-19 17:05:14 +0100175 /* Wake the GC thread to mark them clean */
176 jffs2_garbage_collect_trigger(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100178 mutex_unlock(&c->erase_free_sem);
David Woodhouse0717bf82010-05-19 16:37:13 +0100179 wake_up(&c->erase_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182static void jffs2_erase_failed(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset)
183{
184 /* For NAND, if the failure did not occur at the device level for a
185 specific physical page, don't bother updating the bad block table. */
Adrian Hunter69423d92008-12-10 13:37:21 +0000186 if (jffs2_cleanmarker_oob(c) && (bad_offset != (uint32_t)MTD_FAIL_ADDR_UNKNOWN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* We had a device-level failure to erase. Let's see if we've
188 failed too many times. */
189 if (!jffs2_write_nand_badblock(c, jeb, bad_offset)) {
190 /* We'd like to give this block another try. */
David Woodhouseced22072008-04-22 15:13:40 +0100191 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 spin_lock(&c->erase_completion_lock);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700193 list_move(&jeb->list, &c->erase_pending_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 c->erasing_size -= c->sector_size;
195 c->dirty_size += c->sector_size;
196 jeb->dirty_size = c->sector_size;
197 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100198 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return;
200 }
201 }
202
David Woodhouseced22072008-04-22 15:13:40 +0100203 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 spin_lock(&c->erase_completion_lock);
205 c->erasing_size -= c->sector_size;
206 c->bad_size += c->sector_size;
Akinobu Mitaf1166292006-06-26 00:24:46 -0700207 list_move(&jeb->list, &c->bad_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 c->nr_erasing_blocks--;
209 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100210 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 wake_up(&c->erase_wait);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214#ifndef __ECOS
215static void jffs2_erase_callback(struct erase_info *instr)
216{
217 struct erase_priv_struct *priv = (void *)instr->priv;
218
219 if(instr->state != MTD_ERASE_DONE) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000220 printk(KERN_WARNING "Erase at 0x%08llx finished, but state != MTD_ERASE_DONE. State is 0x%x instead.\n",
221 (unsigned long long)instr->addr, instr->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 jffs2_erase_failed(priv->c, priv->jeb, instr->fail_addr);
223 } else {
224 jffs2_erase_succeeded(priv->c, priv->jeb);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 kfree(instr);
227}
228#endif /* !__ECOS */
229
230/* Hmmm. Maybe we should accept the extra space it takes and make
231 this a standard doubly-linked list? */
232static inline void jffs2_remove_node_refs_from_ino_list(struct jffs2_sb_info *c,
233 struct jffs2_raw_node_ref *ref, struct jffs2_eraseblock *jeb)
234{
235 struct jffs2_inode_cache *ic = NULL;
236 struct jffs2_raw_node_ref **prev;
237
238 prev = &ref->next_in_ino;
239
240 /* Walk the inode's list once, removing any nodes from this eraseblock */
241 while (1) {
242 if (!(*prev)->next_in_ino) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000243 /* We're looking at the jffs2_inode_cache, which is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 at the end of the linked list. Stash it and continue
245 from the beginning of the list */
246 ic = (struct jffs2_inode_cache *)(*prev);
247 prev = &ic->nodes;
248 continue;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Andrew Victor3be36672005-02-09 09:09:05 +0000251 if (SECTOR_ADDR((*prev)->flash_offset) == jeb->offset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* It's in the block we're erasing */
253 struct jffs2_raw_node_ref *this;
254
255 this = *prev;
256 *prev = this->next_in_ino;
257 this->next_in_ino = NULL;
258
259 if (this == ref)
260 break;
261
262 continue;
263 }
264 /* Not to be deleted. Skip */
265 prev = &((*prev)->next_in_ino);
266 }
267
268 /* PARANOIA */
269 if (!ic) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900270 JFFS2_WARNING("inode_cache/xattr_datum/xattr_ref"
271 " not found in remove_node_refs()!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return;
273 }
274
Joe Perches9c261b32012-02-15 15:56:43 -0800275 jffs2_dbg(1, "Removed nodes in range 0x%08x-0x%08x from ino #%u\n",
276 jeb->offset, jeb->offset + c->sector_size, ic->ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 D2({
279 int i=0;
280 struct jffs2_raw_node_ref *this;
Joe Perchesad361c92009-07-06 13:05:40 -0700281 printk(KERN_DEBUG "After remove_node_refs_from_ino_list: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 this = ic->nodes;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000284
Joe Perchesad361c92009-07-06 13:05:40 -0700285 printk(KERN_DEBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 while(this) {
Joe Perchesad361c92009-07-06 13:05:40 -0700287 printk(KERN_CONT "0x%08x(%d)->",
288 ref_offset(this), ref_flags(this));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (++i == 5) {
Joe Perchesad361c92009-07-06 13:05:40 -0700290 printk(KERN_DEBUG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 i=0;
292 }
293 this = this->next_in_ino;
294 }
Joe Perchesad361c92009-07-06 13:05:40 -0700295 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 });
297
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900298 switch (ic->class) {
299#ifdef CONFIG_JFFS2_FS_XATTR
300 case RAWNODE_CLASS_XATTR_DATUM:
301 jffs2_release_xattr_datum(c, (struct jffs2_xattr_datum *)ic);
302 break;
303 case RAWNODE_CLASS_XATTR_REF:
304 jffs2_release_xattr_ref(c, (struct jffs2_xattr_ref *)ic);
305 break;
306#endif
307 default:
David Woodhouse27c72b02008-05-01 18:47:17 +0100308 if (ic->nodes == (void *)ic && ic->pino_nlink == 0)
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900309 jffs2_del_ino_cache(c, ic);
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
David Woodhousec38c1b62006-05-25 01:38:27 +0100313void jffs2_free_jeb_node_refs(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
David Woodhouse9bfeb692006-05-26 21:19:05 +0100315 struct jffs2_raw_node_ref *block, *ref;
Joe Perches9c261b32012-02-15 15:56:43 -0800316 jffs2_dbg(1, "Freeing all node refs for eraseblock offset 0x%08x\n",
317 jeb->offset);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000318
David Woodhouse9bfeb692006-05-26 21:19:05 +0100319 block = ref = jeb->first_node;
320
321 while (ref) {
322 if (ref->flash_offset == REF_LINK_NODE) {
323 ref = ref->next_in_ino;
324 jffs2_free_refblock(block);
325 block = ref;
326 continue;
327 }
328 if (ref->flash_offset != REF_EMPTY_NODE && ref->next_in_ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 jffs2_remove_node_refs_from_ino_list(c, ref, jeb);
330 /* else it was a non-inode node or already removed, so don't bother */
331
David Woodhouse9bfeb692006-05-26 21:19:05 +0100332 ref++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
David Woodhouse9bfeb692006-05-26 21:19:05 +0100334 jeb->first_node = jeb->last_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Thomas Gleixner5d157882005-07-15 08:14:44 +0200337static int jffs2_block_check_erase(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t *bad_offset)
338{
339 void *ebuf;
340 uint32_t ofs;
341 size_t retlen;
Artem Bityutskiybce41d62012-01-10 15:32:29 +0200342 int ret;
Artem Bityutskiy10934472011-12-28 15:55:42 +0200343 unsigned long *wordebuf;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000344
Artem Bityutskiy10934472011-12-28 15:55:42 +0200345 ret = mtd_point(c->mtd, jeb->offset, c->sector_size, &retlen,
346 &ebuf, NULL);
347 if (ret != -EOPNOTSUPP) {
Joakim Tjernlundfab2c392007-06-01 15:14:09 +0200348 if (ret) {
Joe Perches9c261b32012-02-15 15:56:43 -0800349 jffs2_dbg(1, "MTD point failed %d\n", ret);
Joakim Tjernlundfab2c392007-06-01 15:14:09 +0200350 goto do_flash_read;
351 }
352 if (retlen < c->sector_size) {
353 /* Don't muck about if it won't let us point to the whole erase sector */
Joe Perches9c261b32012-02-15 15:56:43 -0800354 jffs2_dbg(1, "MTD point returned len too short: 0x%zx\n",
355 retlen);
Artem Bityutskiy72197782011-12-23 17:05:52 +0200356 mtd_unpoint(c->mtd, jeb->offset, retlen);
Joakim Tjernlundfab2c392007-06-01 15:14:09 +0200357 goto do_flash_read;
358 }
359 wordebuf = ebuf-sizeof(*wordebuf);
360 retlen /= sizeof(*wordebuf);
361 do {
362 if (*++wordebuf != ~0)
363 break;
364 } while(--retlen);
Artem Bityutskiy72197782011-12-23 17:05:52 +0200365 mtd_unpoint(c->mtd, jeb->offset, c->sector_size);
Anders Grafström8a0f5722008-03-12 20:29:23 +0100366 if (retlen) {
Andrew Mortonf4e35642007-08-10 14:01:30 -0700367 printk(KERN_WARNING "Newly-erased block contained word 0x%lx at offset 0x%08tx\n",
Joakim Tjernlundfab2c392007-06-01 15:14:09 +0200368 *wordebuf, jeb->offset + c->sector_size-retlen*sizeof(*wordebuf));
Anders Grafström8a0f5722008-03-12 20:29:23 +0100369 return -EIO;
370 }
Joakim Tjernlundfab2c392007-06-01 15:14:09 +0200371 return 0;
372 }
373 do_flash_read:
Thomas Gleixner5d157882005-07-15 08:14:44 +0200374 ebuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
375 if (!ebuf) {
376 printk(KERN_WARNING "Failed to allocate page buffer for verifying erase at 0x%08x. Refiling\n", jeb->offset);
377 return -EAGAIN;
378 }
379
Joe Perches9c261b32012-02-15 15:56:43 -0800380 jffs2_dbg(1, "Verifying erase at 0x%08x\n", jeb->offset);
Thomas Gleixner5d157882005-07-15 08:14:44 +0200381
382 for (ofs = jeb->offset; ofs < jeb->offset + c->sector_size; ) {
383 uint32_t readlen = min((uint32_t)PAGE_SIZE, jeb->offset + c->sector_size - ofs);
384 int i;
385
386 *bad_offset = ofs;
387
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200388 ret = mtd_read(c->mtd, ofs, readlen, &retlen, ebuf);
Thomas Gleixner5d157882005-07-15 08:14:44 +0200389 if (ret) {
390 printk(KERN_WARNING "Read of newly-erased block at 0x%08x failed: %d. Putting on bad_list\n", ofs, ret);
Anders Grafström8a0f5722008-03-12 20:29:23 +0100391 ret = -EIO;
Thomas Gleixner5d157882005-07-15 08:14:44 +0200392 goto fail;
393 }
394 if (retlen != readlen) {
395 printk(KERN_WARNING "Short read from newly-erased block at 0x%08x. Wanted %d, got %zd\n", ofs, readlen, retlen);
Anders Grafström8a0f5722008-03-12 20:29:23 +0100396 ret = -EIO;
Thomas Gleixner5d157882005-07-15 08:14:44 +0200397 goto fail;
398 }
399 for (i=0; i<readlen; i += sizeof(unsigned long)) {
400 /* It's OK. We know it's properly aligned */
401 unsigned long *datum = ebuf + i;
402 if (*datum + 1) {
403 *bad_offset += i;
404 printk(KERN_WARNING "Newly-erased block contained word 0x%lx at offset 0x%08x\n", *datum, *bad_offset);
Anders Grafström8a0f5722008-03-12 20:29:23 +0100405 ret = -EIO;
Thomas Gleixner5d157882005-07-15 08:14:44 +0200406 goto fail;
407 }
408 }
409 ofs += readlen;
410 cond_resched();
411 }
412 ret = 0;
413fail:
414 kfree(ebuf);
415 return ret;
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static void jffs2_mark_erased_block(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
419{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 size_t retlen;
421 int ret;
Andrew Mortonf4e35642007-08-10 14:01:30 -0700422 uint32_t uninitialized_var(bad_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Thomas Gleixner5d157882005-07-15 08:14:44 +0200424 switch (jffs2_block_check_erase(c, jeb, &bad_offset)) {
425 case -EAGAIN: goto refile;
426 case -EIO: goto filebad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000429 /* Write the erase complete marker */
Joe Perches9c261b32012-02-15 15:56:43 -0800430 jffs2_dbg(1, "Writing erased marker to block at 0x%08x\n", jeb->offset);
Thomas Gleixner5d157882005-07-15 08:14:44 +0200431 bad_offset = jeb->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Thomas Gleixner5d157882005-07-15 08:14:44 +0200433 /* Cleanmarker in oob area or no cleanmarker at all ? */
434 if (jffs2_cleanmarker_oob(c) || c->cleanmarker_size == 0) {
435
436 if (jffs2_cleanmarker_oob(c)) {
437 if (jffs2_write_nand_cleanmarker(c, jeb))
438 goto filebad;
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 } else {
Thomas Gleixner5d157882005-07-15 08:14:44 +0200441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct kvec vecs[1];
443 struct jffs2_unknown_node marker = {
444 .magic = cpu_to_je16(JFFS2_MAGIC_BITMASK),
445 .nodetype = cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER),
446 .totlen = cpu_to_je32(c->cleanmarker_size)
447 };
448
David Woodhouse046b8b92006-05-25 01:50:35 +0100449 jffs2_prealloc_raw_node_refs(c, jeb, 1);
Thomas Gleixner5d157882005-07-15 08:14:44 +0200450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 marker.hdr_crc = cpu_to_je32(crc32(0, &marker, sizeof(struct jffs2_unknown_node)-4));
452
453 vecs[0].iov_base = (unsigned char *) &marker;
454 vecs[0].iov_len = sizeof(marker);
455 ret = jffs2_flash_direct_writev(c, vecs, 1, jeb->offset, &retlen);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000456
Thomas Gleixner5d157882005-07-15 08:14:44 +0200457 if (ret || retlen != sizeof(marker)) {
458 if (ret)
459 printk(KERN_WARNING "Write clean marker to block at 0x%08x failed: %d\n",
460 jeb->offset, ret);
461 else
462 printk(KERN_WARNING "Short write to newly-erased block at 0x%08x: Wanted %zd, got %zd\n",
463 jeb->offset, sizeof(marker), retlen);
464
Thomas Gleixner5d157882005-07-15 08:14:44 +0200465 goto filebad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
David Woodhouse014b1642008-04-22 23:54:38 +0100468 /* Everything else got zeroed before the erase */
469 jeb->free_size = c->sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
David Woodhouseced22072008-04-22 15:13:40 +0100471 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 spin_lock(&c->erase_completion_lock);
David Woodhouse014b1642008-04-22 23:54:38 +0100473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 c->erasing_size -= c->sector_size;
David Woodhouse014b1642008-04-22 23:54:38 +0100475 c->free_size += c->sector_size;
476
477 /* Account for cleanmarker now, if it's in-band */
478 if (c->cleanmarker_size && !jffs2_cleanmarker_oob(c))
479 jffs2_link_node_ref(c, jeb, jeb->offset | REF_NORMAL, c->cleanmarker_size, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
David Woodhousee2bc3222008-04-23 14:15:24 +0100481 list_move_tail(&jeb->list, &c->free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 c->nr_erasing_blocks--;
483 c->nr_free_blocks++;
David Woodhouse85a62db2008-04-23 01:17:51 +0100484
485 jffs2_dbg_acct_sanity_check_nolock(c, jeb);
486 jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100489 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 wake_up(&c->erase_wait);
Thomas Gleixner5d157882005-07-15 08:14:44 +0200491 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Thomas Gleixner5d157882005-07-15 08:14:44 +0200493filebad:
Thomas Gleixner5d157882005-07-15 08:14:44 +0200494 jffs2_erase_failed(c, jeb, bad_offset);
495 return;
496
497refile:
498 /* Stick it back on the list from whence it came and come back later */
David Woodhouseced22072008-04-22 15:13:40 +0100499 mutex_lock(&c->erase_free_sem);
Thomas Gleixner5d157882005-07-15 08:14:44 +0200500 spin_lock(&c->erase_completion_lock);
David Woodhouseae3b6ba2010-05-19 17:05:14 +0100501 jffs2_garbage_collect_trigger(c);
David Woodhousee2bc3222008-04-23 14:15:24 +0100502 list_move(&jeb->list, &c->erase_complete_list);
Thomas Gleixner5d157882005-07-15 08:14:44 +0200503 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100504 mutex_unlock(&c->erase_free_sem);
Thomas Gleixner5d157882005-07-15 08:14:44 +0200505 return;
506}