blob: 4701556be49d18ca534828bcecebb589779b9cde [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
4 * Copyright (C) 2001-2003 Red Hat, Inc.
5 *
6 * Created by David Woodhouse <dwmw2@infradead.org>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +010010 * $Id: nodemgmt.c,v 1.127 2005/09/20 15:49:12 dedekind Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 */
13
14#include <linux/kernel.h>
15#include <linux/slab.h>
16#include <linux/mtd/mtd.h>
17#include <linux/compiler.h>
18#include <linux/sched.h> /* For cond_resched() */
19#include "nodelist.h"
Ferenc Havasie631ddb2005-09-07 09:35:26 +010020#include "debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/**
23 * jffs2_reserve_space - request physical space to write nodes to flash
24 * @c: superblock info
25 * @minsize: Minimum acceptable size of allocation
26 * @ofs: Returned value of node offset
27 * @len: Returned value of allocation length
28 * @prio: Allocation type - ALLOC_{NORMAL,DELETION}
29 *
30 * Requests a block of physical space on the flash. Returns zero for success
31 * and puts 'ofs' and 'len' into the appriopriate place, or returns -ENOSPC
32 * or other error if appropriate.
33 *
34 * If it returns zero, jffs2_reserve_space() also downs the per-filesystem
35 * allocation semaphore, to prevent more than one allocation from being
36 * active at any time. The semaphore is later released by jffs2_commit_allocation()
37 *
38 * jffs2_reserve_space() may trigger garbage collection in order to make room
39 * for the requested allocation.
40 */
41
Ferenc Havasie631ddb2005-09-07 09:35:26 +010042static int jffs2_do_reserve_space(struct jffs2_sb_info *c, uint32_t minsize,
43 uint32_t *ofs, uint32_t *len, uint32_t sumsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Ferenc Havasie631ddb2005-09-07 09:35:26 +010045int jffs2_reserve_space(struct jffs2_sb_info *c, uint32_t minsize, uint32_t *ofs,
46 uint32_t *len, int prio, uint32_t sumsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 int ret = -EAGAIN;
49 int blocksneeded = c->resv_blocks_write;
50 /* align it */
51 minsize = PAD(minsize);
52
53 D1(printk(KERN_DEBUG "jffs2_reserve_space(): Requested 0x%x bytes\n", minsize));
54 down(&c->alloc_sem);
55
56 D1(printk(KERN_DEBUG "jffs2_reserve_space(): alloc sem got\n"));
57
58 spin_lock(&c->erase_completion_lock);
59
60 /* this needs a little more thought (true <tglx> :)) */
61 while(ret == -EAGAIN) {
62 while(c->nr_free_blocks + c->nr_erasing_blocks < blocksneeded) {
63 int ret;
64 uint32_t dirty, avail;
65
66 /* calculate real dirty size
67 * dirty_size contains blocks on erase_pending_list
68 * those blocks are counted in c->nr_erasing_blocks.
69 * If one block is actually erased, it is not longer counted as dirty_space
70 * but it is counted in c->nr_erasing_blocks, so we add it and subtract it
71 * with c->nr_erasing_blocks * c->sector_size again.
72 * Blocks on erasable_list are counted as dirty_size, but not in c->nr_erasing_blocks
73 * This helps us to force gc and pick eventually a clean block to spread the load.
74 * We add unchecked_size here, as we hopefully will find some space to use.
75 * This will affect the sum only once, as gc first finishes checking
76 * of nodes.
77 */
78 dirty = c->dirty_size + c->erasing_size - c->nr_erasing_blocks * c->sector_size + c->unchecked_size;
79 if (dirty < c->nospc_dirty_size) {
80 if (prio == ALLOC_DELETION && c->nr_free_blocks + c->nr_erasing_blocks >= c->resv_blocks_deletion) {
Artem B. Bityuckiy4132ace2005-05-06 10:30:30 +010081 D1(printk(KERN_NOTICE "jffs2_reserve_space(): Low on dirty space to GC, but it's a deletion. Allowing...\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 break;
83 }
84 D1(printk(KERN_DEBUG "dirty size 0x%08x + unchecked_size 0x%08x < nospc_dirty_size 0x%08x, returning -ENOSPC\n",
85 dirty, c->unchecked_size, c->sector_size));
86
87 spin_unlock(&c->erase_completion_lock);
88 up(&c->alloc_sem);
89 return -ENOSPC;
90 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 /* Calc possibly available space. Possibly available means that we
93 * don't know, if unchecked size contains obsoleted nodes, which could give us some
94 * more usable space. This will affect the sum only once, as gc first finishes checking
95 * of nodes.
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000096 + Return -ENOSPC, if the maximum possibly available space is less or equal than
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * blocksneeded * sector_size.
98 * This blocks endless gc looping on a filesystem, which is nearly full, even if
99 * the check above passes.
100 */
101 avail = c->free_size + c->dirty_size + c->erasing_size + c->unchecked_size;
102 if ( (avail / c->sector_size) <= blocksneeded) {
103 if (prio == ALLOC_DELETION && c->nr_free_blocks + c->nr_erasing_blocks >= c->resv_blocks_deletion) {
Artem B. Bityuckiy4132ace2005-05-06 10:30:30 +0100104 D1(printk(KERN_NOTICE "jffs2_reserve_space(): Low on possibly available space, but it's a deletion. Allowing...\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 break;
106 }
107
108 D1(printk(KERN_DEBUG "max. available size 0x%08x < blocksneeded * sector_size 0x%08x, returning -ENOSPC\n",
109 avail, blocksneeded * c->sector_size));
110 spin_unlock(&c->erase_completion_lock);
111 up(&c->alloc_sem);
112 return -ENOSPC;
113 }
114
115 up(&c->alloc_sem);
116
117 D1(printk(KERN_DEBUG "Triggering GC pass. nr_free_blocks %d, nr_erasing_blocks %d, free_size 0x%08x, dirty_size 0x%08x, wasted_size 0x%08x, used_size 0x%08x, erasing_size 0x%08x, bad_size 0x%08x (total 0x%08x of 0x%08x)\n",
118 c->nr_free_blocks, c->nr_erasing_blocks, c->free_size, c->dirty_size, c->wasted_size, c->used_size, c->erasing_size, c->bad_size,
119 c->free_size + c->dirty_size + c->wasted_size + c->used_size + c->erasing_size + c->bad_size, c->flash_size));
120 spin_unlock(&c->erase_completion_lock);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 ret = jffs2_garbage_collect_pass(c);
123 if (ret)
124 return ret;
125
126 cond_resched();
127
128 if (signal_pending(current))
129 return -EINTR;
130
131 down(&c->alloc_sem);
132 spin_lock(&c->erase_completion_lock);
133 }
134
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100135 ret = jffs2_do_reserve_space(c, minsize, ofs, len, sumsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (ret) {
137 D1(printk(KERN_DEBUG "jffs2_reserve_space: ret is %d\n", ret));
138 }
139 }
140 spin_unlock(&c->erase_completion_lock);
141 if (ret)
142 up(&c->alloc_sem);
143 return ret;
144}
145
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100146int jffs2_reserve_space_gc(struct jffs2_sb_info *c, uint32_t minsize, uint32_t *ofs,
147 uint32_t *len, uint32_t sumsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int ret = -EAGAIN;
150 minsize = PAD(minsize);
151
152 D1(printk(KERN_DEBUG "jffs2_reserve_space_gc(): Requested 0x%x bytes\n", minsize));
153
154 spin_lock(&c->erase_completion_lock);
155 while(ret == -EAGAIN) {
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100156 ret = jffs2_do_reserve_space(c, minsize, ofs, len, sumsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (ret) {
158 D1(printk(KERN_DEBUG "jffs2_reserve_space_gc: looping, ret is %d\n", ret));
159 }
160 }
161 spin_unlock(&c->erase_completion_lock);
162 return ret;
163}
164
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100165
166/* Classify nextblock (clean, dirty of verydirty) and force to select an other one */
167
168static void jffs2_close_nextblock(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100170
171 /* Check, if we have a dirty block now, or if it was dirty already */
172 if (ISDIRTY (jeb->wasted_size + jeb->dirty_size)) {
173 c->dirty_size += jeb->wasted_size;
174 c->wasted_size -= jeb->wasted_size;
175 jeb->dirty_size += jeb->wasted_size;
176 jeb->wasted_size = 0;
177 if (VERYDIRTY(c, jeb->dirty_size)) {
178 D1(printk(KERN_DEBUG "Adding full erase block at 0x%08x to very_dirty_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n",
179 jeb->offset, jeb->free_size, jeb->dirty_size, jeb->used_size));
180 list_add_tail(&jeb->list, &c->very_dirty_list);
181 } else {
182 D1(printk(KERN_DEBUG "Adding full erase block at 0x%08x to dirty_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n",
183 jeb->offset, jeb->free_size, jeb->dirty_size, jeb->used_size));
184 list_add_tail(&jeb->list, &c->dirty_list);
185 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000186 } else {
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100187 D1(printk(KERN_DEBUG "Adding full erase block at 0x%08x to clean_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n",
188 jeb->offset, jeb->free_size, jeb->dirty_size, jeb->used_size));
189 list_add_tail(&jeb->list, &c->clean_list);
190 }
191 c->nextblock = NULL;
192
193}
194
195/* Select a new jeb for nextblock */
196
197static int jffs2_find_nextblock(struct jffs2_sb_info *c)
198{
199 struct list_head *next;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000200
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100201 /* Take the next block off the 'free' list */
202
203 if (list_empty(&c->free_list)) {
204
205 if (!c->nr_erasing_blocks &&
206 !list_empty(&c->erasable_list)) {
207 struct jffs2_eraseblock *ejeb;
208
209 ejeb = list_entry(c->erasable_list.next, struct jffs2_eraseblock, list);
210 list_del(&ejeb->list);
211 list_add_tail(&ejeb->list, &c->erase_pending_list);
212 c->nr_erasing_blocks++;
213 jffs2_erase_pending_trigger(c);
214 D1(printk(KERN_DEBUG "jffs2_find_nextblock: Triggering erase of erasable block at 0x%08x\n",
215 ejeb->offset));
216 }
217
218 if (!c->nr_erasing_blocks &&
219 !list_empty(&c->erasable_pending_wbuf_list)) {
220 D1(printk(KERN_DEBUG "jffs2_find_nextblock: Flushing write buffer\n"));
221 /* c->nextblock is NULL, no update to c->nextblock allowed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 spin_unlock(&c->erase_completion_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 jffs2_flush_wbuf_pad(c);
224 spin_lock(&c->erase_completion_lock);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100225 /* Have another go. It'll be on the erasable_list now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return -EAGAIN;
227 }
228
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100229 if (!c->nr_erasing_blocks) {
230 /* Ouch. We're in GC, or we wouldn't have got here.
231 And there's no space left. At all. */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000232 printk(KERN_CRIT "Argh. No free space left for GC. nr_erasing_blocks is %d. nr_free_blocks is %d. (erasableempty: %s, erasingempty: %s, erasependingempty: %s)\n",
233 c->nr_erasing_blocks, c->nr_free_blocks, list_empty(&c->erasable_list)?"yes":"no",
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100234 list_empty(&c->erasing_list)?"yes":"no", list_empty(&c->erase_pending_list)?"yes":"no");
235 return -ENOSPC;
236 }
237
238 spin_unlock(&c->erase_completion_lock);
239 /* Don't wait for it; just erase one right now */
240 jffs2_erase_pending_blocks(c, 1);
241 spin_lock(&c->erase_completion_lock);
242
243 /* An erase may have failed, decreasing the
244 amount of free space available. So we must
245 restart from the beginning */
246 return -EAGAIN;
247 }
248
249 next = c->free_list.next;
250 list_del(next);
251 c->nextblock = list_entry(next, struct jffs2_eraseblock, list);
252 c->nr_free_blocks--;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000253
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100254 jffs2_sum_reset_collected(c->summary); /* reset collected summary */
255
256 D1(printk(KERN_DEBUG "jffs2_find_nextblock(): new nextblock = 0x%08x\n", c->nextblock->offset));
257
258 return 0;
259}
260
261/* Called with alloc sem _and_ erase_completion_lock */
262static int jffs2_do_reserve_space(struct jffs2_sb_info *c, uint32_t minsize, uint32_t *ofs, uint32_t *len, uint32_t sumsize)
263{
264 struct jffs2_eraseblock *jeb = c->nextblock;
265 uint32_t reserved_size; /* for summary information at the end of the jeb */
266 int ret;
267
268 restart:
269 reserved_size = 0;
270
271 if (jffs2_sum_active() && (sumsize != JFFS2_SUMMARY_NOSUM_SIZE)) {
272 /* NOSUM_SIZE means not to generate summary */
273
274 if (jeb) {
275 reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE);
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +0100276 dbg_summary("minsize=%d , jeb->free=%d ,"
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100277 "summary->size=%d , sumsize=%d\n",
278 minsize, jeb->free_size,
279 c->summary->sum_size, sumsize);
280 }
281
282 /* Is there enough space for writing out the current node, or we have to
283 write out summary information now, close this jeb and select new nextblock? */
284 if (jeb && (PAD(minsize) + PAD(c->summary->sum_size + sumsize +
285 JFFS2_SUMMARY_FRAME_SIZE) > jeb->free_size)) {
286
287 /* Has summary been disabled for this jeb? */
288 if (jffs2_sum_is_disabled(c->summary)) {
289 sumsize = JFFS2_SUMMARY_NOSUM_SIZE;
290 goto restart;
291 }
292
293 /* Writing out the collected summary information */
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +0100294 dbg_summary("generating summary for 0x%08x.\n", jeb->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100295 ret = jffs2_sum_write_sumnode(c);
296
297 if (ret)
298 return ret;
299
300 if (jffs2_sum_is_disabled(c->summary)) {
301 /* jffs2_write_sumnode() couldn't write out the summary information
302 diabling summary for this jeb and free the collected information
303 */
304 sumsize = JFFS2_SUMMARY_NOSUM_SIZE;
305 goto restart;
306 }
307
308 jffs2_close_nextblock(c, jeb);
309 jeb = NULL;
Ferenc Havasi34c0e902005-09-16 13:58:20 +0100310 /* keep always valid value in reserved_size */
311 reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100312 }
313 } else {
314 if (jeb && minsize > jeb->free_size) {
315 /* Skip the end of this block and file it as having some dirty space */
316 /* If there's a pending write to it, flush now */
317
318 if (jffs2_wbuf_dirty(c)) {
319 spin_unlock(&c->erase_completion_lock);
320 D1(printk(KERN_DEBUG "jffs2_do_reserve_space: Flushing write buffer\n"));
321 jffs2_flush_wbuf_pad(c);
322 spin_lock(&c->erase_completion_lock);
323 jeb = c->nextblock;
324 goto restart;
325 }
326
327 c->wasted_size += jeb->free_size;
328 c->free_size -= jeb->free_size;
329 jeb->wasted_size += jeb->free_size;
330 jeb->free_size = 0;
331
332 jffs2_close_nextblock(c, jeb);
333 jeb = NULL;
334 }
335 }
336
337 if (!jeb) {
338
339 ret = jffs2_find_nextblock(c);
340 if (ret)
341 return ret;
342
343 jeb = c->nextblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 if (jeb->free_size != c->sector_size - c->cleanmarker_size) {
346 printk(KERN_WARNING "Eep. Block 0x%08x taken from free_list had free_size of 0x%08x!!\n", jeb->offset, jeb->free_size);
347 goto restart;
348 }
349 }
350 /* OK, jeb (==c->nextblock) is now pointing at a block which definitely has
351 enough space */
352 *ofs = jeb->offset + (c->sector_size - jeb->free_size);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100353 *len = jeb->free_size - reserved_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if (c->cleanmarker_size && jeb->used_size == c->cleanmarker_size &&
356 !jeb->first_node->next_in_ino) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000357 /* Only node in it beforehand was a CLEANMARKER node (we think).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 So mark it obsolete now that there's going to be another node
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000359 in the block. This will reduce used_size to zero but We've
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 already set c->nextblock so that jffs2_mark_node_obsolete()
361 won't try to refile it to the dirty_list.
362 */
363 spin_unlock(&c->erase_completion_lock);
364 jffs2_mark_node_obsolete(c, jeb->first_node);
365 spin_lock(&c->erase_completion_lock);
366 }
367
368 D1(printk(KERN_DEBUG "jffs2_do_reserve_space(): Giving 0x%x bytes at 0x%x\n", *len, *ofs));
369 return 0;
370}
371
372/**
373 * jffs2_add_physical_node_ref - add a physical node reference to the list
374 * @c: superblock info
375 * @new: new node reference to add
376 * @len: length of this physical node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 *
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000378 * Should only be used to report nodes for which space has been allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * by jffs2_reserve_space.
380 *
381 * Must be called with the alloc_sem held.
382 */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000383
David Woodhouseb64335f2006-05-21 04:36:45 +0100384int jffs2_add_physical_node_ref(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *new, uint32_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct jffs2_eraseblock *jeb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 jeb = &c->blocks[new->flash_offset / c->sector_size];
David Woodhouseb64335f2006-05-21 04:36:45 +0100389 new->__totlen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 D1(printk(KERN_DEBUG "jffs2_add_physical_node_ref(): Node at 0x%x(%d), size 0x%x\n", ref_offset(new), ref_flags(new), len));
392#if 1
Estelle Hammache3118db32005-01-24 21:30:25 +0000393 /* we could get some obsolete nodes after nextblock was refiled
394 in wbuf.c */
Estelle Hammache9b88f472005-01-28 18:53:05 +0000395 if ((c->nextblock || !ref_obsolete(new))
396 &&(jeb != c->nextblock || ref_offset(new) != jeb->offset + (c->sector_size - jeb->free_size))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 printk(KERN_WARNING "argh. node added in wrong place\n");
398 jffs2_free_raw_node_ref(new);
399 return -EINVAL;
400 }
401#endif
402 spin_lock(&c->erase_completion_lock);
403
David Woodhousef1f96712006-05-20 19:45:26 +0100404 jffs2_link_node_ref(c, jeb, new, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Estelle Hammache9b88f472005-01-28 18:53:05 +0000406 if (!jeb->free_size && !jeb->dirty_size && !ISDIRTY(jeb->wasted_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* If it lives on the dirty_list, jffs2_reserve_space will put it there */
408 D1(printk(KERN_DEBUG "Adding full erase block at 0x%08x to clean_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n",
409 jeb->offset, jeb->free_size, jeb->dirty_size, jeb->used_size));
410 if (jffs2_wbuf_dirty(c)) {
411 /* Flush the last write in the block if it's outstanding */
412 spin_unlock(&c->erase_completion_lock);
413 jffs2_flush_wbuf_pad(c);
414 spin_lock(&c->erase_completion_lock);
415 }
416
417 list_add_tail(&jeb->list, &c->clean_list);
418 c->nextblock = NULL;
419 }
Artem B. Bityutskiye0c8e422005-07-24 16:14:17 +0100420 jffs2_dbg_acct_sanity_check_nolock(c,jeb);
421 jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 spin_unlock(&c->erase_completion_lock);
424
425 return 0;
426}
427
428
429void jffs2_complete_reservation(struct jffs2_sb_info *c)
430{
431 D1(printk(KERN_DEBUG "jffs2_complete_reservation()\n"));
432 jffs2_garbage_collect_trigger(c);
433 up(&c->alloc_sem);
434}
435
436static inline int on_list(struct list_head *obj, struct list_head *head)
437{
438 struct list_head *this;
439
440 list_for_each(this, head) {
441 if (this == obj) {
442 D1(printk("%p is on list at %p\n", obj, head));
443 return 1;
444
445 }
446 }
447 return 0;
448}
449
450void jffs2_mark_node_obsolete(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref)
451{
452 struct jffs2_eraseblock *jeb;
453 int blocknr;
454 struct jffs2_unknown_node n;
455 int ret, addedsize;
456 size_t retlen;
David Woodhouse1417fc42006-05-20 16:20:19 +0100457 uint32_t freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if(!ref) {
460 printk(KERN_NOTICE "EEEEEK. jffs2_mark_node_obsolete called with NULL node\n");
461 return;
462 }
463 if (ref_obsolete(ref)) {
464 D1(printk(KERN_DEBUG "jffs2_mark_node_obsolete called with already obsolete node at 0x%08x\n", ref_offset(ref)));
465 return;
466 }
467 blocknr = ref->flash_offset / c->sector_size;
468 if (blocknr >= c->nr_blocks) {
469 printk(KERN_NOTICE "raw node at 0x%08x is off the end of device!\n", ref->flash_offset);
470 BUG();
471 }
472 jeb = &c->blocks[blocknr];
473
474 if (jffs2_can_mark_obsolete(c) && !jffs2_is_readonly(c) &&
Artem B. Bityuckiy31fbdf72005-02-28 08:21:09 +0000475 !(c->flags & (JFFS2_SB_FLAG_SCANNING | JFFS2_SB_FLAG_BUILDING))) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000476 /* Hm. This may confuse static lock analysis. If any of the above
477 three conditions is false, we're going to return from this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 function without actually obliterating any nodes or freeing
479 any jffs2_raw_node_refs. So we don't need to stop erases from
480 happening, or protect against people holding an obsolete
481 jffs2_raw_node_ref without the erase_completion_lock. */
482 down(&c->erase_free_sem);
483 }
484
485 spin_lock(&c->erase_completion_lock);
486
David Woodhouse1417fc42006-05-20 16:20:19 +0100487 freed_len = ref_totlen(c, jeb, ref);
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (ref_flags(ref) == REF_UNCHECKED) {
David Woodhouse1417fc42006-05-20 16:20:19 +0100490 D1(if (unlikely(jeb->unchecked_size < freed_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 printk(KERN_NOTICE "raw unchecked node of size 0x%08x freed from erase block %d at 0x%08x, but unchecked_size was already 0x%08x\n",
David Woodhouse1417fc42006-05-20 16:20:19 +0100492 freed_len, blocknr, ref->flash_offset, jeb->used_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 BUG();
494 })
David Woodhouse1417fc42006-05-20 16:20:19 +0100495 D1(printk(KERN_DEBUG "Obsoleting previously unchecked node at 0x%08x of len %x: ", ref_offset(ref), freed_len));
496 jeb->unchecked_size -= freed_len;
497 c->unchecked_size -= freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 } else {
David Woodhouse1417fc42006-05-20 16:20:19 +0100499 D1(if (unlikely(jeb->used_size < freed_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 printk(KERN_NOTICE "raw node of size 0x%08x freed from erase block %d at 0x%08x, but used_size was already 0x%08x\n",
David Woodhouse1417fc42006-05-20 16:20:19 +0100501 freed_len, blocknr, ref->flash_offset, jeb->used_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 BUG();
503 })
David Woodhouse1417fc42006-05-20 16:20:19 +0100504 D1(printk(KERN_DEBUG "Obsoleting node at 0x%08x of len %#x: ", ref_offset(ref), freed_len));
505 jeb->used_size -= freed_len;
506 c->used_size -= freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
509 // Take care, that wasted size is taken into concern
David Woodhouse1417fc42006-05-20 16:20:19 +0100510 if ((jeb->dirty_size || ISDIRTY(jeb->wasted_size + freed_len)) && jeb != c->nextblock) {
Artem B. Bityuckiy6f401a42005-04-06 17:02:55 +0100511 D1(printk(KERN_DEBUG "Dirtying\n"));
David Woodhouse1417fc42006-05-20 16:20:19 +0100512 addedsize = freed_len;
513 jeb->dirty_size += freed_len;
514 c->dirty_size += freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 /* Convert wasted space to dirty, if not a bad block */
517 if (jeb->wasted_size) {
518 if (on_list(&jeb->list, &c->bad_used_list)) {
519 D1(printk(KERN_DEBUG "Leaving block at %08x on the bad_used_list\n",
520 jeb->offset));
521 addedsize = 0; /* To fool the refiling code later */
522 } else {
523 D1(printk(KERN_DEBUG "Converting %d bytes of wasted space to dirty in block at %08x\n",
524 jeb->wasted_size, jeb->offset));
525 addedsize += jeb->wasted_size;
526 jeb->dirty_size += jeb->wasted_size;
527 c->dirty_size += jeb->wasted_size;
528 c->wasted_size -= jeb->wasted_size;
529 jeb->wasted_size = 0;
530 }
531 }
532 } else {
Artem B. Bityuckiy6f401a42005-04-06 17:02:55 +0100533 D1(printk(KERN_DEBUG "Wasting\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 addedsize = 0;
David Woodhouse1417fc42006-05-20 16:20:19 +0100535 jeb->wasted_size += freed_len;
536 c->wasted_size += freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538 ref->flash_offset = ref_offset(ref) | REF_OBSOLETE;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000539
Artem B. Bityutskiye0c8e422005-07-24 16:14:17 +0100540 jffs2_dbg_acct_sanity_check_nolock(c, jeb);
541 jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Artem B. Bityuckiy31fbdf72005-02-28 08:21:09 +0000543 if (c->flags & JFFS2_SB_FLAG_SCANNING) {
544 /* Flash scanning is in progress. Don't muck about with the block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 lists because they're not ready yet, and don't actually
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000546 obliterate nodes that look obsolete. If they weren't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 marked obsolete on the flash at the time they _became_
548 obsolete, there was probably a reason for that. */
549 spin_unlock(&c->erase_completion_lock);
550 /* We didn't lock the erase_free_sem */
551 return;
552 }
553
554 if (jeb == c->nextblock) {
555 D2(printk(KERN_DEBUG "Not moving nextblock 0x%08x to dirty/erase_pending list\n", jeb->offset));
556 } else if (!jeb->used_size && !jeb->unchecked_size) {
557 if (jeb == c->gcblock) {
558 D1(printk(KERN_DEBUG "gcblock at 0x%08x completely dirtied. Clearing gcblock...\n", jeb->offset));
559 c->gcblock = NULL;
560 } else {
561 D1(printk(KERN_DEBUG "Eraseblock at 0x%08x completely dirtied. Removing from (dirty?) list...\n", jeb->offset));
562 list_del(&jeb->list);
563 }
564 if (jffs2_wbuf_dirty(c)) {
565 D1(printk(KERN_DEBUG "...and adding to erasable_pending_wbuf_list\n"));
566 list_add_tail(&jeb->list, &c->erasable_pending_wbuf_list);
567 } else {
568 if (jiffies & 127) {
569 /* Most of the time, we just erase it immediately. Otherwise we
570 spend ages scanning it on mount, etc. */
571 D1(printk(KERN_DEBUG "...and adding to erase_pending_list\n"));
572 list_add_tail(&jeb->list, &c->erase_pending_list);
573 c->nr_erasing_blocks++;
574 jffs2_erase_pending_trigger(c);
575 } else {
576 /* Sometimes, however, we leave it elsewhere so it doesn't get
577 immediately reused, and we spread the load a bit. */
578 D1(printk(KERN_DEBUG "...and adding to erasable_list\n"));
579 list_add_tail(&jeb->list, &c->erasable_list);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
582 D1(printk(KERN_DEBUG "Done OK\n"));
583 } else if (jeb == c->gcblock) {
584 D2(printk(KERN_DEBUG "Not moving gcblock 0x%08x to dirty_list\n", jeb->offset));
585 } else if (ISDIRTY(jeb->dirty_size) && !ISDIRTY(jeb->dirty_size - addedsize)) {
586 D1(printk(KERN_DEBUG "Eraseblock at 0x%08x is freshly dirtied. Removing from clean list...\n", jeb->offset));
587 list_del(&jeb->list);
588 D1(printk(KERN_DEBUG "...and adding to dirty_list\n"));
589 list_add_tail(&jeb->list, &c->dirty_list);
590 } else if (VERYDIRTY(c, jeb->dirty_size) &&
591 !VERYDIRTY(c, jeb->dirty_size - addedsize)) {
592 D1(printk(KERN_DEBUG "Eraseblock at 0x%08x is now very dirty. Removing from dirty list...\n", jeb->offset));
593 list_del(&jeb->list);
594 D1(printk(KERN_DEBUG "...and adding to very_dirty_list\n"));
595 list_add_tail(&jeb->list, &c->very_dirty_list);
596 } else {
597 D1(printk(KERN_DEBUG "Eraseblock at 0x%08x not moved anywhere. (free 0x%08x, dirty 0x%08x, used 0x%08x)\n",
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000598 jeb->offset, jeb->free_size, jeb->dirty_size, jeb->used_size));
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 spin_unlock(&c->erase_completion_lock);
602
Artem B. Bityuckiy31fbdf72005-02-28 08:21:09 +0000603 if (!jffs2_can_mark_obsolete(c) || jffs2_is_readonly(c) ||
604 (c->flags & JFFS2_SB_FLAG_BUILDING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /* We didn't lock the erase_free_sem */
606 return;
607 }
608
609 /* The erase_free_sem is locked, and has been since before we marked the node obsolete
610 and potentially put its eraseblock onto the erase_pending_list. Thus, we know that
611 the block hasn't _already_ been erased, and that 'ref' itself hasn't been freed yet
612 by jffs2_free_all_node_refs() in erase.c. Which is nice. */
613
614 D1(printk(KERN_DEBUG "obliterating obsoleted node at 0x%08x\n", ref_offset(ref)));
615 ret = jffs2_flash_read(c, ref_offset(ref), sizeof(n), &retlen, (char *)&n);
616 if (ret) {
617 printk(KERN_WARNING "Read error reading from obsoleted node at 0x%08x: %d\n", ref_offset(ref), ret);
618 goto out_erase_sem;
619 }
620 if (retlen != sizeof(n)) {
621 printk(KERN_WARNING "Short read from obsoleted node at 0x%08x: %zd\n", ref_offset(ref), retlen);
622 goto out_erase_sem;
623 }
David Woodhouse1417fc42006-05-20 16:20:19 +0100624 if (PAD(je32_to_cpu(n.totlen)) != PAD(freed_len)) {
625 printk(KERN_WARNING "Node totlen on flash (0x%08x) != totlen from node ref (0x%08x)\n", je32_to_cpu(n.totlen), freed_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 goto out_erase_sem;
627 }
628 if (!(je16_to_cpu(n.nodetype) & JFFS2_NODE_ACCURATE)) {
629 D1(printk(KERN_DEBUG "Node at 0x%08x was already marked obsolete (nodetype 0x%04x)\n", ref_offset(ref), je16_to_cpu(n.nodetype)));
630 goto out_erase_sem;
631 }
632 /* XXX FIXME: This is ugly now */
633 n.nodetype = cpu_to_je16(je16_to_cpu(n.nodetype) & ~JFFS2_NODE_ACCURATE);
634 ret = jffs2_flash_write(c, ref_offset(ref), sizeof(n), &retlen, (char *)&n);
635 if (ret) {
636 printk(KERN_WARNING "Write error in obliterating obsoleted node at 0x%08x: %d\n", ref_offset(ref), ret);
637 goto out_erase_sem;
638 }
639 if (retlen != sizeof(n)) {
640 printk(KERN_WARNING "Short write in obliterating obsoleted node at 0x%08x: %zd\n", ref_offset(ref), retlen);
641 goto out_erase_sem;
642 }
643
644 /* Nodes which have been marked obsolete no longer need to be
645 associated with any inode. Remove them from the per-inode list.
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000646
647 Note we can't do this for NAND at the moment because we need
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 obsolete dirent nodes to stay on the lists, because of the
649 horridness in jffs2_garbage_collect_deletion_dirent(). Also
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000650 because we delete the inocache, and on NAND we need that to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 stay around until all the nodes are actually erased, in order
652 to stop us from giving the same inode number to another newly
653 created inode. */
654 if (ref->next_in_ino) {
655 struct jffs2_inode_cache *ic;
656 struct jffs2_raw_node_ref **p;
657
658 spin_lock(&c->erase_completion_lock);
659
660 ic = jffs2_raw_ref_to_ic(ref);
661 for (p = &ic->nodes; (*p) != ref; p = &((*p)->next_in_ino))
662 ;
663
664 *p = ref->next_in_ino;
665 ref->next_in_ino = NULL;
666
Artem B. Bityuckiy437316d2005-03-20 17:46:23 +0000667 if (ic->nodes == (void *)ic && ic->nlink == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 jffs2_del_ino_cache(c, ic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 spin_unlock(&c->erase_completion_lock);
671 }
672
673
674 /* Merge with the next node in the physical list, if there is one
675 and if it's also obsolete and if it doesn't belong to any inode */
676 if (ref->next_phys && ref_obsolete(ref->next_phys) &&
677 !ref->next_phys->next_in_ino) {
678 struct jffs2_raw_node_ref *n = ref->next_phys;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 spin_lock(&c->erase_completion_lock);
681
682 ref->__totlen += n->__totlen;
683 ref->next_phys = n->next_phys;
684 if (jeb->last_node == n) jeb->last_node = ref;
685 if (jeb->gc_node == n) {
686 /* gc will be happy continuing gc on this node */
687 jeb->gc_node=ref;
688 }
689 spin_unlock(&c->erase_completion_lock);
690
691 jffs2_free_raw_node_ref(n);
692 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* Also merge with the previous node in the list, if there is one
695 and that one is obsolete */
696 if (ref != jeb->first_node ) {
697 struct jffs2_raw_node_ref *p = jeb->first_node;
698
699 spin_lock(&c->erase_completion_lock);
700
701 while (p->next_phys != ref)
702 p = p->next_phys;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (ref_obsolete(p) && !ref->next_in_ino) {
705 p->__totlen += ref->__totlen;
706 if (jeb->last_node == ref) {
707 jeb->last_node = p;
708 }
709 if (jeb->gc_node == ref) {
710 /* gc will be happy continuing gc on this node */
711 jeb->gc_node=p;
712 }
713 p->next_phys = ref->next_phys;
714 jffs2_free_raw_node_ref(ref);
715 }
716 spin_unlock(&c->erase_completion_lock);
717 }
718 out_erase_sem:
719 up(&c->erase_free_sem);
720}
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722int jffs2_thread_should_wake(struct jffs2_sb_info *c)
723{
724 int ret = 0;
725 uint32_t dirty;
726
727 if (c->unchecked_size) {
728 D1(printk(KERN_DEBUG "jffs2_thread_should_wake(): unchecked_size %d, checked_ino #%d\n",
729 c->unchecked_size, c->checked_ino));
730 return 1;
731 }
732
733 /* dirty_size contains blocks on erase_pending_list
734 * those blocks are counted in c->nr_erasing_blocks.
735 * If one block is actually erased, it is not longer counted as dirty_space
736 * but it is counted in c->nr_erasing_blocks, so we add it and subtract it
737 * with c->nr_erasing_blocks * c->sector_size again.
738 * Blocks on erasable_list are counted as dirty_size, but not in c->nr_erasing_blocks
739 * This helps us to force gc and pick eventually a clean block to spread the load.
740 */
741 dirty = c->dirty_size + c->erasing_size - c->nr_erasing_blocks * c->sector_size;
742
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000743 if (c->nr_free_blocks + c->nr_erasing_blocks < c->resv_blocks_gctrigger &&
744 (dirty > c->nospc_dirty_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 ret = 1;
746
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000747 D1(printk(KERN_DEBUG "jffs2_thread_should_wake(): nr_free_blocks %d, nr_erasing_blocks %d, dirty_size 0x%x: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 c->nr_free_blocks, c->nr_erasing_blocks, c->dirty_size, ret?"yes":"no"));
749
750 return ret;
751}