Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * JFFS2 -- Journalling Flash File System, Version 2. |
| 3 | * |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 4 | * Copyright © 2001-2007 Red Hat, Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Created by David Woodhouse <dwmw2@infradead.org> |
| 7 | * |
| 8 | * For licensing information, see the file 'LICENCE' in this directory. |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/mtd/mtd.h> |
| 14 | #include <linux/compiler.h> |
| 15 | #include <linux/sched.h> /* For cond_resched() */ |
| 16 | #include "nodelist.h" |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 17 | #include "debug.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | /** |
| 20 | * jffs2_reserve_space - request physical space to write nodes to flash |
| 21 | * @c: superblock info |
| 22 | * @minsize: Minimum acceptable size of allocation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * @len: Returned value of allocation length |
| 24 | * @prio: Allocation type - ALLOC_{NORMAL,DELETION} |
| 25 | * |
| 26 | * Requests a block of physical space on the flash. Returns zero for success |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 27 | * and puts 'len' into the appropriate place, or returns -ENOSPC or other |
| 28 | * error if appropriate. Doesn't return len since that's |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * |
| 30 | * If it returns zero, jffs2_reserve_space() also downs the per-filesystem |
| 31 | * allocation semaphore, to prevent more than one allocation from being |
| 32 | * active at any time. The semaphore is later released by jffs2_commit_allocation() |
| 33 | * |
| 34 | * jffs2_reserve_space() may trigger garbage collection in order to make room |
| 35 | * for the requested allocation. |
| 36 | */ |
| 37 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 38 | static int jffs2_do_reserve_space(struct jffs2_sb_info *c, uint32_t minsize, |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 39 | uint32_t *len, uint32_t sumsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 41 | int jffs2_reserve_space(struct jffs2_sb_info *c, uint32_t minsize, |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 42 | uint32_t *len, int prio, uint32_t sumsize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
| 44 | int ret = -EAGAIN; |
| 45 | int blocksneeded = c->resv_blocks_write; |
| 46 | /* align it */ |
| 47 | minsize = PAD(minsize); |
| 48 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 49 | jffs2_dbg(1, "%s(): Requested 0x%x bytes\n", __func__, minsize); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 50 | mutex_lock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 52 | jffs2_dbg(1, "%s(): alloc sem got\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | spin_lock(&c->erase_completion_lock); |
| 55 | |
| 56 | /* this needs a little more thought (true <tglx> :)) */ |
| 57 | while(ret == -EAGAIN) { |
| 58 | while(c->nr_free_blocks + c->nr_erasing_blocks < blocksneeded) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | uint32_t dirty, avail; |
| 60 | |
| 61 | /* calculate real dirty size |
| 62 | * dirty_size contains blocks on erase_pending_list |
| 63 | * those blocks are counted in c->nr_erasing_blocks. |
| 64 | * If one block is actually erased, it is not longer counted as dirty_space |
| 65 | * but it is counted in c->nr_erasing_blocks, so we add it and subtract it |
| 66 | * with c->nr_erasing_blocks * c->sector_size again. |
| 67 | * Blocks on erasable_list are counted as dirty_size, but not in c->nr_erasing_blocks |
| 68 | * This helps us to force gc and pick eventually a clean block to spread the load. |
| 69 | * We add unchecked_size here, as we hopefully will find some space to use. |
| 70 | * This will affect the sum only once, as gc first finishes checking |
| 71 | * of nodes. |
| 72 | */ |
| 73 | dirty = c->dirty_size + c->erasing_size - c->nr_erasing_blocks * c->sector_size + c->unchecked_size; |
| 74 | if (dirty < c->nospc_dirty_size) { |
| 75 | if (prio == ALLOC_DELETION && c->nr_free_blocks + c->nr_erasing_blocks >= c->resv_blocks_deletion) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 76 | jffs2_dbg(1, "%s(): Low on dirty space to GC, but it's a deletion. Allowing...\n", |
| 77 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | break; |
| 79 | } |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 80 | jffs2_dbg(1, "dirty size 0x%08x + unchecked_size 0x%08x < nospc_dirty_size 0x%08x, returning -ENOSPC\n", |
| 81 | dirty, c->unchecked_size, |
| 82 | c->sector_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | spin_unlock(&c->erase_completion_lock); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 85 | mutex_unlock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | return -ENOSPC; |
| 87 | } |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | /* Calc possibly available space. Possibly available means that we |
| 90 | * don't know, if unchecked size contains obsoleted nodes, which could give us some |
| 91 | * more usable space. This will affect the sum only once, as gc first finishes checking |
| 92 | * of nodes. |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 93 | + Return -ENOSPC, if the maximum possibly available space is less or equal than |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | * blocksneeded * sector_size. |
| 95 | * This blocks endless gc looping on a filesystem, which is nearly full, even if |
| 96 | * the check above passes. |
| 97 | */ |
| 98 | avail = c->free_size + c->dirty_size + c->erasing_size + c->unchecked_size; |
| 99 | if ( (avail / c->sector_size) <= blocksneeded) { |
| 100 | if (prio == ALLOC_DELETION && c->nr_free_blocks + c->nr_erasing_blocks >= c->resv_blocks_deletion) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 101 | jffs2_dbg(1, "%s(): Low on possibly available space, but it's a deletion. Allowing...\n", |
| 102 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | break; |
| 104 | } |
| 105 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 106 | jffs2_dbg(1, "max. available size 0x%08x < blocksneeded * sector_size 0x%08x, returning -ENOSPC\n", |
| 107 | avail, blocksneeded * c->sector_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | spin_unlock(&c->erase_completion_lock); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 109 | mutex_unlock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | return -ENOSPC; |
| 111 | } |
| 112 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 113 | mutex_unlock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 115 | 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", |
| 116 | c->nr_free_blocks, c->nr_erasing_blocks, |
| 117 | c->free_size, c->dirty_size, c->wasted_size, |
| 118 | c->used_size, c->erasing_size, c->bad_size, |
| 119 | c->free_size + c->dirty_size + |
| 120 | c->wasted_size + c->used_size + |
| 121 | c->erasing_size + c->bad_size, |
| 122 | c->flash_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | spin_unlock(&c->erase_completion_lock); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | ret = jffs2_garbage_collect_pass(c); |
David Woodhouse | 422b120 | 2008-04-23 15:40:52 +0100 | [diff] [blame] | 126 | |
David Woodhouse | 0717bf8 | 2010-05-19 16:37:13 +0100 | [diff] [blame] | 127 | if (ret == -EAGAIN) { |
| 128 | spin_lock(&c->erase_completion_lock); |
| 129 | if (c->nr_erasing_blocks && |
| 130 | list_empty(&c->erase_pending_list) && |
| 131 | list_empty(&c->erase_complete_list)) { |
| 132 | DECLARE_WAITQUEUE(wait, current); |
| 133 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 134 | add_wait_queue(&c->erase_wait, &wait); |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 135 | jffs2_dbg(1, "%s waiting for erase to complete\n", |
| 136 | __func__); |
David Woodhouse | 0717bf8 | 2010-05-19 16:37:13 +0100 | [diff] [blame] | 137 | spin_unlock(&c->erase_completion_lock); |
| 138 | |
| 139 | schedule(); |
| 140 | } else |
| 141 | spin_unlock(&c->erase_completion_lock); |
| 142 | } else if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | return ret; |
| 144 | |
| 145 | cond_resched(); |
| 146 | |
| 147 | if (signal_pending(current)) |
| 148 | return -EINTR; |
| 149 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 150 | mutex_lock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | spin_lock(&c->erase_completion_lock); |
| 152 | } |
| 153 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 154 | ret = jffs2_do_reserve_space(c, minsize, len, sumsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | if (ret) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 156 | jffs2_dbg(1, "%s(): ret is %d\n", __func__, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | spin_unlock(&c->erase_completion_lock); |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 160 | if (!ret) |
David Woodhouse | 046b8b9 | 2006-05-25 01:50:35 +0100 | [diff] [blame] | 161 | ret = jffs2_prealloc_raw_node_refs(c, c->nextblock, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | if (ret) |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 163 | mutex_unlock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | return ret; |
| 165 | } |
| 166 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 167 | int jffs2_reserve_space_gc(struct jffs2_sb_info *c, uint32_t minsize, |
| 168 | uint32_t *len, uint32_t sumsize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
| 170 | int ret = -EAGAIN; |
| 171 | minsize = PAD(minsize); |
| 172 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 173 | jffs2_dbg(1, "%s(): Requested 0x%x bytes\n", __func__, minsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | spin_lock(&c->erase_completion_lock); |
| 176 | while(ret == -EAGAIN) { |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 177 | ret = jffs2_do_reserve_space(c, minsize, len, sumsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | if (ret) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 179 | jffs2_dbg(1, "%s(): looping, ret is %d\n", |
| 180 | __func__, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | spin_unlock(&c->erase_completion_lock); |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 184 | if (!ret) |
David Woodhouse | 046b8b9 | 2006-05-25 01:50:35 +0100 | [diff] [blame] | 185 | ret = jffs2_prealloc_raw_node_refs(c, c->nextblock, 1); |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | return ret; |
| 188 | } |
| 189 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 190 | |
| 191 | /* Classify nextblock (clean, dirty of verydirty) and force to select an other one */ |
| 192 | |
| 193 | static void jffs2_close_nextblock(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 195 | |
Adrian Hunter | 99c2594 | 2007-03-29 11:00:47 +0300 | [diff] [blame] | 196 | if (c->nextblock == NULL) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 197 | jffs2_dbg(1, "%s(): Erase block at 0x%08x has already been placed in a list\n", |
| 198 | __func__, jeb->offset); |
Adrian Hunter | 99c2594 | 2007-03-29 11:00:47 +0300 | [diff] [blame] | 199 | return; |
| 200 | } |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 201 | /* Check, if we have a dirty block now, or if it was dirty already */ |
| 202 | if (ISDIRTY (jeb->wasted_size + jeb->dirty_size)) { |
| 203 | c->dirty_size += jeb->wasted_size; |
| 204 | c->wasted_size -= jeb->wasted_size; |
| 205 | jeb->dirty_size += jeb->wasted_size; |
| 206 | jeb->wasted_size = 0; |
| 207 | if (VERYDIRTY(c, jeb->dirty_size)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 208 | jffs2_dbg(1, "Adding full erase block at 0x%08x to very_dirty_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n", |
| 209 | jeb->offset, jeb->free_size, jeb->dirty_size, |
| 210 | jeb->used_size); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 211 | list_add_tail(&jeb->list, &c->very_dirty_list); |
| 212 | } else { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 213 | jffs2_dbg(1, "Adding full erase block at 0x%08x to dirty_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n", |
| 214 | jeb->offset, jeb->free_size, jeb->dirty_size, |
| 215 | jeb->used_size); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 216 | list_add_tail(&jeb->list, &c->dirty_list); |
| 217 | } |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 218 | } else { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 219 | jffs2_dbg(1, "Adding full erase block at 0x%08x to clean_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n", |
| 220 | jeb->offset, jeb->free_size, jeb->dirty_size, |
| 221 | jeb->used_size); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 222 | list_add_tail(&jeb->list, &c->clean_list); |
| 223 | } |
| 224 | c->nextblock = NULL; |
| 225 | |
| 226 | } |
| 227 | |
| 228 | /* Select a new jeb for nextblock */ |
| 229 | |
| 230 | static int jffs2_find_nextblock(struct jffs2_sb_info *c) |
| 231 | { |
| 232 | struct list_head *next; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 233 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 234 | /* Take the next block off the 'free' list */ |
| 235 | |
| 236 | if (list_empty(&c->free_list)) { |
| 237 | |
| 238 | if (!c->nr_erasing_blocks && |
| 239 | !list_empty(&c->erasable_list)) { |
| 240 | struct jffs2_eraseblock *ejeb; |
| 241 | |
| 242 | ejeb = list_entry(c->erasable_list.next, struct jffs2_eraseblock, list); |
Akinobu Mita | f116629 | 2006-06-26 00:24:46 -0700 | [diff] [blame] | 243 | list_move_tail(&ejeb->list, &c->erase_pending_list); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 244 | c->nr_erasing_blocks++; |
David Woodhouse | ae3b6ba | 2010-05-19 17:05:14 +0100 | [diff] [blame] | 245 | jffs2_garbage_collect_trigger(c); |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 246 | jffs2_dbg(1, "%s(): Triggering erase of erasable block at 0x%08x\n", |
| 247 | __func__, ejeb->offset); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | if (!c->nr_erasing_blocks && |
| 251 | !list_empty(&c->erasable_pending_wbuf_list)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 252 | jffs2_dbg(1, "%s(): Flushing write buffer\n", |
| 253 | __func__); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 254 | /* c->nextblock is NULL, no update to c->nextblock allowed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | spin_unlock(&c->erase_completion_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | jffs2_flush_wbuf_pad(c); |
| 257 | spin_lock(&c->erase_completion_lock); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 258 | /* Have another go. It'll be on the erasable_list now */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | return -EAGAIN; |
| 260 | } |
| 261 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 262 | if (!c->nr_erasing_blocks) { |
| 263 | /* Ouch. We're in GC, or we wouldn't have got here. |
| 264 | And there's no space left. At all. */ |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 265 | 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", |
| 266 | c->nr_erasing_blocks, c->nr_free_blocks, |
| 267 | list_empty(&c->erasable_list) ? "yes" : "no", |
| 268 | list_empty(&c->erasing_list) ? "yes" : "no", |
| 269 | list_empty(&c->erase_pending_list) ? "yes" : "no"); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 270 | return -ENOSPC; |
| 271 | } |
| 272 | |
| 273 | spin_unlock(&c->erase_completion_lock); |
| 274 | /* Don't wait for it; just erase one right now */ |
| 275 | jffs2_erase_pending_blocks(c, 1); |
| 276 | spin_lock(&c->erase_completion_lock); |
| 277 | |
| 278 | /* An erase may have failed, decreasing the |
| 279 | amount of free space available. So we must |
| 280 | restart from the beginning */ |
| 281 | return -EAGAIN; |
| 282 | } |
| 283 | |
| 284 | next = c->free_list.next; |
| 285 | list_del(next); |
| 286 | c->nextblock = list_entry(next, struct jffs2_eraseblock, list); |
| 287 | c->nr_free_blocks--; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 288 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 289 | jffs2_sum_reset_collected(c->summary); /* reset collected summary */ |
| 290 | |
Steve Glendinning | f04de50 | 2008-10-21 13:25:51 +0100 | [diff] [blame] | 291 | #ifdef CONFIG_JFFS2_FS_WRITEBUFFER |
Alexander Belyakov | 5bf1723 | 2008-10-17 19:19:13 +0400 | [diff] [blame] | 292 | /* adjust write buffer offset, else we get a non contiguous write bug */ |
| 293 | if (!(c->wbuf_ofs % c->sector_size) && !c->wbuf_len) |
| 294 | c->wbuf_ofs = 0xffffffff; |
Steve Glendinning | f04de50 | 2008-10-21 13:25:51 +0100 | [diff] [blame] | 295 | #endif |
Alexander Belyakov | 5bf1723 | 2008-10-17 19:19:13 +0400 | [diff] [blame] | 296 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 297 | jffs2_dbg(1, "%s(): new nextblock = 0x%08x\n", |
| 298 | __func__, c->nextblock->offset); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 299 | |
| 300 | return 0; |
| 301 | } |
| 302 | |
| 303 | /* Called with alloc sem _and_ erase_completion_lock */ |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 304 | static int jffs2_do_reserve_space(struct jffs2_sb_info *c, uint32_t minsize, |
| 305 | uint32_t *len, uint32_t sumsize) |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 306 | { |
| 307 | struct jffs2_eraseblock *jeb = c->nextblock; |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 308 | uint32_t reserved_size; /* for summary information at the end of the jeb */ |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 309 | int ret; |
| 310 | |
| 311 | restart: |
| 312 | reserved_size = 0; |
| 313 | |
| 314 | if (jffs2_sum_active() && (sumsize != JFFS2_SUMMARY_NOSUM_SIZE)) { |
| 315 | /* NOSUM_SIZE means not to generate summary */ |
| 316 | |
| 317 | if (jeb) { |
| 318 | reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE); |
Artem B. Bityutskiy | 733802d | 2005-09-22 12:25:00 +0100 | [diff] [blame] | 319 | dbg_summary("minsize=%d , jeb->free=%d ," |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 320 | "summary->size=%d , sumsize=%d\n", |
| 321 | minsize, jeb->free_size, |
| 322 | c->summary->sum_size, sumsize); |
| 323 | } |
| 324 | |
| 325 | /* Is there enough space for writing out the current node, or we have to |
| 326 | write out summary information now, close this jeb and select new nextblock? */ |
| 327 | if (jeb && (PAD(minsize) + PAD(c->summary->sum_size + sumsize + |
| 328 | JFFS2_SUMMARY_FRAME_SIZE) > jeb->free_size)) { |
| 329 | |
| 330 | /* Has summary been disabled for this jeb? */ |
| 331 | if (jffs2_sum_is_disabled(c->summary)) { |
| 332 | sumsize = JFFS2_SUMMARY_NOSUM_SIZE; |
| 333 | goto restart; |
| 334 | } |
| 335 | |
| 336 | /* Writing out the collected summary information */ |
Artem B. Bityutskiy | 733802d | 2005-09-22 12:25:00 +0100 | [diff] [blame] | 337 | dbg_summary("generating summary for 0x%08x.\n", jeb->offset); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 338 | ret = jffs2_sum_write_sumnode(c); |
| 339 | |
| 340 | if (ret) |
| 341 | return ret; |
| 342 | |
| 343 | if (jffs2_sum_is_disabled(c->summary)) { |
| 344 | /* jffs2_write_sumnode() couldn't write out the summary information |
| 345 | diabling summary for this jeb and free the collected information |
| 346 | */ |
| 347 | sumsize = JFFS2_SUMMARY_NOSUM_SIZE; |
| 348 | goto restart; |
| 349 | } |
| 350 | |
| 351 | jffs2_close_nextblock(c, jeb); |
| 352 | jeb = NULL; |
Ferenc Havasi | 34c0e90 | 2005-09-16 13:58:20 +0100 | [diff] [blame] | 353 | /* keep always valid value in reserved_size */ |
| 354 | reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 355 | } |
| 356 | } else { |
| 357 | if (jeb && minsize > jeb->free_size) { |
David Woodhouse | fc6612f | 2006-06-18 18:35:10 +0100 | [diff] [blame] | 358 | uint32_t waste; |
| 359 | |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 360 | /* Skip the end of this block and file it as having some dirty space */ |
| 361 | /* If there's a pending write to it, flush now */ |
| 362 | |
| 363 | if (jffs2_wbuf_dirty(c)) { |
| 364 | spin_unlock(&c->erase_completion_lock); |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 365 | jffs2_dbg(1, "%s(): Flushing write buffer\n", |
| 366 | __func__); |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 367 | jffs2_flush_wbuf_pad(c); |
| 368 | spin_lock(&c->erase_completion_lock); |
| 369 | jeb = c->nextblock; |
| 370 | goto restart; |
| 371 | } |
| 372 | |
David Woodhouse | fc6612f | 2006-06-18 18:35:10 +0100 | [diff] [blame] | 373 | spin_unlock(&c->erase_completion_lock); |
| 374 | |
| 375 | ret = jffs2_prealloc_raw_node_refs(c, jeb, 1); |
| 376 | if (ret) |
| 377 | return ret; |
| 378 | /* Just lock it again and continue. Nothing much can change because |
| 379 | we hold c->alloc_sem anyway. In fact, it's not entirely clear why |
| 380 | we hold c->erase_completion_lock in the majority of this function... |
| 381 | but that's a question for another (more caffeine-rich) day. */ |
| 382 | spin_lock(&c->erase_completion_lock); |
| 383 | |
| 384 | waste = jeb->free_size; |
| 385 | jffs2_link_node_ref(c, jeb, |
| 386 | (jeb->offset + c->sector_size - waste) | REF_OBSOLETE, |
| 387 | waste, NULL); |
| 388 | /* FIXME: that made it count as dirty. Convert to wasted */ |
| 389 | jeb->dirty_size -= waste; |
| 390 | c->dirty_size -= waste; |
| 391 | jeb->wasted_size += waste; |
| 392 | c->wasted_size += waste; |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 393 | |
| 394 | jffs2_close_nextblock(c, jeb); |
| 395 | jeb = NULL; |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | if (!jeb) { |
| 400 | |
| 401 | ret = jffs2_find_nextblock(c); |
| 402 | if (ret) |
| 403 | return ret; |
| 404 | |
| 405 | jeb = c->nextblock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
| 407 | if (jeb->free_size != c->sector_size - c->cleanmarker_size) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 408 | pr_warn("Eep. Block 0x%08x taken from free_list had free_size of 0x%08x!!\n", |
| 409 | jeb->offset, jeb->free_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | goto restart; |
| 411 | } |
| 412 | } |
| 413 | /* OK, jeb (==c->nextblock) is now pointing at a block which definitely has |
| 414 | enough space */ |
Ferenc Havasi | e631ddb | 2005-09-07 09:35:26 +0100 | [diff] [blame] | 415 | *len = jeb->free_size - reserved_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
| 417 | if (c->cleanmarker_size && jeb->used_size == c->cleanmarker_size && |
| 418 | !jeb->first_node->next_in_ino) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 419 | /* Only node in it beforehand was a CLEANMARKER node (we think). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | So mark it obsolete now that there's going to be another node |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 421 | in the block. This will reduce used_size to zero but We've |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | already set c->nextblock so that jffs2_mark_node_obsolete() |
| 423 | won't try to refile it to the dirty_list. |
| 424 | */ |
| 425 | spin_unlock(&c->erase_completion_lock); |
| 426 | jffs2_mark_node_obsolete(c, jeb->first_node); |
| 427 | spin_lock(&c->erase_completion_lock); |
| 428 | } |
| 429 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 430 | jffs2_dbg(1, "%s(): Giving 0x%x bytes at 0x%x\n", |
| 431 | __func__, |
| 432 | *len, jeb->offset + (c->sector_size - jeb->free_size)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | return 0; |
| 434 | } |
| 435 | |
| 436 | /** |
| 437 | * jffs2_add_physical_node_ref - add a physical node reference to the list |
| 438 | * @c: superblock info |
| 439 | * @new: new node reference to add |
| 440 | * @len: length of this physical node |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | * |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 442 | * Should only be used to report nodes for which space has been allocated |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | * by jffs2_reserve_space. |
| 444 | * |
| 445 | * Must be called with the alloc_sem held. |
| 446 | */ |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 447 | |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 448 | struct jffs2_raw_node_ref *jffs2_add_physical_node_ref(struct jffs2_sb_info *c, |
| 449 | uint32_t ofs, uint32_t len, |
| 450 | struct jffs2_inode_cache *ic) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | { |
| 452 | struct jffs2_eraseblock *jeb; |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 453 | struct jffs2_raw_node_ref *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 455 | jeb = &c->blocks[ofs / c->sector_size]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 457 | jffs2_dbg(1, "%s(): Node at 0x%x(%d), size 0x%x\n", |
| 458 | __func__, ofs & ~3, ofs & 3, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | #if 1 |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 460 | /* Allow non-obsolete nodes only to be added at the end of c->nextblock, |
| 461 | if c->nextblock is set. Note that wbuf.c will file obsolete nodes |
| 462 | even after refiling c->nextblock */ |
| 463 | if ((c->nextblock || ((ofs & 3) != REF_OBSOLETE)) |
| 464 | && (jeb != c->nextblock || (ofs & ~3) != jeb->offset + (c->sector_size - jeb->free_size))) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 465 | pr_warn("argh. node added in wrong place at 0x%08x(%d)\n", |
| 466 | ofs & ~3, ofs & 3); |
David Woodhouse | 66bfaea | 2007-06-28 19:03:11 +0100 | [diff] [blame] | 467 | if (c->nextblock) |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 468 | pr_warn("nextblock 0x%08x", c->nextblock->offset); |
David Woodhouse | 66bfaea | 2007-06-28 19:03:11 +0100 | [diff] [blame] | 469 | else |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 470 | pr_warn("No nextblock"); |
| 471 | pr_cont(", expected at %08x\n", |
| 472 | jeb->offset + (c->sector_size - jeb->free_size)); |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 473 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | #endif |
| 476 | spin_lock(&c->erase_completion_lock); |
| 477 | |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 478 | new = jffs2_link_node_ref(c, jeb, ofs, len, ic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
Estelle Hammache | 9b88f47 | 2005-01-28 18:53:05 +0000 | [diff] [blame] | 480 | if (!jeb->free_size && !jeb->dirty_size && !ISDIRTY(jeb->wasted_size)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | /* If it lives on the dirty_list, jffs2_reserve_space will put it there */ |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 482 | jffs2_dbg(1, "Adding full erase block at 0x%08x to clean_list (free 0x%08x, dirty 0x%08x, used 0x%08x\n", |
| 483 | jeb->offset, jeb->free_size, jeb->dirty_size, |
| 484 | jeb->used_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | if (jffs2_wbuf_dirty(c)) { |
| 486 | /* Flush the last write in the block if it's outstanding */ |
| 487 | spin_unlock(&c->erase_completion_lock); |
| 488 | jffs2_flush_wbuf_pad(c); |
| 489 | spin_lock(&c->erase_completion_lock); |
| 490 | } |
| 491 | |
| 492 | list_add_tail(&jeb->list, &c->clean_list); |
| 493 | c->nextblock = NULL; |
| 494 | } |
Artem B. Bityutskiy | e0c8e42 | 2005-07-24 16:14:17 +0100 | [diff] [blame] | 495 | jffs2_dbg_acct_sanity_check_nolock(c,jeb); |
| 496 | jffs2_dbg_acct_paranoia_check_nolock(c, jeb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
| 498 | spin_unlock(&c->erase_completion_lock); |
| 499 | |
David Woodhouse | 2f78540 | 2006-05-24 02:04:45 +0100 | [diff] [blame] | 500 | return new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | |
| 504 | void jffs2_complete_reservation(struct jffs2_sb_info *c) |
| 505 | { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 506 | jffs2_dbg(1, "jffs2_complete_reservation()\n"); |
David Woodhouse | acb64a4 | 2010-05-19 17:00:10 +0100 | [diff] [blame] | 507 | spin_lock(&c->erase_completion_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | jffs2_garbage_collect_trigger(c); |
David Woodhouse | acb64a4 | 2010-05-19 17:00:10 +0100 | [diff] [blame] | 509 | spin_unlock(&c->erase_completion_lock); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 510 | mutex_unlock(&c->alloc_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | static inline int on_list(struct list_head *obj, struct list_head *head) |
| 514 | { |
| 515 | struct list_head *this; |
| 516 | |
| 517 | list_for_each(this, head) { |
| 518 | if (this == obj) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 519 | jffs2_dbg(1, "%p is on list at %p\n", obj, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | return 1; |
| 521 | |
| 522 | } |
| 523 | } |
| 524 | return 0; |
| 525 | } |
| 526 | |
| 527 | void jffs2_mark_node_obsolete(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref) |
| 528 | { |
| 529 | struct jffs2_eraseblock *jeb; |
| 530 | int blocknr; |
| 531 | struct jffs2_unknown_node n; |
| 532 | int ret, addedsize; |
| 533 | size_t retlen; |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 534 | uint32_t freed_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | |
David Woodhouse | 9bfeb69 | 2006-05-26 21:19:05 +0100 | [diff] [blame] | 536 | if(unlikely(!ref)) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 537 | pr_notice("EEEEEK. jffs2_mark_node_obsolete called with NULL node\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | return; |
| 539 | } |
| 540 | if (ref_obsolete(ref)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 541 | jffs2_dbg(1, "%s(): called with already obsolete node at 0x%08x\n", |
| 542 | __func__, ref_offset(ref)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | return; |
| 544 | } |
| 545 | blocknr = ref->flash_offset / c->sector_size; |
| 546 | if (blocknr >= c->nr_blocks) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 547 | pr_notice("raw node at 0x%08x is off the end of device!\n", |
| 548 | ref->flash_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | BUG(); |
| 550 | } |
| 551 | jeb = &c->blocks[blocknr]; |
| 552 | |
| 553 | if (jffs2_can_mark_obsolete(c) && !jffs2_is_readonly(c) && |
Artem B. Bityuckiy | 31fbdf7 | 2005-02-28 08:21:09 +0000 | [diff] [blame] | 554 | !(c->flags & (JFFS2_SB_FLAG_SCANNING | JFFS2_SB_FLAG_BUILDING))) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 555 | /* Hm. This may confuse static lock analysis. If any of the above |
| 556 | three conditions is false, we're going to return from this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | function without actually obliterating any nodes or freeing |
| 558 | any jffs2_raw_node_refs. So we don't need to stop erases from |
| 559 | happening, or protect against people holding an obsolete |
| 560 | jffs2_raw_node_ref without the erase_completion_lock. */ |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 561 | mutex_lock(&c->erase_free_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | spin_lock(&c->erase_completion_lock); |
| 565 | |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 566 | freed_len = ref_totlen(c, jeb, ref); |
| 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | if (ref_flags(ref) == REF_UNCHECKED) { |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 569 | D1(if (unlikely(jeb->unchecked_size < freed_len)) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 570 | 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", |
| 571 | freed_len, blocknr, |
| 572 | ref->flash_offset, jeb->used_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | BUG(); |
| 574 | }) |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 575 | jffs2_dbg(1, "Obsoleting previously unchecked node at 0x%08x of len %x\n", |
| 576 | ref_offset(ref), freed_len); |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 577 | jeb->unchecked_size -= freed_len; |
| 578 | c->unchecked_size -= freed_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | } else { |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 580 | D1(if (unlikely(jeb->used_size < freed_len)) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 581 | pr_notice("raw node of size 0x%08x freed from erase block %d at 0x%08x, but used_size was already 0x%08x\n", |
| 582 | freed_len, blocknr, |
| 583 | ref->flash_offset, jeb->used_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | BUG(); |
| 585 | }) |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 586 | jffs2_dbg(1, "Obsoleting node at 0x%08x of len %#x: ", |
| 587 | ref_offset(ref), freed_len); |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 588 | jeb->used_size -= freed_len; |
| 589 | c->used_size -= freed_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | // Take care, that wasted size is taken into concern |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 593 | if ((jeb->dirty_size || ISDIRTY(jeb->wasted_size + freed_len)) && jeb != c->nextblock) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 594 | jffs2_dbg(1, "Dirtying\n"); |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 595 | addedsize = freed_len; |
| 596 | jeb->dirty_size += freed_len; |
| 597 | c->dirty_size += freed_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
| 599 | /* Convert wasted space to dirty, if not a bad block */ |
| 600 | if (jeb->wasted_size) { |
| 601 | if (on_list(&jeb->list, &c->bad_used_list)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 602 | jffs2_dbg(1, "Leaving block at %08x on the bad_used_list\n", |
| 603 | jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | addedsize = 0; /* To fool the refiling code later */ |
| 605 | } else { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 606 | jffs2_dbg(1, "Converting %d bytes of wasted space to dirty in block at %08x\n", |
| 607 | jeb->wasted_size, jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | addedsize += jeb->wasted_size; |
| 609 | jeb->dirty_size += jeb->wasted_size; |
| 610 | c->dirty_size += jeb->wasted_size; |
| 611 | c->wasted_size -= jeb->wasted_size; |
| 612 | jeb->wasted_size = 0; |
| 613 | } |
| 614 | } |
| 615 | } else { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 616 | jffs2_dbg(1, "Wasting\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | addedsize = 0; |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 618 | jeb->wasted_size += freed_len; |
| 619 | c->wasted_size += freed_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | } |
| 621 | ref->flash_offset = ref_offset(ref) | REF_OBSOLETE; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 622 | |
Artem B. Bityutskiy | e0c8e42 | 2005-07-24 16:14:17 +0100 | [diff] [blame] | 623 | jffs2_dbg_acct_sanity_check_nolock(c, jeb); |
| 624 | jffs2_dbg_acct_paranoia_check_nolock(c, jeb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
Artem B. Bityuckiy | 31fbdf7 | 2005-02-28 08:21:09 +0000 | [diff] [blame] | 626 | if (c->flags & JFFS2_SB_FLAG_SCANNING) { |
| 627 | /* Flash scanning is in progress. Don't muck about with the block |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | lists because they're not ready yet, and don't actually |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 629 | obliterate nodes that look obsolete. If they weren't |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | marked obsolete on the flash at the time they _became_ |
| 631 | obsolete, there was probably a reason for that. */ |
| 632 | spin_unlock(&c->erase_completion_lock); |
| 633 | /* We didn't lock the erase_free_sem */ |
| 634 | return; |
| 635 | } |
| 636 | |
| 637 | if (jeb == c->nextblock) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 638 | jffs2_dbg(2, "Not moving nextblock 0x%08x to dirty/erase_pending list\n", |
| 639 | jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } else if (!jeb->used_size && !jeb->unchecked_size) { |
| 641 | if (jeb == c->gcblock) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 642 | jffs2_dbg(1, "gcblock at 0x%08x completely dirtied. Clearing gcblock...\n", |
| 643 | jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | c->gcblock = NULL; |
| 645 | } else { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 646 | jffs2_dbg(1, "Eraseblock at 0x%08x completely dirtied. Removing from (dirty?) list...\n", |
| 647 | jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | list_del(&jeb->list); |
| 649 | } |
| 650 | if (jffs2_wbuf_dirty(c)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 651 | jffs2_dbg(1, "...and adding to erasable_pending_wbuf_list\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | list_add_tail(&jeb->list, &c->erasable_pending_wbuf_list); |
| 653 | } else { |
| 654 | if (jiffies & 127) { |
| 655 | /* Most of the time, we just erase it immediately. Otherwise we |
| 656 | spend ages scanning it on mount, etc. */ |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 657 | jffs2_dbg(1, "...and adding to erase_pending_list\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | list_add_tail(&jeb->list, &c->erase_pending_list); |
| 659 | c->nr_erasing_blocks++; |
David Woodhouse | ae3b6ba | 2010-05-19 17:05:14 +0100 | [diff] [blame] | 660 | jffs2_garbage_collect_trigger(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | } else { |
| 662 | /* Sometimes, however, we leave it elsewhere so it doesn't get |
| 663 | immediately reused, and we spread the load a bit. */ |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 664 | jffs2_dbg(1, "...and adding to erasable_list\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | list_add_tail(&jeb->list, &c->erasable_list); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 666 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 668 | jffs2_dbg(1, "Done OK\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | } else if (jeb == c->gcblock) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 670 | jffs2_dbg(2, "Not moving gcblock 0x%08x to dirty_list\n", |
| 671 | jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | } else if (ISDIRTY(jeb->dirty_size) && !ISDIRTY(jeb->dirty_size - addedsize)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 673 | jffs2_dbg(1, "Eraseblock at 0x%08x is freshly dirtied. Removing from clean list...\n", |
| 674 | jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | list_del(&jeb->list); |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 676 | jffs2_dbg(1, "...and adding to dirty_list\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | list_add_tail(&jeb->list, &c->dirty_list); |
| 678 | } else if (VERYDIRTY(c, jeb->dirty_size) && |
| 679 | !VERYDIRTY(c, jeb->dirty_size - addedsize)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 680 | jffs2_dbg(1, "Eraseblock at 0x%08x is now very dirty. Removing from dirty list...\n", |
| 681 | jeb->offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | list_del(&jeb->list); |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 683 | jffs2_dbg(1, "...and adding to very_dirty_list\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | list_add_tail(&jeb->list, &c->very_dirty_list); |
| 685 | } else { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 686 | jffs2_dbg(1, "Eraseblock at 0x%08x not moved anywhere. (free 0x%08x, dirty 0x%08x, used 0x%08x)\n", |
| 687 | jeb->offset, jeb->free_size, jeb->dirty_size, |
| 688 | jeb->used_size); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 689 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | |
| 691 | spin_unlock(&c->erase_completion_lock); |
| 692 | |
Artem B. Bityuckiy | 31fbdf7 | 2005-02-28 08:21:09 +0000 | [diff] [blame] | 693 | if (!jffs2_can_mark_obsolete(c) || jffs2_is_readonly(c) || |
| 694 | (c->flags & JFFS2_SB_FLAG_BUILDING)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | /* We didn't lock the erase_free_sem */ |
| 696 | return; |
| 697 | } |
| 698 | |
| 699 | /* The erase_free_sem is locked, and has been since before we marked the node obsolete |
| 700 | and potentially put its eraseblock onto the erase_pending_list. Thus, we know that |
| 701 | the block hasn't _already_ been erased, and that 'ref' itself hasn't been freed yet |
David Woodhouse | c38c1b6 | 2006-05-25 01:38:27 +0100 | [diff] [blame] | 702 | by jffs2_free_jeb_node_refs() in erase.c. Which is nice. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 704 | jffs2_dbg(1, "obliterating obsoleted node at 0x%08x\n", |
| 705 | ref_offset(ref)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | ret = jffs2_flash_read(c, ref_offset(ref), sizeof(n), &retlen, (char *)&n); |
| 707 | if (ret) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 708 | pr_warn("Read error reading from obsoleted node at 0x%08x: %d\n", |
| 709 | ref_offset(ref), ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | goto out_erase_sem; |
| 711 | } |
| 712 | if (retlen != sizeof(n)) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 713 | pr_warn("Short read from obsoleted node at 0x%08x: %zd\n", |
| 714 | ref_offset(ref), retlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | goto out_erase_sem; |
| 716 | } |
David Woodhouse | 1417fc4 | 2006-05-20 16:20:19 +0100 | [diff] [blame] | 717 | if (PAD(je32_to_cpu(n.totlen)) != PAD(freed_len)) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 718 | pr_warn("Node totlen on flash (0x%08x) != totlen from node ref (0x%08x)\n", |
| 719 | je32_to_cpu(n.totlen), freed_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | goto out_erase_sem; |
| 721 | } |
| 722 | if (!(je16_to_cpu(n.nodetype) & JFFS2_NODE_ACCURATE)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 723 | jffs2_dbg(1, "Node at 0x%08x was already marked obsolete (nodetype 0x%04x)\n", |
| 724 | ref_offset(ref), je16_to_cpu(n.nodetype)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | goto out_erase_sem; |
| 726 | } |
| 727 | /* XXX FIXME: This is ugly now */ |
| 728 | n.nodetype = cpu_to_je16(je16_to_cpu(n.nodetype) & ~JFFS2_NODE_ACCURATE); |
| 729 | ret = jffs2_flash_write(c, ref_offset(ref), sizeof(n), &retlen, (char *)&n); |
| 730 | if (ret) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 731 | pr_warn("Write error in obliterating obsoleted node at 0x%08x: %d\n", |
| 732 | ref_offset(ref), ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | goto out_erase_sem; |
| 734 | } |
| 735 | if (retlen != sizeof(n)) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame^] | 736 | pr_warn("Short write in obliterating obsoleted node at 0x%08x: %zd\n", |
| 737 | ref_offset(ref), retlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | goto out_erase_sem; |
| 739 | } |
| 740 | |
| 741 | /* Nodes which have been marked obsolete no longer need to be |
| 742 | associated with any inode. Remove them from the per-inode list. |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 743 | |
| 744 | Note we can't do this for NAND at the moment because we need |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | obsolete dirent nodes to stay on the lists, because of the |
| 746 | horridness in jffs2_garbage_collect_deletion_dirent(). Also |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 747 | because we delete the inocache, and on NAND we need that to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | stay around until all the nodes are actually erased, in order |
| 749 | to stop us from giving the same inode number to another newly |
| 750 | created inode. */ |
| 751 | if (ref->next_in_ino) { |
| 752 | struct jffs2_inode_cache *ic; |
| 753 | struct jffs2_raw_node_ref **p; |
| 754 | |
| 755 | spin_lock(&c->erase_completion_lock); |
| 756 | |
| 757 | ic = jffs2_raw_ref_to_ic(ref); |
| 758 | for (p = &ic->nodes; (*p) != ref; p = &((*p)->next_in_ino)) |
| 759 | ; |
| 760 | |
| 761 | *p = ref->next_in_ino; |
| 762 | ref->next_in_ino = NULL; |
| 763 | |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 764 | switch (ic->class) { |
| 765 | #ifdef CONFIG_JFFS2_FS_XATTR |
| 766 | case RAWNODE_CLASS_XATTR_DATUM: |
| 767 | jffs2_release_xattr_datum(c, (struct jffs2_xattr_datum *)ic); |
| 768 | break; |
| 769 | case RAWNODE_CLASS_XATTR_REF: |
| 770 | jffs2_release_xattr_ref(c, (struct jffs2_xattr_ref *)ic); |
| 771 | break; |
| 772 | #endif |
| 773 | default: |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 774 | if (ic->nodes == (void *)ic && ic->pino_nlink == 0) |
KaiGai Kohei | c9f700f | 2006-06-11 10:35:15 +0900 | [diff] [blame] | 775 | jffs2_del_ino_cache(c, ic); |
| 776 | break; |
| 777 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | spin_unlock(&c->erase_completion_lock); |
| 779 | } |
| 780 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | out_erase_sem: |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 782 | mutex_unlock(&c->erase_free_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } |
| 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | int jffs2_thread_should_wake(struct jffs2_sb_info *c) |
| 786 | { |
| 787 | int ret = 0; |
| 788 | uint32_t dirty; |
David Woodhouse | 8fb870df | 2007-10-06 15:12:58 -0400 | [diff] [blame] | 789 | int nr_very_dirty = 0; |
| 790 | struct jffs2_eraseblock *jeb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
Joakim Tjernlund | d6ce171 | 2010-05-19 16:55:40 +0100 | [diff] [blame] | 792 | if (!list_empty(&c->erase_complete_list) || |
| 793 | !list_empty(&c->erase_pending_list)) |
| 794 | return 1; |
| 795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | if (c->unchecked_size) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 797 | jffs2_dbg(1, "jffs2_thread_should_wake(): unchecked_size %d, checked_ino #%d\n", |
| 798 | c->unchecked_size, c->checked_ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | return 1; |
| 800 | } |
| 801 | |
| 802 | /* dirty_size contains blocks on erase_pending_list |
| 803 | * those blocks are counted in c->nr_erasing_blocks. |
| 804 | * If one block is actually erased, it is not longer counted as dirty_space |
| 805 | * but it is counted in c->nr_erasing_blocks, so we add it and subtract it |
| 806 | * with c->nr_erasing_blocks * c->sector_size again. |
| 807 | * Blocks on erasable_list are counted as dirty_size, but not in c->nr_erasing_blocks |
| 808 | * This helps us to force gc and pick eventually a clean block to spread the load. |
| 809 | */ |
| 810 | dirty = c->dirty_size + c->erasing_size - c->nr_erasing_blocks * c->sector_size; |
| 811 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 812 | if (c->nr_free_blocks + c->nr_erasing_blocks < c->resv_blocks_gctrigger && |
| 813 | (dirty > c->nospc_dirty_size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | ret = 1; |
| 815 | |
David Woodhouse | 8fb870df | 2007-10-06 15:12:58 -0400 | [diff] [blame] | 816 | list_for_each_entry(jeb, &c->very_dirty_list, list) { |
| 817 | nr_very_dirty++; |
| 818 | if (nr_very_dirty == c->vdirty_blocks_gctrigger) { |
| 819 | ret = 1; |
David Woodhouse | a8c68f3 | 2007-10-13 11:32:16 +0100 | [diff] [blame] | 820 | /* In debug mode, actually go through and count them all */ |
| 821 | D1(continue); |
| 822 | break; |
David Woodhouse | 8fb870df | 2007-10-06 15:12:58 -0400 | [diff] [blame] | 823 | } |
| 824 | } |
| 825 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 826 | jffs2_dbg(1, "%s(): nr_free_blocks %d, nr_erasing_blocks %d, dirty_size 0x%x, vdirty_blocks %d: %s\n", |
| 827 | __func__, c->nr_free_blocks, c->nr_erasing_blocks, |
| 828 | c->dirty_size, nr_very_dirty, ret ? "yes" : "no"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
| 830 | return ret; |
| 831 | } |