blob: 997a618aee86c80435e722a22e87a58f7bc9b620 [file] [log] [blame]
William Juul0e8cc8b2007-11-15 11:13:05 +01001/*
2 * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3 *
Charles Manning753ac612012-05-09 16:55:17 +00004 * Copyright (C) 2002-2011 Aleph One Ltd.
William Juul0e8cc8b2007-11-15 11:13:05 +01005 * for Toby Churchill Ltd and Brightstar Engineering
6 *
7 * Created by Charles Manning <charles@aleph1.co.uk>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
William Juul0e8cc8b2007-11-15 11:13:05 +010014#include "yaffs_checkptrw.h"
Charles Manning753ac612012-05-09 16:55:17 +000015#include "yaffs_getblockinfo.h"
William Juul0e8cc8b2007-11-15 11:13:05 +010016
Charles Manning753ac612012-05-09 16:55:17 +000017static int yaffs2_checkpt_space_ok(struct yaffs_dev *dev)
William Juul0e8cc8b2007-11-15 11:13:05 +010018{
Charles Manning753ac612012-05-09 16:55:17 +000019 int blocks_avail = dev->n_erased_blocks - dev->param.n_reserved_blocks;
William Juul0e8cc8b2007-11-15 11:13:05 +010020
Charles Manning753ac612012-05-09 16:55:17 +000021 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
22 "checkpt blocks_avail = %d", blocks_avail);
Wolfgang Denk4b070802008-08-14 14:41:06 +020023
Charles Manning753ac612012-05-09 16:55:17 +000024 return (blocks_avail <= 0) ? 0 : 1;
William Juul0e8cc8b2007-11-15 11:13:05 +010025}
26
Charles Manning753ac612012-05-09 16:55:17 +000027static int yaffs_checkpt_erase(struct yaffs_dev *dev)
William Juul0e8cc8b2007-11-15 11:13:05 +010028{
Wolfgang Denk4b070802008-08-14 14:41:06 +020029 int i;
30
Charles Manning753ac612012-05-09 16:55:17 +000031 if (!dev->param.erase_fn)
William Juul0e8cc8b2007-11-15 11:13:05 +010032 return 0;
Charles Manning753ac612012-05-09 16:55:17 +000033 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
34 "checking blocks %d to %d",
35 dev->internal_start_block, dev->internal_end_block);
Wolfgang Denk4b070802008-08-14 14:41:06 +020036
Charles Manning753ac612012-05-09 16:55:17 +000037 for (i = dev->internal_start_block; i <= dev->internal_end_block; i++) {
38 struct yaffs_block_info *bi = yaffs_get_block_info(dev, i);
39 if (bi->block_state == YAFFS_BLOCK_STATE_CHECKPOINT) {
40 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
41 "erasing checkpt block %d", i);
42
43 dev->n_erasures++;
44
45 if (dev->param.
46 erase_fn(dev,
47 i - dev->block_offset /* realign */)) {
48 bi->block_state = YAFFS_BLOCK_STATE_EMPTY;
49 dev->n_erased_blocks++;
50 dev->n_free_chunks +=
51 dev->param.chunks_per_block;
52 } else {
53 dev->param.bad_block_fn(dev, i);
54 bi->block_state = YAFFS_BLOCK_STATE_DEAD;
William Juul0e8cc8b2007-11-15 11:13:05 +010055 }
56 }
57 }
Wolfgang Denk4b070802008-08-14 14:41:06 +020058
Charles Manning753ac612012-05-09 16:55:17 +000059 dev->blocks_in_checkpt = 0;
Wolfgang Denk4b070802008-08-14 14:41:06 +020060
William Juul0e8cc8b2007-11-15 11:13:05 +010061 return 1;
62}
63
Charles Manning753ac612012-05-09 16:55:17 +000064static void yaffs2_checkpt_find_erased_block(struct yaffs_dev *dev)
William Juul0e8cc8b2007-11-15 11:13:05 +010065{
Charles Manning753ac612012-05-09 16:55:17 +000066 int i;
67 int blocks_avail = dev->n_erased_blocks - dev->param.n_reserved_blocks;
Wolfgang Denk4b070802008-08-14 14:41:06 +020068
Charles Manning753ac612012-05-09 16:55:17 +000069 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
70 "allocating checkpt block: erased %d reserved %d avail %d next %d ",
71 dev->n_erased_blocks, dev->param.n_reserved_blocks,
72 blocks_avail, dev->checkpt_next_block);
Wolfgang Denk4b070802008-08-14 14:41:06 +020073
Charles Manning753ac612012-05-09 16:55:17 +000074 if (dev->checkpt_next_block >= 0 &&
75 dev->checkpt_next_block <= dev->internal_end_block &&
76 blocks_avail > 0) {
77
78 for (i = dev->checkpt_next_block; i <= dev->internal_end_block;
79 i++) {
80 struct yaffs_block_info *bi =
81 yaffs_get_block_info(dev, i);
82 if (bi->block_state == YAFFS_BLOCK_STATE_EMPTY) {
83 dev->checkpt_next_block = i + 1;
84 dev->checkpt_cur_block = i;
85 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
86 "allocating checkpt block %d", i);
William Juul0e8cc8b2007-11-15 11:13:05 +010087 return;
88 }
89 }
90 }
Charles Manning753ac612012-05-09 16:55:17 +000091 yaffs_trace(YAFFS_TRACE_CHECKPOINT, "out of checkpt blocks");
Wolfgang Denk4b070802008-08-14 14:41:06 +020092
Charles Manning753ac612012-05-09 16:55:17 +000093 dev->checkpt_next_block = -1;
94 dev->checkpt_cur_block = -1;
William Juul0e8cc8b2007-11-15 11:13:05 +010095}
96
Charles Manning753ac612012-05-09 16:55:17 +000097static void yaffs2_checkpt_find_block(struct yaffs_dev *dev)
William Juul0e8cc8b2007-11-15 11:13:05 +010098{
Charles Manning753ac612012-05-09 16:55:17 +000099 int i;
100 struct yaffs_ext_tags tags;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200101
Charles Manning753ac612012-05-09 16:55:17 +0000102 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
103 "find next checkpt block: start: blocks %d next %d",
104 dev->blocks_in_checkpt, dev->checkpt_next_block);
Wolfgang Denk4b070802008-08-14 14:41:06 +0200105
Charles Manning753ac612012-05-09 16:55:17 +0000106 if (dev->blocks_in_checkpt < dev->checkpt_max_blocks)
107 for (i = dev->checkpt_next_block; i <= dev->internal_end_block;
108 i++) {
109 int chunk = i * dev->param.chunks_per_block;
110 int realigned_chunk = chunk - dev->chunk_offset;
William Juul0e8cc8b2007-11-15 11:13:05 +0100111
Charles Manning753ac612012-05-09 16:55:17 +0000112 dev->param.read_chunk_tags_fn(dev, realigned_chunk,
113 NULL, &tags);
114 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
115 "find next checkpt block: search: block %d oid %d seq %d eccr %d",
116 i, tags.obj_id, tags.seq_number,
117 tags.ecc_result);
Wolfgang Denk4b070802008-08-14 14:41:06 +0200118
Charles Manning753ac612012-05-09 16:55:17 +0000119 if (tags.seq_number == YAFFS_SEQUENCE_CHECKPOINT_DATA) {
William Juul0e8cc8b2007-11-15 11:13:05 +0100120 /* Right kind of block */
Charles Manning753ac612012-05-09 16:55:17 +0000121 dev->checkpt_next_block = tags.obj_id;
122 dev->checkpt_cur_block = i;
123 dev->checkpt_block_list[dev->
124 blocks_in_checkpt] = i;
125 dev->blocks_in_checkpt++;
126 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
127 "found checkpt block %d", i);
William Juul0e8cc8b2007-11-15 11:13:05 +0100128 return;
129 }
130 }
131
Charles Manning753ac612012-05-09 16:55:17 +0000132 yaffs_trace(YAFFS_TRACE_CHECKPOINT, "found no more checkpt blocks");
William Juul0e8cc8b2007-11-15 11:13:05 +0100133
Charles Manning753ac612012-05-09 16:55:17 +0000134 dev->checkpt_next_block = -1;
135 dev->checkpt_cur_block = -1;
William Juul0e8cc8b2007-11-15 11:13:05 +0100136}
137
Charles Manning753ac612012-05-09 16:55:17 +0000138int yaffs2_checkpt_open(struct yaffs_dev *dev, int writing)
William Juul0e8cc8b2007-11-15 11:13:05 +0100139{
Charles Manning753ac612012-05-09 16:55:17 +0000140 int i;
141
142 dev->checkpt_open_write = writing;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200143
William Juul0e8cc8b2007-11-15 11:13:05 +0100144 /* Got the functions we need? */
Charles Manning753ac612012-05-09 16:55:17 +0000145 if (!dev->param.write_chunk_tags_fn ||
146 !dev->param.read_chunk_tags_fn ||
147 !dev->param.erase_fn || !dev->param.bad_block_fn)
William Juul0e8cc8b2007-11-15 11:13:05 +0100148 return 0;
149
Charles Manning753ac612012-05-09 16:55:17 +0000150 if (writing && !yaffs2_checkpt_space_ok(dev))
William Juul0e8cc8b2007-11-15 11:13:05 +0100151 return 0;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200152
Charles Manning753ac612012-05-09 16:55:17 +0000153 if (!dev->checkpt_buffer)
154 dev->checkpt_buffer =
155 kmalloc(dev->param.total_bytes_per_chunk, GFP_NOFS);
156 if (!dev->checkpt_buffer)
William Juul0e8cc8b2007-11-15 11:13:05 +0100157 return 0;
158
Charles Manning753ac612012-05-09 16:55:17 +0000159 dev->checkpt_page_seq = 0;
160 dev->checkpt_byte_count = 0;
161 dev->checkpt_sum = 0;
162 dev->checkpt_xor = 0;
163 dev->checkpt_cur_block = -1;
164 dev->checkpt_cur_chunk = -1;
165 dev->checkpt_next_block = dev->internal_start_block;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200166
William Juul0e8cc8b2007-11-15 11:13:05 +0100167 /* Erase all the blocks in the checkpoint area */
Charles Manning753ac612012-05-09 16:55:17 +0000168 if (writing) {
169 memset(dev->checkpt_buffer, 0, dev->data_bytes_per_chunk);
170 dev->checkpt_byte_offs = 0;
171 return yaffs_checkpt_erase(dev);
William Juul0e8cc8b2007-11-15 11:13:05 +0100172 }
Wolfgang Denk4b070802008-08-14 14:41:06 +0200173
Charles Manning753ac612012-05-09 16:55:17 +0000174 /* Set to a value that will kick off a read */
175 dev->checkpt_byte_offs = dev->data_bytes_per_chunk;
176 /* A checkpoint block list of 1 checkpoint block per 16 block is
177 * (hopefully) going to be way more than we need */
178 dev->blocks_in_checkpt = 0;
179 dev->checkpt_max_blocks =
180 (dev->internal_end_block - dev->internal_start_block) / 16 + 2;
181 dev->checkpt_block_list =
182 kmalloc(sizeof(int) * dev->checkpt_max_blocks, GFP_NOFS);
William Juul0e8cc8b2007-11-15 11:13:05 +0100183
Charles Manning753ac612012-05-09 16:55:17 +0000184 if (!dev->checkpt_block_list)
William Juul0e8cc8b2007-11-15 11:13:05 +0100185 return 0;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200186
Charles Manning753ac612012-05-09 16:55:17 +0000187 for (i = 0; i < dev->checkpt_max_blocks; i++)
188 dev->checkpt_block_list[i] = -1;
189
190 return 1;
191}
192
193int yaffs2_get_checkpt_sum(struct yaffs_dev *dev, u32 * sum)
194{
195 u32 composite_sum;
196
197 composite_sum = (dev->checkpt_sum << 8) | (dev->checkpt_xor & 0xff);
198 *sum = composite_sum;
199 return 1;
200}
201
202static int yaffs2_checkpt_flush_buffer(struct yaffs_dev *dev)
203{
204 int chunk;
205 int realigned_chunk;
206 struct yaffs_ext_tags tags;
207
208 if (dev->checkpt_cur_block < 0) {
209 yaffs2_checkpt_find_erased_block(dev);
210 dev->checkpt_cur_chunk = 0;
211 }
212
213 if (dev->checkpt_cur_block < 0)
214 return 0;
215
216 tags.is_deleted = 0;
217 tags.obj_id = dev->checkpt_next_block; /* Hint to next place to look */
218 tags.chunk_id = dev->checkpt_page_seq + 1;
219 tags.seq_number = YAFFS_SEQUENCE_CHECKPOINT_DATA;
220 tags.n_bytes = dev->data_bytes_per_chunk;
221 if (dev->checkpt_cur_chunk == 0) {
William Juul0e8cc8b2007-11-15 11:13:05 +0100222 /* First chunk we write for the block? Set block state to
223 checkpoint */
Charles Manning753ac612012-05-09 16:55:17 +0000224 struct yaffs_block_info *bi =
225 yaffs_get_block_info(dev, dev->checkpt_cur_block);
226 bi->block_state = YAFFS_BLOCK_STATE_CHECKPOINT;
227 dev->blocks_in_checkpt++;
William Juul0e8cc8b2007-11-15 11:13:05 +0100228 }
Wolfgang Denk4b070802008-08-14 14:41:06 +0200229
Charles Manning753ac612012-05-09 16:55:17 +0000230 chunk =
231 dev->checkpt_cur_block * dev->param.chunks_per_block +
232 dev->checkpt_cur_chunk;
William Juul0e8cc8b2007-11-15 11:13:05 +0100233
Charles Manning753ac612012-05-09 16:55:17 +0000234 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
235 "checkpoint wite buffer nand %d(%d:%d) objid %d chId %d",
236 chunk, dev->checkpt_cur_block, dev->checkpt_cur_chunk,
237 tags.obj_id, tags.chunk_id);
Wolfgang Denk4b070802008-08-14 14:41:06 +0200238
Charles Manning753ac612012-05-09 16:55:17 +0000239 realigned_chunk = chunk - dev->chunk_offset;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200240
Charles Manning753ac612012-05-09 16:55:17 +0000241 dev->n_page_writes++;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200242
Charles Manning753ac612012-05-09 16:55:17 +0000243 dev->param.write_chunk_tags_fn(dev, realigned_chunk,
244 dev->checkpt_buffer, &tags);
245 dev->checkpt_byte_offs = 0;
246 dev->checkpt_page_seq++;
247 dev->checkpt_cur_chunk++;
248 if (dev->checkpt_cur_chunk >= dev->param.chunks_per_block) {
249 dev->checkpt_cur_chunk = 0;
250 dev->checkpt_cur_block = -1;
William Juul0e8cc8b2007-11-15 11:13:05 +0100251 }
Charles Manning753ac612012-05-09 16:55:17 +0000252 memset(dev->checkpt_buffer, 0, dev->data_bytes_per_chunk);
Wolfgang Denk4b070802008-08-14 14:41:06 +0200253
William Juul0e8cc8b2007-11-15 11:13:05 +0100254 return 1;
255}
256
Charles Manning753ac612012-05-09 16:55:17 +0000257int yaffs2_checkpt_wr(struct yaffs_dev *dev, const void *data, int n_bytes)
William Juul0e8cc8b2007-11-15 11:13:05 +0100258{
Charles Manning753ac612012-05-09 16:55:17 +0000259 int i = 0;
William Juul0e8cc8b2007-11-15 11:13:05 +0100260 int ok = 1;
Charles Manning753ac612012-05-09 16:55:17 +0000261 u8 *data_bytes = (u8 *) data;
William Juul0e8cc8b2007-11-15 11:13:05 +0100262
Charles Manning753ac612012-05-09 16:55:17 +0000263 if (!dev->checkpt_buffer)
William Juul0e8cc8b2007-11-15 11:13:05 +0100264 return 0;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200265
Charles Manning753ac612012-05-09 16:55:17 +0000266 if (!dev->checkpt_open_write)
William Juul0e8cc8b2007-11-15 11:13:05 +0100267 return -1;
268
Charles Manning753ac612012-05-09 16:55:17 +0000269 while (i < n_bytes && ok) {
270 dev->checkpt_buffer[dev->checkpt_byte_offs] = *data_bytes;
271 dev->checkpt_sum += *data_bytes;
272 dev->checkpt_xor ^= *data_bytes;
William Juul0e8cc8b2007-11-15 11:13:05 +0100273
Charles Manning753ac612012-05-09 16:55:17 +0000274 dev->checkpt_byte_offs++;
William Juul0e8cc8b2007-11-15 11:13:05 +0100275 i++;
Charles Manning753ac612012-05-09 16:55:17 +0000276 data_bytes++;
277 dev->checkpt_byte_count++;
Wolfgang Denk4b070802008-08-14 14:41:06 +0200278
Charles Manning753ac612012-05-09 16:55:17 +0000279 if (dev->checkpt_byte_offs < 0 ||
280 dev->checkpt_byte_offs >= dev->data_bytes_per_chunk)
281 ok = yaffs2_checkpt_flush_buffer(dev);
William Juul0e8cc8b2007-11-15 11:13:05 +0100282 }
Wolfgang Denk4b070802008-08-14 14:41:06 +0200283
Charles Manning753ac612012-05-09 16:55:17 +0000284 return i;
William Juul0e8cc8b2007-11-15 11:13:05 +0100285}
286
Charles Manning753ac612012-05-09 16:55:17 +0000287int yaffs2_checkpt_rd(struct yaffs_dev *dev, void *data, int n_bytes)
William Juul0e8cc8b2007-11-15 11:13:05 +0100288{
Charles Manning753ac612012-05-09 16:55:17 +0000289 int i = 0;
William Juul0e8cc8b2007-11-15 11:13:05 +0100290 int ok = 1;
Charles Manning753ac612012-05-09 16:55:17 +0000291 struct yaffs_ext_tags tags;
William Juul0e8cc8b2007-11-15 11:13:05 +0100292 int chunk;
Charles Manning753ac612012-05-09 16:55:17 +0000293 int realigned_chunk;
294 u8 *data_bytes = (u8 *) data;
William Juul0e8cc8b2007-11-15 11:13:05 +0100295
Charles Manning753ac612012-05-09 16:55:17 +0000296 if (!dev->checkpt_buffer)
William Juul0e8cc8b2007-11-15 11:13:05 +0100297 return 0;
298
Charles Manning753ac612012-05-09 16:55:17 +0000299 if (dev->checkpt_open_write)
William Juul0e8cc8b2007-11-15 11:13:05 +0100300 return -1;
301
Charles Manning753ac612012-05-09 16:55:17 +0000302 while (i < n_bytes && ok) {
Wolfgang Denk4b070802008-08-14 14:41:06 +0200303
Charles Manning753ac612012-05-09 16:55:17 +0000304 if (dev->checkpt_byte_offs < 0 ||
305 dev->checkpt_byte_offs >= dev->data_bytes_per_chunk) {
Wolfgang Denk4b070802008-08-14 14:41:06 +0200306
Charles Manning753ac612012-05-09 16:55:17 +0000307 if (dev->checkpt_cur_block < 0) {
308 yaffs2_checkpt_find_block(dev);
309 dev->checkpt_cur_chunk = 0;
William Juul0e8cc8b2007-11-15 11:13:05 +0100310 }
Wolfgang Denk4b070802008-08-14 14:41:06 +0200311
Charles Manning753ac612012-05-09 16:55:17 +0000312 if (dev->checkpt_cur_block < 0) {
William Juul0e8cc8b2007-11-15 11:13:05 +0100313 ok = 0;
Charles Manning753ac612012-05-09 16:55:17 +0000314 break;
William Juul0e8cc8b2007-11-15 11:13:05 +0100315 }
Charles Manning753ac612012-05-09 16:55:17 +0000316
317 chunk = dev->checkpt_cur_block *
318 dev->param.chunks_per_block +
319 dev->checkpt_cur_chunk;
320
321 realigned_chunk = chunk - dev->chunk_offset;
322 dev->n_page_reads++;
323
324 /* read in the next chunk */
325 dev->param.read_chunk_tags_fn(dev,
326 realigned_chunk,
327 dev->checkpt_buffer,
328 &tags);
329
330 if (tags.chunk_id != (dev->checkpt_page_seq + 1) ||
331 tags.ecc_result > YAFFS_ECC_RESULT_FIXED ||
332 tags.seq_number != YAFFS_SEQUENCE_CHECKPOINT_DATA) {
333 ok = 0;
334 break;
335 }
336
337 dev->checkpt_byte_offs = 0;
338 dev->checkpt_page_seq++;
339 dev->checkpt_cur_chunk++;
340
341 if (dev->checkpt_cur_chunk >=
342 dev->param.chunks_per_block)
343 dev->checkpt_cur_block = -1;
William Juul0e8cc8b2007-11-15 11:13:05 +0100344 }
Wolfgang Denk4b070802008-08-14 14:41:06 +0200345
Charles Manning753ac612012-05-09 16:55:17 +0000346 *data_bytes = dev->checkpt_buffer[dev->checkpt_byte_offs];
347 dev->checkpt_sum += *data_bytes;
348 dev->checkpt_xor ^= *data_bytes;
349 dev->checkpt_byte_offs++;
350 i++;
351 data_bytes++;
352 dev->checkpt_byte_count++;
William Juul0e8cc8b2007-11-15 11:13:05 +0100353 }
Wolfgang Denk4b070802008-08-14 14:41:06 +0200354
Charles Manning753ac612012-05-09 16:55:17 +0000355 return i;
William Juul0e8cc8b2007-11-15 11:13:05 +0100356}
357
Charles Manning753ac612012-05-09 16:55:17 +0000358int yaffs_checkpt_close(struct yaffs_dev *dev)
William Juul0e8cc8b2007-11-15 11:13:05 +0100359{
Charles Manning753ac612012-05-09 16:55:17 +0000360 int i;
William Juul0e8cc8b2007-11-15 11:13:05 +0100361
Charles Manning753ac612012-05-09 16:55:17 +0000362 if (dev->checkpt_open_write) {
363 if (dev->checkpt_byte_offs != 0)
364 yaffs2_checkpt_flush_buffer(dev);
365 } else if (dev->checkpt_block_list) {
366 for (i = 0;
367 i < dev->blocks_in_checkpt &&
368 dev->checkpt_block_list[i] >= 0; i++) {
369 int blk = dev->checkpt_block_list[i];
370 struct yaffs_block_info *bi = NULL;
371
372 if (dev->internal_start_block <= blk &&
373 blk <= dev->internal_end_block)
374 bi = yaffs_get_block_info(dev, blk);
375 if (bi && bi->block_state == YAFFS_BLOCK_STATE_EMPTY)
376 bi->block_state = YAFFS_BLOCK_STATE_CHECKPOINT;
William Juul0e8cc8b2007-11-15 11:13:05 +0100377 }
Charles Manning753ac612012-05-09 16:55:17 +0000378 kfree(dev->checkpt_block_list);
379 dev->checkpt_block_list = NULL;
William Juul0e8cc8b2007-11-15 11:13:05 +0100380 }
381
Charles Manning753ac612012-05-09 16:55:17 +0000382 dev->n_free_chunks -=
383 dev->blocks_in_checkpt * dev->param.chunks_per_block;
384 dev->n_erased_blocks -= dev->blocks_in_checkpt;
William Juul0e8cc8b2007-11-15 11:13:05 +0100385
Charles Manning753ac612012-05-09 16:55:17 +0000386 yaffs_trace(YAFFS_TRACE_CHECKPOINT, "checkpoint byte count %d",
387 dev->checkpt_byte_count);
Wolfgang Denk4b070802008-08-14 14:41:06 +0200388
Charles Manning753ac612012-05-09 16:55:17 +0000389 if (dev->checkpt_buffer) {
Wolfgang Denk4b070802008-08-14 14:41:06 +0200390 /* free the buffer */
Charles Manning753ac612012-05-09 16:55:17 +0000391 kfree(dev->checkpt_buffer);
392 dev->checkpt_buffer = NULL;
William Juul0e8cc8b2007-11-15 11:13:05 +0100393 return 1;
Charles Manning753ac612012-05-09 16:55:17 +0000394 } else {
William Juul0e8cc8b2007-11-15 11:13:05 +0100395 return 0;
Charles Manning753ac612012-05-09 16:55:17 +0000396 }
William Juul0e8cc8b2007-11-15 11:13:05 +0100397}
398
Charles Manning753ac612012-05-09 16:55:17 +0000399int yaffs2_checkpt_invalidate_stream(struct yaffs_dev *dev)
William Juul0e8cc8b2007-11-15 11:13:05 +0100400{
Charles Manning753ac612012-05-09 16:55:17 +0000401 /* Erase the checkpoint data */
William Juul0e8cc8b2007-11-15 11:13:05 +0100402
Charles Manning753ac612012-05-09 16:55:17 +0000403 yaffs_trace(YAFFS_TRACE_CHECKPOINT,
404 "checkpoint invalidate of %d blocks",
405 dev->blocks_in_checkpt);
William Juul0e8cc8b2007-11-15 11:13:05 +0100406
Charles Manning753ac612012-05-09 16:55:17 +0000407 return yaffs_checkpt_erase(dev);
William Juul0e8cc8b2007-11-15 11:13:05 +0100408}