blob: bbae5b1a833a24a724eaa633d9ffd217e7762b88 [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Created by David Woodhouse <dwmw2@infradead.org>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Joe Perches5a528952012-02-15 15:56:45 -080012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/mtd/mtd.h>
16#include <linux/compiler.h>
17#include <linux/sched.h> /* For cond_resched() */
18#include "nodelist.h"
Ferenc Havasie631ddb2005-09-07 09:35:26 +010019#include "debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Daniel Drake8da8ba22012-04-10 22:22:35 +010021/*
22 * Check whether the user is allowed to write.
23 */
24static int jffs2_rp_can_write(struct jffs2_sb_info *c)
25{
26 uint32_t avail;
27 struct jffs2_mount_opts *opts = &c->mount_opts;
28
29 avail = c->dirty_size + c->free_size + c->unchecked_size +
30 c->erasing_size - c->resv_blocks_write * c->sector_size
31 - c->nospc_dirty_size;
32
33 if (avail < 2 * opts->rp_size)
34 jffs2_dbg(1, "rpsize %u, dirty_size %u, free_size %u, "
35 "erasing_size %u, unchecked_size %u, "
36 "nr_erasing_blocks %u, avail %u, resrv %u\n",
37 opts->rp_size, c->dirty_size, c->free_size,
38 c->erasing_size, c->unchecked_size,
39 c->nr_erasing_blocks, avail, c->nospc_dirty_size);
40
41 if (avail > opts->rp_size)
42 return 1;
43
44 /* Always allow root */
45 if (capable(CAP_SYS_RESOURCE))
46 return 1;
47
48 jffs2_dbg(1, "forbid writing\n");
49 return 0;
50}
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/**
53 * jffs2_reserve_space - request physical space to write nodes to flash
54 * @c: superblock info
55 * @minsize: Minimum acceptable size of allocation
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * @len: Returned value of allocation length
57 * @prio: Allocation type - ALLOC_{NORMAL,DELETION}
58 *
59 * Requests a block of physical space on the flash. Returns zero for success
David Woodhouse9fe48542006-05-23 00:38:06 +010060 * and puts 'len' into the appropriate place, or returns -ENOSPC or other
61 * error if appropriate. Doesn't return len since that's
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *
63 * If it returns zero, jffs2_reserve_space() also downs the per-filesystem
64 * allocation semaphore, to prevent more than one allocation from being
65 * active at any time. The semaphore is later released by jffs2_commit_allocation()
66 *
67 * jffs2_reserve_space() may trigger garbage collection in order to make room
68 * for the requested allocation.
69 */
70
Ferenc Havasie631ddb2005-09-07 09:35:26 +010071static int jffs2_do_reserve_space(struct jffs2_sb_info *c, uint32_t minsize,
David Woodhouse9fe48542006-05-23 00:38:06 +010072 uint32_t *len, uint32_t sumsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
David Woodhouse9fe48542006-05-23 00:38:06 +010074int jffs2_reserve_space(struct jffs2_sb_info *c, uint32_t minsize,
Ferenc Havasie631ddb2005-09-07 09:35:26 +010075 uint32_t *len, int prio, uint32_t sumsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 int ret = -EAGAIN;
78 int blocksneeded = c->resv_blocks_write;
79 /* align it */
80 minsize = PAD(minsize);
81
Joe Perches9c261b32012-02-15 15:56:43 -080082 jffs2_dbg(1, "%s(): Requested 0x%x bytes\n", __func__, minsize);
David Woodhouseced22072008-04-22 15:13:40 +010083 mutex_lock(&c->alloc_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Joe Perches9c261b32012-02-15 15:56:43 -080085 jffs2_dbg(1, "%s(): alloc sem got\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 spin_lock(&c->erase_completion_lock);
88
Daniel Drake8da8ba22012-04-10 22:22:35 +010089 /*
90 * Check if the free space is greater then size of the reserved pool.
91 * If not, only allow root to proceed with writing.
92 */
93 if (prio != ALLOC_DELETION && !jffs2_rp_can_write(c)) {
94 ret = -ENOSPC;
95 goto out;
96 }
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* this needs a little more thought (true <tglx> :)) */
99 while(ret == -EAGAIN) {
100 while(c->nr_free_blocks + c->nr_erasing_blocks < blocksneeded) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 uint32_t dirty, avail;
102
103 /* calculate real dirty size
104 * dirty_size contains blocks on erase_pending_list
105 * those blocks are counted in c->nr_erasing_blocks.
106 * If one block is actually erased, it is not longer counted as dirty_space
107 * but it is counted in c->nr_erasing_blocks, so we add it and subtract it
108 * with c->nr_erasing_blocks * c->sector_size again.
109 * Blocks on erasable_list are counted as dirty_size, but not in c->nr_erasing_blocks
110 * This helps us to force gc and pick eventually a clean block to spread the load.
111 * We add unchecked_size here, as we hopefully will find some space to use.
112 * This will affect the sum only once, as gc first finishes checking
113 * of nodes.
114 */
115 dirty = c->dirty_size + c->erasing_size - c->nr_erasing_blocks * c->sector_size + c->unchecked_size;
116 if (dirty < c->nospc_dirty_size) {
117 if (prio == ALLOC_DELETION && c->nr_free_blocks + c->nr_erasing_blocks >= c->resv_blocks_deletion) {
Joe Perches9c261b32012-02-15 15:56:43 -0800118 jffs2_dbg(1, "%s(): Low on dirty space to GC, but it's a deletion. Allowing...\n",
119 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 break;
121 }
Joe Perches9c261b32012-02-15 15:56:43 -0800122 jffs2_dbg(1, "dirty size 0x%08x + unchecked_size 0x%08x < nospc_dirty_size 0x%08x, returning -ENOSPC\n",
123 dirty, c->unchecked_size,
124 c->sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100127 mutex_unlock(&c->alloc_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return -ENOSPC;
129 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* Calc possibly available space. Possibly available means that we
132 * don't know, if unchecked size contains obsoleted nodes, which could give us some
133 * more usable space. This will affect the sum only once, as gc first finishes checking
134 * of nodes.
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000135 + Return -ENOSPC, if the maximum possibly available space is less or equal than
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * blocksneeded * sector_size.
137 * This blocks endless gc looping on a filesystem, which is nearly full, even if
138 * the check above passes.
139 */
140 avail = c->free_size + c->dirty_size + c->erasing_size + c->unchecked_size;
141 if ( (avail / c->sector_size) <= blocksneeded) {
142 if (prio == ALLOC_DELETION && c->nr_free_blocks + c->nr_erasing_blocks >= c->resv_blocks_deletion) {
Joe Perches9c261b32012-02-15 15:56:43 -0800143 jffs2_dbg(1, "%s(): Low on possibly available space, but it's a deletion. Allowing...\n",
144 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 break;
146 }
147
Joe Perches9c261b32012-02-15 15:56:43 -0800148 jffs2_dbg(1, "max. available size 0x%08x < blocksneeded * sector_size 0x%08x, returning -ENOSPC\n",
149 avail, blocksneeded * c->sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100151 mutex_unlock(&c->alloc_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return -ENOSPC;
153 }
154
David Woodhouseced22072008-04-22 15:13:40 +0100155 mutex_unlock(&c->alloc_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Joe Perches9c261b32012-02-15 15:56:43 -0800157 jffs2_dbg(1, "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",
158 c->nr_free_blocks, c->nr_erasing_blocks,
159 c->free_size, c->dirty_size, c->wasted_size,
160 c->used_size, c->erasing_size, c->bad_size,
161 c->free_size + c->dirty_size +
162 c->wasted_size + c->used_size +
163 c->erasing_size + c->bad_size,
164 c->flash_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 spin_unlock(&c->erase_completion_lock);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 ret = jffs2_garbage_collect_pass(c);
David Woodhouse422b1202008-04-23 15:40:52 +0100168
David Woodhouse0717bf82010-05-19 16:37:13 +0100169 if (ret == -EAGAIN) {
170 spin_lock(&c->erase_completion_lock);
171 if (c->nr_erasing_blocks &&
172 list_empty(&c->erase_pending_list) &&
173 list_empty(&c->erase_complete_list)) {
174 DECLARE_WAITQUEUE(wait, current);
175 set_current_state(TASK_UNINTERRUPTIBLE);
176 add_wait_queue(&c->erase_wait, &wait);
Joe Perches9c261b32012-02-15 15:56:43 -0800177 jffs2_dbg(1, "%s waiting for erase to complete\n",
178 __func__);
David Woodhouse0717bf82010-05-19 16:37:13 +0100179 spin_unlock(&c->erase_completion_lock);
180
181 schedule();
Li Zefan3ead9572014-02-12 12:44:57 -0800182 remove_wait_queue(&c->erase_wait, &wait);
David Woodhouse0717bf82010-05-19 16:37:13 +0100183 } else
184 spin_unlock(&c->erase_completion_lock);
185 } else if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return ret;
187
188 cond_resched();
189
190 if (signal_pending(current))
191 return -EINTR;
192
David Woodhouseced22072008-04-22 15:13:40 +0100193 mutex_lock(&c->alloc_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 spin_lock(&c->erase_completion_lock);
195 }
196
David Woodhouse9fe48542006-05-23 00:38:06 +0100197 ret = jffs2_do_reserve_space(c, minsize, len, sumsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (ret) {
Joe Perches9c261b32012-02-15 15:56:43 -0800199 jffs2_dbg(1, "%s(): ret is %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201 }
Daniel Drake8da8ba22012-04-10 22:22:35 +0100202
203out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 spin_unlock(&c->erase_completion_lock);
David Woodhouse2f785402006-05-24 02:04:45 +0100205 if (!ret)
David Woodhouse046b8b92006-05-25 01:50:35 +0100206 ret = jffs2_prealloc_raw_node_refs(c, c->nextblock, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (ret)
David Woodhouseced22072008-04-22 15:13:40 +0100208 mutex_unlock(&c->alloc_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return ret;
210}
211
David Woodhouse9fe48542006-05-23 00:38:06 +0100212int jffs2_reserve_space_gc(struct jffs2_sb_info *c, uint32_t minsize,
213 uint32_t *len, uint32_t sumsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 int ret = -EAGAIN;
216 minsize = PAD(minsize);
217
Joe Perches9c261b32012-02-15 15:56:43 -0800218 jffs2_dbg(1, "%s(): Requested 0x%x bytes\n", __func__, minsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 spin_lock(&c->erase_completion_lock);
221 while(ret == -EAGAIN) {
David Woodhouse9fe48542006-05-23 00:38:06 +0100222 ret = jffs2_do_reserve_space(c, minsize, len, sumsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (ret) {
Joe Perches9c261b32012-02-15 15:56:43 -0800224 jffs2_dbg(1, "%s(): looping, ret is %d\n",
225 __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227 }
228 spin_unlock(&c->erase_completion_lock);
David Woodhouse2f785402006-05-24 02:04:45 +0100229 if (!ret)
David Woodhouse046b8b92006-05-25 01:50:35 +0100230 ret = jffs2_prealloc_raw_node_refs(c, c->nextblock, 1);
David Woodhouse2f785402006-05-24 02:04:45 +0100231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return ret;
233}
234
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100235
236/* Classify nextblock (clean, dirty of verydirty) and force to select an other one */
237
238static void jffs2_close_nextblock(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100240
Adrian Hunter99c25942007-03-29 11:00:47 +0300241 if (c->nextblock == NULL) {
Joe Perches9c261b32012-02-15 15:56:43 -0800242 jffs2_dbg(1, "%s(): Erase block at 0x%08x has already been placed in a list\n",
243 __func__, jeb->offset);
Adrian Hunter99c25942007-03-29 11:00:47 +0300244 return;
245 }
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100246 /* Check, if we have a dirty block now, or if it was dirty already */
247 if (ISDIRTY (jeb->wasted_size + jeb->dirty_size)) {
248 c->dirty_size += jeb->wasted_size;
249 c->wasted_size -= jeb->wasted_size;
250 jeb->dirty_size += jeb->wasted_size;
251 jeb->wasted_size = 0;
252 if (VERYDIRTY(c, jeb->dirty_size)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800253 jffs2_dbg(1, "Adding full erase block at 0x%08x to very_dirty_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n",
254 jeb->offset, jeb->free_size, jeb->dirty_size,
255 jeb->used_size);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100256 list_add_tail(&jeb->list, &c->very_dirty_list);
257 } else {
Joe Perches9c261b32012-02-15 15:56:43 -0800258 jffs2_dbg(1, "Adding full erase block at 0x%08x to dirty_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n",
259 jeb->offset, jeb->free_size, jeb->dirty_size,
260 jeb->used_size);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100261 list_add_tail(&jeb->list, &c->dirty_list);
262 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000263 } else {
Joe Perches9c261b32012-02-15 15:56:43 -0800264 jffs2_dbg(1, "Adding full erase block at 0x%08x to clean_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n",
265 jeb->offset, jeb->free_size, jeb->dirty_size,
266 jeb->used_size);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100267 list_add_tail(&jeb->list, &c->clean_list);
268 }
269 c->nextblock = NULL;
270
271}
272
273/* Select a new jeb for nextblock */
274
275static int jffs2_find_nextblock(struct jffs2_sb_info *c)
276{
277 struct list_head *next;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000278
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100279 /* Take the next block off the 'free' list */
280
281 if (list_empty(&c->free_list)) {
282
283 if (!c->nr_erasing_blocks &&
284 !list_empty(&c->erasable_list)) {
285 struct jffs2_eraseblock *ejeb;
286
287 ejeb = list_entry(c->erasable_list.next, struct jffs2_eraseblock, list);
Akinobu Mitaf1166292006-06-26 00:24:46 -0700288 list_move_tail(&ejeb->list, &c->erase_pending_list);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100289 c->nr_erasing_blocks++;
David Woodhouseae3b6ba2010-05-19 17:05:14 +0100290 jffs2_garbage_collect_trigger(c);
Joe Perches9c261b32012-02-15 15:56:43 -0800291 jffs2_dbg(1, "%s(): Triggering erase of erasable block at 0x%08x\n",
292 __func__, ejeb->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100293 }
294
295 if (!c->nr_erasing_blocks &&
296 !list_empty(&c->erasable_pending_wbuf_list)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800297 jffs2_dbg(1, "%s(): Flushing write buffer\n",
298 __func__);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100299 /* c->nextblock is NULL, no update to c->nextblock allowed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 spin_unlock(&c->erase_completion_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 jffs2_flush_wbuf_pad(c);
302 spin_lock(&c->erase_completion_lock);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100303 /* Have another go. It'll be on the erasable_list now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return -EAGAIN;
305 }
306
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100307 if (!c->nr_erasing_blocks) {
308 /* Ouch. We're in GC, or we wouldn't have got here.
309 And there's no space left. At all. */
Joe Perchesda320f02012-02-15 15:56:44 -0800310 pr_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",
311 c->nr_erasing_blocks, c->nr_free_blocks,
312 list_empty(&c->erasable_list) ? "yes" : "no",
313 list_empty(&c->erasing_list) ? "yes" : "no",
314 list_empty(&c->erase_pending_list) ? "yes" : "no");
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100315 return -ENOSPC;
316 }
317
318 spin_unlock(&c->erase_completion_lock);
319 /* Don't wait for it; just erase one right now */
320 jffs2_erase_pending_blocks(c, 1);
321 spin_lock(&c->erase_completion_lock);
322
323 /* An erase may have failed, decreasing the
324 amount of free space available. So we must
325 restart from the beginning */
326 return -EAGAIN;
327 }
328
329 next = c->free_list.next;
330 list_del(next);
331 c->nextblock = list_entry(next, struct jffs2_eraseblock, list);
332 c->nr_free_blocks--;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000333
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100334 jffs2_sum_reset_collected(c->summary); /* reset collected summary */
335
Steve Glendinningf04de502008-10-21 13:25:51 +0100336#ifdef CONFIG_JFFS2_FS_WRITEBUFFER
Alexander Belyakov5bf17232008-10-17 19:19:13 +0400337 /* adjust write buffer offset, else we get a non contiguous write bug */
338 if (!(c->wbuf_ofs % c->sector_size) && !c->wbuf_len)
339 c->wbuf_ofs = 0xffffffff;
Steve Glendinningf04de502008-10-21 13:25:51 +0100340#endif
Alexander Belyakov5bf17232008-10-17 19:19:13 +0400341
Joe Perches9c261b32012-02-15 15:56:43 -0800342 jffs2_dbg(1, "%s(): new nextblock = 0x%08x\n",
343 __func__, c->nextblock->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100344
345 return 0;
346}
347
348/* Called with alloc sem _and_ erase_completion_lock */
David Woodhouse9fe48542006-05-23 00:38:06 +0100349static int jffs2_do_reserve_space(struct jffs2_sb_info *c, uint32_t minsize,
350 uint32_t *len, uint32_t sumsize)
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100351{
352 struct jffs2_eraseblock *jeb = c->nextblock;
David Woodhouse9fe48542006-05-23 00:38:06 +0100353 uint32_t reserved_size; /* for summary information at the end of the jeb */
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100354 int ret;
355
356 restart:
357 reserved_size = 0;
358
359 if (jffs2_sum_active() && (sumsize != JFFS2_SUMMARY_NOSUM_SIZE)) {
360 /* NOSUM_SIZE means not to generate summary */
361
362 if (jeb) {
363 reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE);
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +0100364 dbg_summary("minsize=%d , jeb->free=%d ,"
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100365 "summary->size=%d , sumsize=%d\n",
366 minsize, jeb->free_size,
367 c->summary->sum_size, sumsize);
368 }
369
370 /* Is there enough space for writing out the current node, or we have to
371 write out summary information now, close this jeb and select new nextblock? */
372 if (jeb && (PAD(minsize) + PAD(c->summary->sum_size + sumsize +
373 JFFS2_SUMMARY_FRAME_SIZE) > jeb->free_size)) {
374
375 /* Has summary been disabled for this jeb? */
376 if (jffs2_sum_is_disabled(c->summary)) {
377 sumsize = JFFS2_SUMMARY_NOSUM_SIZE;
378 goto restart;
379 }
380
381 /* Writing out the collected summary information */
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +0100382 dbg_summary("generating summary for 0x%08x.\n", jeb->offset);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100383 ret = jffs2_sum_write_sumnode(c);
384
385 if (ret)
386 return ret;
387
388 if (jffs2_sum_is_disabled(c->summary)) {
389 /* jffs2_write_sumnode() couldn't write out the summary information
390 diabling summary for this jeb and free the collected information
391 */
392 sumsize = JFFS2_SUMMARY_NOSUM_SIZE;
393 goto restart;
394 }
395
396 jffs2_close_nextblock(c, jeb);
397 jeb = NULL;
Ferenc Havasi34c0e902005-09-16 13:58:20 +0100398 /* keep always valid value in reserved_size */
399 reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100400 }
401 } else {
402 if (jeb && minsize > jeb->free_size) {
David Woodhousefc6612f2006-06-18 18:35:10 +0100403 uint32_t waste;
404
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100405 /* Skip the end of this block and file it as having some dirty space */
406 /* If there's a pending write to it, flush now */
407
408 if (jffs2_wbuf_dirty(c)) {
409 spin_unlock(&c->erase_completion_lock);
Joe Perches9c261b32012-02-15 15:56:43 -0800410 jffs2_dbg(1, "%s(): Flushing write buffer\n",
411 __func__);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100412 jffs2_flush_wbuf_pad(c);
413 spin_lock(&c->erase_completion_lock);
414 jeb = c->nextblock;
415 goto restart;
416 }
417
David Woodhousefc6612f2006-06-18 18:35:10 +0100418 spin_unlock(&c->erase_completion_lock);
419
420 ret = jffs2_prealloc_raw_node_refs(c, jeb, 1);
Alexey Khoroshilov2cbba752012-11-05 22:40:14 +0400421
David Woodhousefc6612f2006-06-18 18:35:10 +0100422 /* Just lock it again and continue. Nothing much can change because
423 we hold c->alloc_sem anyway. In fact, it's not entirely clear why
424 we hold c->erase_completion_lock in the majority of this function...
425 but that's a question for another (more caffeine-rich) day. */
426 spin_lock(&c->erase_completion_lock);
427
Alexey Khoroshilov2cbba752012-11-05 22:40:14 +0400428 if (ret)
429 return ret;
430
David Woodhousefc6612f2006-06-18 18:35:10 +0100431 waste = jeb->free_size;
432 jffs2_link_node_ref(c, jeb,
433 (jeb->offset + c->sector_size - waste) | REF_OBSOLETE,
434 waste, NULL);
435 /* FIXME: that made it count as dirty. Convert to wasted */
436 jeb->dirty_size -= waste;
437 c->dirty_size -= waste;
438 jeb->wasted_size += waste;
439 c->wasted_size += waste;
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100440
441 jffs2_close_nextblock(c, jeb);
442 jeb = NULL;
443 }
444 }
445
446 if (!jeb) {
447
448 ret = jffs2_find_nextblock(c);
449 if (ret)
450 return ret;
451
452 jeb = c->nextblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (jeb->free_size != c->sector_size - c->cleanmarker_size) {
Joe Perchesda320f02012-02-15 15:56:44 -0800455 pr_warn("Eep. Block 0x%08x taken from free_list had free_size of 0x%08x!!\n",
456 jeb->offset, jeb->free_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 goto restart;
458 }
459 }
460 /* OK, jeb (==c->nextblock) is now pointing at a block which definitely has
461 enough space */
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100462 *len = jeb->free_size - reserved_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 if (c->cleanmarker_size && jeb->used_size == c->cleanmarker_size &&
465 !jeb->first_node->next_in_ino) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000466 /* Only node in it beforehand was a CLEANMARKER node (we think).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 So mark it obsolete now that there's going to be another node
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000468 in the block. This will reduce used_size to zero but We've
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 already set c->nextblock so that jffs2_mark_node_obsolete()
470 won't try to refile it to the dirty_list.
471 */
472 spin_unlock(&c->erase_completion_lock);
473 jffs2_mark_node_obsolete(c, jeb->first_node);
474 spin_lock(&c->erase_completion_lock);
475 }
476
Joe Perches9c261b32012-02-15 15:56:43 -0800477 jffs2_dbg(1, "%s(): Giving 0x%x bytes at 0x%x\n",
478 __func__,
479 *len, jeb->offset + (c->sector_size - jeb->free_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return 0;
481}
482
483/**
484 * jffs2_add_physical_node_ref - add a physical node reference to the list
485 * @c: superblock info
486 * @new: new node reference to add
487 * @len: length of this physical node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 *
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000489 * Should only be used to report nodes for which space has been allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 * by jffs2_reserve_space.
491 *
492 * Must be called with the alloc_sem held.
493 */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000494
David Woodhouse2f785402006-05-24 02:04:45 +0100495struct jffs2_raw_node_ref *jffs2_add_physical_node_ref(struct jffs2_sb_info *c,
496 uint32_t ofs, uint32_t len,
497 struct jffs2_inode_cache *ic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 struct jffs2_eraseblock *jeb;
David Woodhouse2f785402006-05-24 02:04:45 +0100500 struct jffs2_raw_node_ref *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
David Woodhouse2f785402006-05-24 02:04:45 +0100502 jeb = &c->blocks[ofs / c->sector_size];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Joe Perches9c261b32012-02-15 15:56:43 -0800504 jffs2_dbg(1, "%s(): Node at 0x%x(%d), size 0x%x\n",
505 __func__, ofs & ~3, ofs & 3, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506#if 1
David Woodhouse2f785402006-05-24 02:04:45 +0100507 /* Allow non-obsolete nodes only to be added at the end of c->nextblock,
508 if c->nextblock is set. Note that wbuf.c will file obsolete nodes
509 even after refiling c->nextblock */
510 if ((c->nextblock || ((ofs & 3) != REF_OBSOLETE))
511 && (jeb != c->nextblock || (ofs & ~3) != jeb->offset + (c->sector_size - jeb->free_size))) {
Joe Perchesda320f02012-02-15 15:56:44 -0800512 pr_warn("argh. node added in wrong place at 0x%08x(%d)\n",
513 ofs & ~3, ofs & 3);
David Woodhouse66bfaea2007-06-28 19:03:11 +0100514 if (c->nextblock)
Joe Perchesda320f02012-02-15 15:56:44 -0800515 pr_warn("nextblock 0x%08x", c->nextblock->offset);
David Woodhouse66bfaea2007-06-28 19:03:11 +0100516 else
Joe Perchesda320f02012-02-15 15:56:44 -0800517 pr_warn("No nextblock");
518 pr_cont(", expected at %08x\n",
519 jeb->offset + (c->sector_size - jeb->free_size));
David Woodhouse2f785402006-05-24 02:04:45 +0100520 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522#endif
523 spin_lock(&c->erase_completion_lock);
524
David Woodhouse2f785402006-05-24 02:04:45 +0100525 new = jffs2_link_node_ref(c, jeb, ofs, len, ic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Estelle Hammache9b88f472005-01-28 18:53:05 +0000527 if (!jeb->free_size && !jeb->dirty_size && !ISDIRTY(jeb->wasted_size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* If it lives on the dirty_list, jffs2_reserve_space will put it there */
Joe Perches9c261b32012-02-15 15:56:43 -0800529 jffs2_dbg(1, "Adding full erase block at 0x%08x to clean_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n",
530 jeb->offset, jeb->free_size, jeb->dirty_size,
531 jeb->used_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (jffs2_wbuf_dirty(c)) {
533 /* Flush the last write in the block if it's outstanding */
534 spin_unlock(&c->erase_completion_lock);
535 jffs2_flush_wbuf_pad(c);
536 spin_lock(&c->erase_completion_lock);
537 }
538
539 list_add_tail(&jeb->list, &c->clean_list);
540 c->nextblock = NULL;
541 }
Artem B. Bityutskiye0c8e422005-07-24 16:14:17 +0100542 jffs2_dbg_acct_sanity_check_nolock(c,jeb);
543 jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 spin_unlock(&c->erase_completion_lock);
546
David Woodhouse2f785402006-05-24 02:04:45 +0100547 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550
551void jffs2_complete_reservation(struct jffs2_sb_info *c)
552{
Joe Perches9c261b32012-02-15 15:56:43 -0800553 jffs2_dbg(1, "jffs2_complete_reservation()\n");
David Woodhouseacb64a42010-05-19 17:00:10 +0100554 spin_lock(&c->erase_completion_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 jffs2_garbage_collect_trigger(c);
David Woodhouseacb64a42010-05-19 17:00:10 +0100556 spin_unlock(&c->erase_completion_lock);
David Woodhouseced22072008-04-22 15:13:40 +0100557 mutex_unlock(&c->alloc_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560static inline int on_list(struct list_head *obj, struct list_head *head)
561{
562 struct list_head *this;
563
564 list_for_each(this, head) {
565 if (this == obj) {
Joe Perches9c261b32012-02-15 15:56:43 -0800566 jffs2_dbg(1, "%p is on list at %p\n", obj, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return 1;
568
569 }
570 }
571 return 0;
572}
573
574void jffs2_mark_node_obsolete(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref)
575{
576 struct jffs2_eraseblock *jeb;
577 int blocknr;
578 struct jffs2_unknown_node n;
579 int ret, addedsize;
580 size_t retlen;
David Woodhouse1417fc42006-05-20 16:20:19 +0100581 uint32_t freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
David Woodhouse9bfeb692006-05-26 21:19:05 +0100583 if(unlikely(!ref)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800584 pr_notice("EEEEEK. jffs2_mark_node_obsolete called with NULL node\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return;
586 }
587 if (ref_obsolete(ref)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800588 jffs2_dbg(1, "%s(): called with already obsolete node at 0x%08x\n",
589 __func__, ref_offset(ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return;
591 }
592 blocknr = ref->flash_offset / c->sector_size;
593 if (blocknr >= c->nr_blocks) {
Joe Perchesda320f02012-02-15 15:56:44 -0800594 pr_notice("raw node at 0x%08x is off the end of device!\n",
595 ref->flash_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 BUG();
597 }
598 jeb = &c->blocks[blocknr];
599
600 if (jffs2_can_mark_obsolete(c) && !jffs2_is_readonly(c) &&
Artem B. Bityuckiy31fbdf72005-02-28 08:21:09 +0000601 !(c->flags & (JFFS2_SB_FLAG_SCANNING | JFFS2_SB_FLAG_BUILDING))) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000602 /* Hm. This may confuse static lock analysis. If any of the above
603 three conditions is false, we're going to return from this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 function without actually obliterating any nodes or freeing
605 any jffs2_raw_node_refs. So we don't need to stop erases from
606 happening, or protect against people holding an obsolete
607 jffs2_raw_node_ref without the erase_completion_lock. */
David Woodhouseced22072008-04-22 15:13:40 +0100608 mutex_lock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
611 spin_lock(&c->erase_completion_lock);
612
David Woodhouse1417fc42006-05-20 16:20:19 +0100613 freed_len = ref_totlen(c, jeb, ref);
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (ref_flags(ref) == REF_UNCHECKED) {
David Woodhouse1417fc42006-05-20 16:20:19 +0100616 D1(if (unlikely(jeb->unchecked_size < freed_len)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800617 pr_notice("raw unchecked node of size 0x%08x freed from erase block %d at 0x%08x, but unchecked_size was already 0x%08x\n",
618 freed_len, blocknr,
619 ref->flash_offset, jeb->used_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 BUG();
621 })
Joe Perches9c261b32012-02-15 15:56:43 -0800622 jffs2_dbg(1, "Obsoleting previously unchecked node at 0x%08x of len %x\n",
623 ref_offset(ref), freed_len);
David Woodhouse1417fc42006-05-20 16:20:19 +0100624 jeb->unchecked_size -= freed_len;
625 c->unchecked_size -= freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 } else {
David Woodhouse1417fc42006-05-20 16:20:19 +0100627 D1(if (unlikely(jeb->used_size < freed_len)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800628 pr_notice("raw node of size 0x%08x freed from erase block %d at 0x%08x, but used_size was already 0x%08x\n",
629 freed_len, blocknr,
630 ref->flash_offset, jeb->used_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 BUG();
632 })
Joe Perches9c261b32012-02-15 15:56:43 -0800633 jffs2_dbg(1, "Obsoleting node at 0x%08x of len %#x: ",
634 ref_offset(ref), freed_len);
David Woodhouse1417fc42006-05-20 16:20:19 +0100635 jeb->used_size -= freed_len;
636 c->used_size -= freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
639 // Take care, that wasted size is taken into concern
David Woodhouse1417fc42006-05-20 16:20:19 +0100640 if ((jeb->dirty_size || ISDIRTY(jeb->wasted_size + freed_len)) && jeb != c->nextblock) {
Joe Perches9c261b32012-02-15 15:56:43 -0800641 jffs2_dbg(1, "Dirtying\n");
David Woodhouse1417fc42006-05-20 16:20:19 +0100642 addedsize = freed_len;
643 jeb->dirty_size += freed_len;
644 c->dirty_size += freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 /* Convert wasted space to dirty, if not a bad block */
647 if (jeb->wasted_size) {
648 if (on_list(&jeb->list, &c->bad_used_list)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800649 jffs2_dbg(1, "Leaving block at %08x on the bad_used_list\n",
650 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 addedsize = 0; /* To fool the refiling code later */
652 } else {
Joe Perches9c261b32012-02-15 15:56:43 -0800653 jffs2_dbg(1, "Converting %d bytes of wasted space to dirty in block at %08x\n",
654 jeb->wasted_size, jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 addedsize += jeb->wasted_size;
656 jeb->dirty_size += jeb->wasted_size;
657 c->dirty_size += jeb->wasted_size;
658 c->wasted_size -= jeb->wasted_size;
659 jeb->wasted_size = 0;
660 }
661 }
662 } else {
Joe Perches9c261b32012-02-15 15:56:43 -0800663 jffs2_dbg(1, "Wasting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 addedsize = 0;
David Woodhouse1417fc42006-05-20 16:20:19 +0100665 jeb->wasted_size += freed_len;
666 c->wasted_size += freed_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668 ref->flash_offset = ref_offset(ref) | REF_OBSOLETE;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000669
Artem B. Bityutskiye0c8e422005-07-24 16:14:17 +0100670 jffs2_dbg_acct_sanity_check_nolock(c, jeb);
671 jffs2_dbg_acct_paranoia_check_nolock(c, jeb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Artem B. Bityuckiy31fbdf72005-02-28 08:21:09 +0000673 if (c->flags & JFFS2_SB_FLAG_SCANNING) {
674 /* Flash scanning is in progress. Don't muck about with the block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 lists because they're not ready yet, and don't actually
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000676 obliterate nodes that look obsolete. If they weren't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 marked obsolete on the flash at the time they _became_
678 obsolete, there was probably a reason for that. */
679 spin_unlock(&c->erase_completion_lock);
680 /* We didn't lock the erase_free_sem */
681 return;
682 }
683
684 if (jeb == c->nextblock) {
Joe Perches9c261b32012-02-15 15:56:43 -0800685 jffs2_dbg(2, "Not moving nextblock 0x%08x to dirty/erase_pending list\n",
686 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 } else if (!jeb->used_size && !jeb->unchecked_size) {
688 if (jeb == c->gcblock) {
Joe Perches9c261b32012-02-15 15:56:43 -0800689 jffs2_dbg(1, "gcblock at 0x%08x completely dirtied. Clearing gcblock...\n",
690 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 c->gcblock = NULL;
692 } else {
Joe Perches9c261b32012-02-15 15:56:43 -0800693 jffs2_dbg(1, "Eraseblock at 0x%08x completely dirtied. Removing from (dirty?) list...\n",
694 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 list_del(&jeb->list);
696 }
697 if (jffs2_wbuf_dirty(c)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800698 jffs2_dbg(1, "...and adding to erasable_pending_wbuf_list\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 list_add_tail(&jeb->list, &c->erasable_pending_wbuf_list);
700 } else {
701 if (jiffies & 127) {
702 /* Most of the time, we just erase it immediately. Otherwise we
703 spend ages scanning it on mount, etc. */
Joe Perches9c261b32012-02-15 15:56:43 -0800704 jffs2_dbg(1, "...and adding to erase_pending_list\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 list_add_tail(&jeb->list, &c->erase_pending_list);
706 c->nr_erasing_blocks++;
David Woodhouseae3b6ba2010-05-19 17:05:14 +0100707 jffs2_garbage_collect_trigger(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 } else {
709 /* Sometimes, however, we leave it elsewhere so it doesn't get
710 immediately reused, and we spread the load a bit. */
Joe Perches9c261b32012-02-15 15:56:43 -0800711 jffs2_dbg(1, "...and adding to erasable_list\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 list_add_tail(&jeb->list, &c->erasable_list);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
Joe Perches9c261b32012-02-15 15:56:43 -0800715 jffs2_dbg(1, "Done OK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 } else if (jeb == c->gcblock) {
Joe Perches9c261b32012-02-15 15:56:43 -0800717 jffs2_dbg(2, "Not moving gcblock 0x%08x to dirty_list\n",
718 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 } else if (ISDIRTY(jeb->dirty_size) && !ISDIRTY(jeb->dirty_size - addedsize)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800720 jffs2_dbg(1, "Eraseblock at 0x%08x is freshly dirtied. Removing from clean list...\n",
721 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 list_del(&jeb->list);
Joe Perches9c261b32012-02-15 15:56:43 -0800723 jffs2_dbg(1, "...and adding to dirty_list\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 list_add_tail(&jeb->list, &c->dirty_list);
725 } else if (VERYDIRTY(c, jeb->dirty_size) &&
726 !VERYDIRTY(c, jeb->dirty_size - addedsize)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800727 jffs2_dbg(1, "Eraseblock at 0x%08x is now very dirty. Removing from dirty list...\n",
728 jeb->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 list_del(&jeb->list);
Joe Perches9c261b32012-02-15 15:56:43 -0800730 jffs2_dbg(1, "...and adding to very_dirty_list\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 list_add_tail(&jeb->list, &c->very_dirty_list);
732 } else {
Joe Perches9c261b32012-02-15 15:56:43 -0800733 jffs2_dbg(1, "Eraseblock at 0x%08x not moved anywhere. (free 0x%08x, dirty 0x%08x, used 0x%08x)\n",
734 jeb->offset, jeb->free_size, jeb->dirty_size,
735 jeb->used_size);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 spin_unlock(&c->erase_completion_lock);
739
Artem B. Bityuckiy31fbdf72005-02-28 08:21:09 +0000740 if (!jffs2_can_mark_obsolete(c) || jffs2_is_readonly(c) ||
741 (c->flags & JFFS2_SB_FLAG_BUILDING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 /* We didn't lock the erase_free_sem */
743 return;
744 }
745
746 /* The erase_free_sem is locked, and has been since before we marked the node obsolete
747 and potentially put its eraseblock onto the erase_pending_list. Thus, we know that
748 the block hasn't _already_ been erased, and that 'ref' itself hasn't been freed yet
David Woodhousec38c1b62006-05-25 01:38:27 +0100749 by jffs2_free_jeb_node_refs() in erase.c. Which is nice. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Joe Perches9c261b32012-02-15 15:56:43 -0800751 jffs2_dbg(1, "obliterating obsoleted node at 0x%08x\n",
752 ref_offset(ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 ret = jffs2_flash_read(c, ref_offset(ref), sizeof(n), &retlen, (char *)&n);
754 if (ret) {
Joe Perchesda320f02012-02-15 15:56:44 -0800755 pr_warn("Read error reading from obsoleted node at 0x%08x: %d\n",
756 ref_offset(ref), ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 goto out_erase_sem;
758 }
759 if (retlen != sizeof(n)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800760 pr_warn("Short read from obsoleted node at 0x%08x: %zd\n",
761 ref_offset(ref), retlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 goto out_erase_sem;
763 }
David Woodhouse1417fc42006-05-20 16:20:19 +0100764 if (PAD(je32_to_cpu(n.totlen)) != PAD(freed_len)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800765 pr_warn("Node totlen on flash (0x%08x) != totlen from node ref (0x%08x)\n",
766 je32_to_cpu(n.totlen), freed_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 goto out_erase_sem;
768 }
769 if (!(je16_to_cpu(n.nodetype) & JFFS2_NODE_ACCURATE)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800770 jffs2_dbg(1, "Node at 0x%08x was already marked obsolete (nodetype 0x%04x)\n",
771 ref_offset(ref), je16_to_cpu(n.nodetype));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 goto out_erase_sem;
773 }
774 /* XXX FIXME: This is ugly now */
775 n.nodetype = cpu_to_je16(je16_to_cpu(n.nodetype) & ~JFFS2_NODE_ACCURATE);
776 ret = jffs2_flash_write(c, ref_offset(ref), sizeof(n), &retlen, (char *)&n);
777 if (ret) {
Joe Perchesda320f02012-02-15 15:56:44 -0800778 pr_warn("Write error in obliterating obsoleted node at 0x%08x: %d\n",
779 ref_offset(ref), ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 goto out_erase_sem;
781 }
782 if (retlen != sizeof(n)) {
Joe Perchesda320f02012-02-15 15:56:44 -0800783 pr_warn("Short write in obliterating obsoleted node at 0x%08x: %zd\n",
784 ref_offset(ref), retlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 goto out_erase_sem;
786 }
787
788 /* Nodes which have been marked obsolete no longer need to be
789 associated with any inode. Remove them from the per-inode list.
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000790
791 Note we can't do this for NAND at the moment because we need
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 obsolete dirent nodes to stay on the lists, because of the
793 horridness in jffs2_garbage_collect_deletion_dirent(). Also
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000794 because we delete the inocache, and on NAND we need that to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 stay around until all the nodes are actually erased, in order
796 to stop us from giving the same inode number to another newly
797 created inode. */
798 if (ref->next_in_ino) {
799 struct jffs2_inode_cache *ic;
800 struct jffs2_raw_node_ref **p;
801
802 spin_lock(&c->erase_completion_lock);
803
804 ic = jffs2_raw_ref_to_ic(ref);
805 for (p = &ic->nodes; (*p) != ref; p = &((*p)->next_in_ino))
806 ;
807
808 *p = ref->next_in_ino;
809 ref->next_in_ino = NULL;
810
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900811 switch (ic->class) {
812#ifdef CONFIG_JFFS2_FS_XATTR
813 case RAWNODE_CLASS_XATTR_DATUM:
814 jffs2_release_xattr_datum(c, (struct jffs2_xattr_datum *)ic);
815 break;
816 case RAWNODE_CLASS_XATTR_REF:
817 jffs2_release_xattr_ref(c, (struct jffs2_xattr_ref *)ic);
818 break;
819#endif
820 default:
David Woodhouse27c72b02008-05-01 18:47:17 +0100821 if (ic->nodes == (void *)ic && ic->pino_nlink == 0)
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900822 jffs2_del_ino_cache(c, ic);
823 break;
824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 spin_unlock(&c->erase_completion_lock);
826 }
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 out_erase_sem:
David Woodhouseced22072008-04-22 15:13:40 +0100829 mutex_unlock(&c->erase_free_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832int jffs2_thread_should_wake(struct jffs2_sb_info *c)
833{
834 int ret = 0;
835 uint32_t dirty;
David Woodhouse8fb870df2007-10-06 15:12:58 -0400836 int nr_very_dirty = 0;
837 struct jffs2_eraseblock *jeb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Joakim Tjernlundd6ce1712010-05-19 16:55:40 +0100839 if (!list_empty(&c->erase_complete_list) ||
840 !list_empty(&c->erase_pending_list))
841 return 1;
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (c->unchecked_size) {
Joe Perches9c261b32012-02-15 15:56:43 -0800844 jffs2_dbg(1, "jffs2_thread_should_wake(): unchecked_size %d, checked_ino #%d\n",
845 c->unchecked_size, c->checked_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return 1;
847 }
848
849 /* dirty_size contains blocks on erase_pending_list
850 * those blocks are counted in c->nr_erasing_blocks.
851 * If one block is actually erased, it is not longer counted as dirty_space
852 * but it is counted in c->nr_erasing_blocks, so we add it and subtract it
853 * with c->nr_erasing_blocks * c->sector_size again.
854 * Blocks on erasable_list are counted as dirty_size, but not in c->nr_erasing_blocks
855 * This helps us to force gc and pick eventually a clean block to spread the load.
856 */
857 dirty = c->dirty_size + c->erasing_size - c->nr_erasing_blocks * c->sector_size;
858
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000859 if (c->nr_free_blocks + c->nr_erasing_blocks < c->resv_blocks_gctrigger &&
860 (dirty > c->nospc_dirty_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 ret = 1;
862
David Woodhouse8fb870df2007-10-06 15:12:58 -0400863 list_for_each_entry(jeb, &c->very_dirty_list, list) {
864 nr_very_dirty++;
865 if (nr_very_dirty == c->vdirty_blocks_gctrigger) {
866 ret = 1;
David Woodhousea8c68f32007-10-13 11:32:16 +0100867 /* In debug mode, actually go through and count them all */
868 D1(continue);
869 break;
David Woodhouse8fb870df2007-10-06 15:12:58 -0400870 }
871 }
872
Joe Perches9c261b32012-02-15 15:56:43 -0800873 jffs2_dbg(1, "%s(): nr_free_blocks %d, nr_erasing_blocks %d, dirty_size 0x%x, vdirty_blocks %d: %s\n",
874 __func__, c->nr_free_blocks, c->nr_erasing_blocks,
875 c->dirty_size, nr_very_dirty, ret ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 return ret;
878}