blob: 1c6eb6bcfd99d353d8dc45bdc68bbe10059287df [file] [log] [blame]
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001/*
2 * fs/f2fs/checkpoint.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/fs.h>
12#include <linux/bio.h>
13#include <linux/mpage.h>
14#include <linux/writeback.h>
15#include <linux/blkdev.h>
16#include <linux/f2fs_fs.h>
17#include <linux/pagevec.h>
18#include <linux/swap.h>
19
20#include "f2fs.h"
21#include "node.h"
22#include "segment.h"
23#include <trace/events/f2fs.h>
24
Dan Pasanen97e8a342014-08-25 19:11:31 -050025static struct kmem_cache *orphan_entry_slab;
Linus Torvalds8005ecc2012-12-20 13:54:51 -080026static struct kmem_cache *inode_entry_slab;
27
28/*
29 * We guarantee no failure on the returned page.
30 */
31struct page *grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
32{
Changman Leeb1a94e82013-11-15 10:42:51 +090033 struct address_space *mapping = META_MAPPING(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080034 struct page *page = NULL;
35repeat:
Jaegeuk Kimb6687392014-04-30 09:18:53 +090036 page = grab_cache_page(mapping, index);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080037 if (!page) {
38 cond_resched();
39 goto repeat;
40 }
Jaegeuk Kimb6687392014-04-30 09:18:53 +090041 f2fs_wait_on_page_writeback(page, META);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080042 SetPageUptodate(page);
43 return page;
44}
45
46/*
47 * We guarantee no failure on the returned page.
48 */
49struct page *get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
50{
Changman Leeb1a94e82013-11-15 10:42:51 +090051 struct address_space *mapping = META_MAPPING(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080052 struct page *page;
53repeat:
54 page = grab_cache_page(mapping, index);
55 if (!page) {
56 cond_resched();
57 goto repeat;
58 }
59 if (PageUptodate(page))
60 goto out;
61
Changman Leeb1a94e82013-11-15 10:42:51 +090062 if (f2fs_submit_page_bio(sbi, page, index,
63 READ_SYNC | REQ_META | REQ_PRIO))
Linus Torvalds8005ecc2012-12-20 13:54:51 -080064 goto repeat;
65
66 lock_page(page);
Changman Leeb1a94e82013-11-15 10:42:51 +090067 if (unlikely(page->mapping != mapping)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -080068 f2fs_put_page(page, 1);
69 goto repeat;
70 }
71out:
Linus Torvalds8005ecc2012-12-20 13:54:51 -080072 return page;
73}
74
Fabian Frederick179c1172014-04-17 17:51:06 +020075static inline int get_max_meta_blks(struct f2fs_sb_info *sbi, int type)
Chao Yu624b14f2014-02-07 16:11:53 +080076{
77 switch (type) {
78 case META_NAT:
79 return NM_I(sbi)->max_nid / NAT_ENTRY_PER_BLOCK;
80 case META_SIT:
81 return SIT_BLK_CNT(sbi);
Chao Yu99926a92014-02-27 19:12:24 +080082 case META_SSA:
Chao Yu624b14f2014-02-07 16:11:53 +080083 case META_CP:
84 return 0;
85 default:
86 BUG();
87 }
88}
89
90/*
Chao Yu99926a92014-02-27 19:12:24 +080091 * Readahead CP/NAT/SIT/SSA pages
Chao Yu624b14f2014-02-07 16:11:53 +080092 */
93int ra_meta_pages(struct f2fs_sb_info *sbi, int start, int nrpages, int type)
94{
95 block_t prev_blk_addr = 0;
96 struct page *page;
97 int blkno = start;
98 int max_blks = get_max_meta_blks(sbi, type);
99
100 struct f2fs_io_info fio = {
101 .type = META,
102 .rw = READ_SYNC | REQ_META | REQ_PRIO
103 };
104
105 for (; nrpages-- > 0; blkno++) {
106 block_t blk_addr;
107
108 switch (type) {
109 case META_NAT:
110 /* get nat block addr */
111 if (unlikely(blkno >= max_blks))
112 blkno = 0;
113 blk_addr = current_nat_addr(sbi,
114 blkno * NAT_ENTRY_PER_BLOCK);
115 break;
116 case META_SIT:
117 /* get sit block addr */
118 if (unlikely(blkno >= max_blks))
119 goto out;
120 blk_addr = current_sit_addr(sbi,
121 blkno * SIT_ENTRY_PER_BLOCK);
122 if (blkno != start && prev_blk_addr + 1 != blk_addr)
123 goto out;
124 prev_blk_addr = blk_addr;
125 break;
Chao Yu99926a92014-02-27 19:12:24 +0800126 case META_SSA:
Chao Yu624b14f2014-02-07 16:11:53 +0800127 case META_CP:
Chao Yu99926a92014-02-27 19:12:24 +0800128 /* get ssa/cp block addr */
Chao Yu624b14f2014-02-07 16:11:53 +0800129 blk_addr = blkno;
130 break;
131 default:
132 BUG();
133 }
134
135 page = grab_cache_page(META_MAPPING(sbi), blk_addr);
136 if (!page)
137 continue;
138 if (PageUptodate(page)) {
Chao Yu624b14f2014-02-07 16:11:53 +0800139 f2fs_put_page(page, 1);
140 continue;
141 }
142
143 f2fs_submit_page_mbio(sbi, page, blk_addr, &fio);
Chao Yu624b14f2014-02-07 16:11:53 +0800144 f2fs_put_page(page, 0);
145 }
146out:
147 f2fs_submit_merged_bio(sbi, META, READ);
148 return blkno - start;
149}
150
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800151static int f2fs_write_meta_page(struct page *page,
152 struct writeback_control *wbc)
153{
154 struct inode *inode = page->mapping->host;
155 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
156
Chao Yu327cb6d2014-05-06 16:48:26 +0800157 trace_f2fs_writepage(page, META);
158
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900159 if (unlikely(sbi->por_doing))
Changman Leeb1a94e82013-11-15 10:42:51 +0900160 goto redirty_out;
Changman Leeb1a94e82013-11-15 10:42:51 +0900161 if (wbc->for_reclaim)
162 goto redirty_out;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800163
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900164 /* Should not write any meta pages, if any IO error was occurred */
165 if (unlikely(is_set_ckpt_flags(F2FS_CKPT(sbi), CP_ERROR_FLAG)))
166 goto no_write;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800167
Jaegeuk Kim4b66d802014-03-18 13:29:07 +0900168 f2fs_wait_on_page_writeback(page, META);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800169 write_meta_page(sbi, page);
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900170no_write:
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800171 dec_page_count(sbi, F2FS_DIRTY_META);
172 unlock_page(page);
173 return 0;
Changman Leeb1a94e82013-11-15 10:42:51 +0900174
175redirty_out:
Jaegeuk Kimdc8c2462014-04-15 16:04:15 +0900176 redirty_page_for_writepage(wbc, page);
Changman Leeb1a94e82013-11-15 10:42:51 +0900177 return AOP_WRITEPAGE_ACTIVATE;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800178}
179
180static int f2fs_write_meta_pages(struct address_space *mapping,
181 struct writeback_control *wbc)
182{
183 struct f2fs_sb_info *sbi = F2FS_SB(mapping->host->i_sb);
Jaegeuk Kim1f1eaf42014-03-18 13:47:11 +0900184 long diff, written;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800185
Chao Yub4d85492014-05-06 16:51:24 +0800186 trace_f2fs_writepages(mapping->host, wbc, META);
187
Changman Leeb1a94e82013-11-15 10:42:51 +0900188 /* collect a number of dirty meta pages and write together */
Jaegeuk Kim1f1eaf42014-03-18 13:47:11 +0900189 if (wbc->for_kupdate ||
190 get_pages(sbi, F2FS_DIRTY_META) < nr_pages_to_skip(sbi, META))
Jaegeuk Kim823d59f2014-03-18 13:43:05 +0900191 goto skip_write;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800192
193 /* if mounting is failed, skip writing node pages */
194 mutex_lock(&sbi->cp_mutex);
Jaegeuk Kim1f1eaf42014-03-18 13:47:11 +0900195 diff = nr_pages_to_write(sbi, META, wbc);
196 written = sync_meta_pages(sbi, META, wbc->nr_to_write);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800197 mutex_unlock(&sbi->cp_mutex);
Jaegeuk Kim1f1eaf42014-03-18 13:47:11 +0900198 wbc->nr_to_write = max((long)0, wbc->nr_to_write - written - diff);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800199 return 0;
Jaegeuk Kim823d59f2014-03-18 13:43:05 +0900200
201skip_write:
202 wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_META);
203 return 0;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800204}
205
206long sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
207 long nr_to_write)
208{
Changman Leeb1a94e82013-11-15 10:42:51 +0900209 struct address_space *mapping = META_MAPPING(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800210 pgoff_t index = 0, end = LONG_MAX;
211 struct pagevec pvec;
212 long nwritten = 0;
213 struct writeback_control wbc = {
214 .for_reclaim = 0,
215 };
216
217 pagevec_init(&pvec, 0);
218
219 while (index <= end) {
220 int i, nr_pages;
221 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
222 PAGECACHE_TAG_DIRTY,
223 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
Changman Leeb1a94e82013-11-15 10:42:51 +0900224 if (unlikely(nr_pages == 0))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800225 break;
226
227 for (i = 0; i < nr_pages; i++) {
228 struct page *page = pvec.pages[i];
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900229
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800230 lock_page(page);
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900231
232 if (unlikely(page->mapping != mapping)) {
233continue_unlock:
234 unlock_page(page);
235 continue;
236 }
237 if (!PageDirty(page)) {
238 /* someone wrote it for us */
239 goto continue_unlock;
240 }
241
242 if (!clear_page_dirty_for_io(page))
243 goto continue_unlock;
244
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800245 if (f2fs_write_meta_page(page, &wbc)) {
246 unlock_page(page);
247 break;
248 }
Changman Leeb1a94e82013-11-15 10:42:51 +0900249 nwritten++;
250 if (unlikely(nwritten >= nr_to_write))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800251 break;
252 }
253 pagevec_release(&pvec);
254 cond_resched();
255 }
256
257 if (nwritten)
Changman Leeb1a94e82013-11-15 10:42:51 +0900258 f2fs_submit_merged_bio(sbi, type, WRITE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800259
260 return nwritten;
261}
262
263static int f2fs_set_meta_page_dirty(struct page *page)
264{
265 struct address_space *mapping = page->mapping;
266 struct f2fs_sb_info *sbi = F2FS_SB(mapping->host->i_sb);
267
268 trace_f2fs_set_page_dirty(page, META);
269
270 SetPageUptodate(page);
271 if (!PageDirty(page)) {
272 __set_page_dirty_nobuffers(page);
273 inc_page_count(sbi, F2FS_DIRTY_META);
274 return 1;
275 }
276 return 0;
277}
278
279const struct address_space_operations f2fs_meta_aops = {
280 .writepage = f2fs_write_meta_page,
281 .writepages = f2fs_write_meta_pages,
282 .set_page_dirty = f2fs_set_meta_page_dirty,
283};
284
Jaegeuk Kim3ff86092014-07-25 15:47:16 -0700285static void __add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino)
286{
287 struct list_head *head;
288 struct orphan_inode_entry *new, *e;
289
290 new = f2fs_kmem_cache_alloc(orphan_entry_slab, GFP_ATOMIC);
291 new->ino = ino;
292
293 spin_lock(&sbi->orphan_inode_lock);
294 list_for_each_entry(e, &sbi->orphan_inode_list, list) {
295 if (e->ino == ino) {
296 spin_unlock(&sbi->orphan_inode_lock);
297 kmem_cache_free(orphan_entry_slab, new);
298 return;
299 }
300 if (e->ino > ino)
301 break;
302 }
303
304 /* add new entry into list which is sorted by inode number */
305 list_add_tail(&new->list, &e->list);
306 spin_unlock(&sbi->orphan_inode_lock);
307}
308
309static void __remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino)
310{
311 struct orphan_inode_entry *e;
312
313 spin_lock(&sbi->orphan_inode_lock);
314 list_for_each_entry(e, &sbi->orphan_inode_list, list) {
315 if (e->ino == ino) {
316 list_del(&e->list);
317 sbi->n_orphans--;
318 spin_unlock(&sbi->orphan_inode_lock);
319 kmem_cache_free(orphan_entry_slab, e);
320 return;
321 }
322 }
323 spin_unlock(&sbi->orphan_inode_lock);
324}
325
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800326int acquire_orphan_inode(struct f2fs_sb_info *sbi)
327{
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800328 int err = 0;
329
Dan Pasanen97e8a342014-08-25 19:11:31 -0500330 spin_lock(&sbi->orphan_inode_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900331 if (unlikely(sbi->n_orphans >= sbi->max_orphans))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800332 err = -ENOSPC;
333 else
334 sbi->n_orphans++;
Dan Pasanen97e8a342014-08-25 19:11:31 -0500335 spin_unlock(&sbi->orphan_inode_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900336
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800337 return err;
338}
339
340void release_orphan_inode(struct f2fs_sb_info *sbi)
341{
Dan Pasanen97e8a342014-08-25 19:11:31 -0500342 spin_lock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800343 f2fs_bug_on(sbi->n_orphans == 0);
344 sbi->n_orphans--;
Dan Pasanen97e8a342014-08-25 19:11:31 -0500345 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800346}
347
348void add_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
349{
Dan Pasanen97e8a342014-08-25 19:11:31 -0500350 /* add new orphan entry into list which is sorted by inode number */
Jaegeuk Kim3ff86092014-07-25 15:47:16 -0700351 __add_ino_entry(sbi, ino);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800352}
353
354void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
355{
Jaegeuk Kim3ff86092014-07-25 15:47:16 -0700356 /* remove orphan entry from orphan list */
357 __remove_ino_entry(sbi, ino);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800358}
359
360static void recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
361{
362 struct inode *inode = f2fs_iget(sbi->sb, ino);
363 f2fs_bug_on(IS_ERR(inode));
364 clear_nlink(inode);
365
366 /* truncate all the data during iput */
367 iput(inode);
368}
369
Changman Leeb1a94e82013-11-15 10:42:51 +0900370void recover_orphan_inodes(struct f2fs_sb_info *sbi)
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800371{
372 block_t start_blk, orphan_blkaddr, i, j;
373
374 if (!is_set_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG))
Changman Leeb1a94e82013-11-15 10:42:51 +0900375 return;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800376
377 sbi->por_doing = true;
Changman Leec8f5ffb2014-05-12 12:27:43 +0900378
379 start_blk = __start_cp_addr(sbi) + 1 +
380 le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800381 orphan_blkaddr = __start_sum_addr(sbi) - 1;
382
Chao Yu624b14f2014-02-07 16:11:53 +0800383 ra_meta_pages(sbi, start_blk, orphan_blkaddr, META_CP);
384
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800385 for (i = 0; i < orphan_blkaddr; i++) {
386 struct page *page = get_meta_page(sbi, start_blk + i);
387 struct f2fs_orphan_block *orphan_blk;
388
389 orphan_blk = (struct f2fs_orphan_block *)page_address(page);
390 for (j = 0; j < le32_to_cpu(orphan_blk->entry_count); j++) {
391 nid_t ino = le32_to_cpu(orphan_blk->ino[j]);
392 recover_orphan_inode(sbi, ino);
393 }
394 f2fs_put_page(page, 1);
395 }
396 /* clear Orphan Flag */
397 clear_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG);
398 sbi->por_doing = false;
Changman Leeb1a94e82013-11-15 10:42:51 +0900399 return;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800400}
401
402static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk)
403{
Changman Leeb1a94e82013-11-15 10:42:51 +0900404 struct list_head *head;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800405 struct f2fs_orphan_block *orphan_blk = NULL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800406 unsigned int nentries = 0;
Changman Leeb1a94e82013-11-15 10:42:51 +0900407 unsigned short index;
408 unsigned short orphan_blocks = (unsigned short)((sbi->n_orphans +
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800409 (F2FS_ORPHANS_PER_BLOCK - 1)) / F2FS_ORPHANS_PER_BLOCK);
Changman Leeb1a94e82013-11-15 10:42:51 +0900410 struct page *page = NULL;
Dan Pasanen97e8a342014-08-25 19:11:31 -0500411 struct orphan_inode_entry *orphan = NULL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800412
Changman Leeb1a94e82013-11-15 10:42:51 +0900413 for (index = 0; index < orphan_blocks; index++)
414 grab_meta_page(sbi, start_blk + index);
415
416 index = 1;
Dan Pasanen97e8a342014-08-25 19:11:31 -0500417 spin_lock(&sbi->orphan_inode_lock);
418 head = &sbi->orphan_inode_list;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800419
420 /* loop for each orphan inode entry and write them in Jornal block */
Changman Leeb1a94e82013-11-15 10:42:51 +0900421 list_for_each_entry(orphan, head, list) {
422 if (!page) {
423 page = find_get_page(META_MAPPING(sbi), start_blk++);
424 f2fs_bug_on(!page);
425 orphan_blk =
426 (struct f2fs_orphan_block *)page_address(page);
427 memset(orphan_blk, 0, sizeof(*orphan_blk));
428 f2fs_put_page(page, 0);
429 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800430
Changman Leeb1a94e82013-11-15 10:42:51 +0900431 orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800432
433 if (nentries == F2FS_ORPHANS_PER_BLOCK) {
434 /*
435 * an orphan block is full of 1020 entries,
436 * then we need to flush current orphan blocks
437 * and bring another one in memory
438 */
439 orphan_blk->blk_addr = cpu_to_le16(index);
440 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
441 orphan_blk->entry_count = cpu_to_le32(nentries);
442 set_page_dirty(page);
443 f2fs_put_page(page, 1);
444 index++;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800445 nentries = 0;
446 page = NULL;
447 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800448 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800449
Changman Leeb1a94e82013-11-15 10:42:51 +0900450 if (page) {
451 orphan_blk->blk_addr = cpu_to_le16(index);
452 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
453 orphan_blk->entry_count = cpu_to_le32(nentries);
454 set_page_dirty(page);
455 f2fs_put_page(page, 1);
456 }
457
Dan Pasanen97e8a342014-08-25 19:11:31 -0500458 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800459}
460
461static struct page *validate_checkpoint(struct f2fs_sb_info *sbi,
462 block_t cp_addr, unsigned long long *version)
463{
464 struct page *cp_page_1, *cp_page_2 = NULL;
465 unsigned long blk_size = sbi->blocksize;
466 struct f2fs_checkpoint *cp_block;
467 unsigned long long cur_version = 0, pre_version = 0;
468 size_t crc_offset;
469 __u32 crc = 0;
470
471 /* Read the 1st cp block in this CP pack */
472 cp_page_1 = get_meta_page(sbi, cp_addr);
473
474 /* get the version number */
475 cp_block = (struct f2fs_checkpoint *)page_address(cp_page_1);
476 crc_offset = le32_to_cpu(cp_block->checksum_offset);
477 if (crc_offset >= blk_size)
478 goto invalid_cp1;
479
480 crc = le32_to_cpu(*((__u32 *)((unsigned char *)cp_block + crc_offset)));
481 if (!f2fs_crc_valid(crc, cp_block, crc_offset))
482 goto invalid_cp1;
483
484 pre_version = cur_cp_version(cp_block);
485
486 /* Read the 2nd cp block in this CP pack */
487 cp_addr += le32_to_cpu(cp_block->cp_pack_total_block_count) - 1;
488 cp_page_2 = get_meta_page(sbi, cp_addr);
489
490 cp_block = (struct f2fs_checkpoint *)page_address(cp_page_2);
491 crc_offset = le32_to_cpu(cp_block->checksum_offset);
492 if (crc_offset >= blk_size)
493 goto invalid_cp2;
494
495 crc = le32_to_cpu(*((__u32 *)((unsigned char *)cp_block + crc_offset)));
496 if (!f2fs_crc_valid(crc, cp_block, crc_offset))
497 goto invalid_cp2;
498
499 cur_version = cur_cp_version(cp_block);
500
501 if (cur_version == pre_version) {
502 *version = cur_version;
503 f2fs_put_page(cp_page_2, 1);
504 return cp_page_1;
505 }
506invalid_cp2:
507 f2fs_put_page(cp_page_2, 1);
508invalid_cp1:
509 f2fs_put_page(cp_page_1, 1);
510 return NULL;
511}
512
513int get_valid_checkpoint(struct f2fs_sb_info *sbi)
514{
515 struct f2fs_checkpoint *cp_block;
516 struct f2fs_super_block *fsb = sbi->raw_super;
517 struct page *cp1, *cp2, *cur_page;
518 unsigned long blk_size = sbi->blocksize;
519 unsigned long long cp1_version = 0, cp2_version = 0;
520 unsigned long long cp_start_blk_no;
Changman Leec8f5ffb2014-05-12 12:27:43 +0900521 unsigned int cp_blks = 1 + le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
522 block_t cp_blk_no;
523 int i;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800524
Changman Leec8f5ffb2014-05-12 12:27:43 +0900525 sbi->ckpt = kzalloc(cp_blks * blk_size, GFP_KERNEL);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800526 if (!sbi->ckpt)
527 return -ENOMEM;
528 /*
529 * Finding out valid cp block involves read both
530 * sets( cp pack1 and cp pack 2)
531 */
532 cp_start_blk_no = le32_to_cpu(fsb->cp_blkaddr);
533 cp1 = validate_checkpoint(sbi, cp_start_blk_no, &cp1_version);
534
535 /* The second checkpoint pack should start at the next segment */
Changman Leeb1a94e82013-11-15 10:42:51 +0900536 cp_start_blk_no += ((unsigned long long)1) <<
537 le32_to_cpu(fsb->log_blocks_per_seg);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800538 cp2 = validate_checkpoint(sbi, cp_start_blk_no, &cp2_version);
539
540 if (cp1 && cp2) {
541 if (ver_after(cp2_version, cp1_version))
542 cur_page = cp2;
543 else
544 cur_page = cp1;
545 } else if (cp1) {
546 cur_page = cp1;
547 } else if (cp2) {
548 cur_page = cp2;
549 } else {
550 goto fail_no_cp;
551 }
552
553 cp_block = (struct f2fs_checkpoint *)page_address(cur_page);
554 memcpy(sbi->ckpt, cp_block, blk_size);
555
Changman Leec8f5ffb2014-05-12 12:27:43 +0900556 if (cp_blks <= 1)
557 goto done;
558
559 cp_blk_no = le32_to_cpu(fsb->cp_blkaddr);
560 if (cur_page == cp2)
561 cp_blk_no += 1 << le32_to_cpu(fsb->log_blocks_per_seg);
562
563 for (i = 1; i < cp_blks; i++) {
564 void *sit_bitmap_ptr;
565 unsigned char *ckpt = (unsigned char *)sbi->ckpt;
566
567 cur_page = get_meta_page(sbi, cp_blk_no + i);
568 sit_bitmap_ptr = page_address(cur_page);
569 memcpy(ckpt + i * blk_size, sit_bitmap_ptr, blk_size);
570 f2fs_put_page(cur_page, 1);
571 }
572done:
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800573 f2fs_put_page(cp1, 1);
574 f2fs_put_page(cp2, 1);
575 return 0;
576
577fail_no_cp:
578 kfree(sbi->ckpt);
579 return -EINVAL;
580}
581
582static int __add_dirty_inode(struct inode *inode, struct dir_inode_entry *new)
583{
584 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800585
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900586 if (is_inode_flag_set(F2FS_I(inode), FI_DIRTY_DIR))
587 return -EEXIST;
Chao Yu48c561a2014-03-29 11:33:17 +0800588
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900589 set_inode_flag(F2FS_I(inode), FI_DIRTY_DIR);
590 F2FS_I(inode)->dirty_dir = new;
591 list_add_tail(&new->list, &sbi->dir_inode_list);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800592 stat_inc_dirty_dir(sbi);
593 return 0;
594}
595
596void set_dirty_dir_page(struct inode *inode, struct page *page)
597{
598 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
599 struct dir_inode_entry *new;
Chao Yu784b1352014-04-02 08:55:00 +0800600 int ret = 0;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800601
602 if (!S_ISDIR(inode->i_mode))
603 return;
604
605 new = f2fs_kmem_cache_alloc(inode_entry_slab, GFP_NOFS);
606 new->inode = inode;
607 INIT_LIST_HEAD(&new->list);
608
609 spin_lock(&sbi->dir_inode_lock);
Chao Yu784b1352014-04-02 08:55:00 +0800610 ret = __add_dirty_inode(inode, new);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800611 inode_inc_dirty_dents(inode);
612 SetPagePrivate(page);
613 spin_unlock(&sbi->dir_inode_lock);
Chao Yu784b1352014-04-02 08:55:00 +0800614
615 if (ret)
616 kmem_cache_free(inode_entry_slab, new);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800617}
618
619void add_dirty_dir_inode(struct inode *inode)
620{
621 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
622 struct dir_inode_entry *new =
623 f2fs_kmem_cache_alloc(inode_entry_slab, GFP_NOFS);
Chao Yu784b1352014-04-02 08:55:00 +0800624 int ret = 0;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800625
626 new->inode = inode;
627 INIT_LIST_HEAD(&new->list);
628
629 spin_lock(&sbi->dir_inode_lock);
Chao Yu784b1352014-04-02 08:55:00 +0800630 ret = __add_dirty_inode(inode, new);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800631 spin_unlock(&sbi->dir_inode_lock);
Chao Yu784b1352014-04-02 08:55:00 +0800632
633 if (ret)
634 kmem_cache_free(inode_entry_slab, new);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800635}
636
637void remove_dirty_dir_inode(struct inode *inode)
638{
639 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
Chao Yu48c561a2014-03-29 11:33:17 +0800640 struct dir_inode_entry *entry;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800641
642 if (!S_ISDIR(inode->i_mode))
643 return;
644
645 spin_lock(&sbi->dir_inode_lock);
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900646 if (get_dirty_dents(inode) ||
647 !is_inode_flag_set(F2FS_I(inode), FI_DIRTY_DIR)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800648 spin_unlock(&sbi->dir_inode_lock);
649 return;
650 }
651
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900652 entry = F2FS_I(inode)->dirty_dir;
653 list_del(&entry->list);
654 F2FS_I(inode)->dirty_dir = NULL;
655 clear_inode_flag(F2FS_I(inode), FI_DIRTY_DIR);
656 stat_dec_dirty_dir(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800657 spin_unlock(&sbi->dir_inode_lock);
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900658 kmem_cache_free(inode_entry_slab, entry);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800659
660 /* Only from the recovery routine */
661 if (is_inode_flag_set(F2FS_I(inode), FI_DELAY_IPUT)) {
662 clear_inode_flag(F2FS_I(inode), FI_DELAY_IPUT);
663 iput(inode);
664 }
665}
666
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800667void sync_dirty_dir_inodes(struct f2fs_sb_info *sbi)
668{
Changman Leeb1a94e82013-11-15 10:42:51 +0900669 struct list_head *head;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800670 struct dir_inode_entry *entry;
671 struct inode *inode;
672retry:
673 spin_lock(&sbi->dir_inode_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900674
675 head = &sbi->dir_inode_list;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800676 if (list_empty(head)) {
677 spin_unlock(&sbi->dir_inode_lock);
678 return;
679 }
680 entry = list_entry(head->next, struct dir_inode_entry, list);
681 inode = igrab(entry->inode);
682 spin_unlock(&sbi->dir_inode_lock);
683 if (inode) {
Jaegeuk Kimc7f9f432014-03-18 12:40:49 +0900684 filemap_fdatawrite(inode->i_mapping);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800685 iput(inode);
686 } else {
687 /*
688 * We should submit bio, since it exists several
689 * wribacking dentry pages in the freeing inode.
690 */
Changman Leeb1a94e82013-11-15 10:42:51 +0900691 f2fs_submit_merged_bio(sbi, DATA, WRITE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800692 }
693 goto retry;
694}
695
696/*
697 * Freeze all the FS-operations for checkpoint.
698 */
699static void block_operations(struct f2fs_sb_info *sbi)
700{
701 struct writeback_control wbc = {
702 .sync_mode = WB_SYNC_ALL,
703 .nr_to_write = LONG_MAX,
704 .for_reclaim = 0,
705 };
706 struct blk_plug plug;
707
708 blk_start_plug(&plug);
709
710retry_flush_dents:
711 f2fs_lock_all(sbi);
712 /* write all the dirty dentry pages */
713 if (get_pages(sbi, F2FS_DIRTY_DENTS)) {
714 f2fs_unlock_all(sbi);
715 sync_dirty_dir_inodes(sbi);
716 goto retry_flush_dents;
717 }
718
719 /*
720 * POR: we should ensure that there is no dirty node pages
721 * until finishing nat/sit flush.
722 */
723retry_flush_nodes:
Dan Pasanen97e8a342014-08-25 19:11:31 -0500724 mutex_lock(&sbi->node_write);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800725
726 if (get_pages(sbi, F2FS_DIRTY_NODES)) {
Dan Pasanen97e8a342014-08-25 19:11:31 -0500727 mutex_unlock(&sbi->node_write);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800728 sync_node_pages(sbi, 0, &wbc);
729 goto retry_flush_nodes;
730 }
731 blk_finish_plug(&plug);
732}
733
734static void unblock_operations(struct f2fs_sb_info *sbi)
735{
Dan Pasanen97e8a342014-08-25 19:11:31 -0500736 mutex_unlock(&sbi->node_write);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800737 f2fs_unlock_all(sbi);
738}
739
740static void wait_on_all_pages_writeback(struct f2fs_sb_info *sbi)
741{
742 DEFINE_WAIT(wait);
743
744 for (;;) {
745 prepare_to_wait(&sbi->cp_wait, &wait, TASK_UNINTERRUPTIBLE);
746
747 if (!get_pages(sbi, F2FS_WRITEBACK))
748 break;
749
750 io_schedule();
751 }
752 finish_wait(&sbi->cp_wait, &wait);
753}
754
755static void do_checkpoint(struct f2fs_sb_info *sbi, bool is_umount)
756{
757 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
758 nid_t last_nid = 0;
759 block_t start_blk;
760 struct page *cp_page;
761 unsigned int data_sum_blocks, orphan_blocks;
762 __u32 crc32 = 0;
763 void *kaddr;
764 int i;
Changman Leec8f5ffb2014-05-12 12:27:43 +0900765 int cp_payload_blks = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800766
Jaegeuk Kimf8ff1412014-04-15 13:57:55 +0900767 /*
768 * This avoids to conduct wrong roll-forward operations and uses
769 * metapages, so should be called prior to sync_meta_pages below.
770 */
Dan Pasanen97e8a342014-08-25 19:11:31 -0500771 discard_next_dnode(sbi);
Jaegeuk Kimf8ff1412014-04-15 13:57:55 +0900772
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800773 /* Flush all the NAT/SIT pages */
774 while (get_pages(sbi, F2FS_DIRTY_META))
775 sync_meta_pages(sbi, META, LONG_MAX);
776
777 next_free_nid(sbi, &last_nid);
778
779 /*
780 * modify checkpoint
781 * version number is already updated
782 */
783 ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi));
784 ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
785 ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
786 for (i = 0; i < 3; i++) {
787 ckpt->cur_node_segno[i] =
788 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_NODE));
789 ckpt->cur_node_blkoff[i] =
790 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_NODE));
791 ckpt->alloc_type[i + CURSEG_HOT_NODE] =
792 curseg_alloc_type(sbi, i + CURSEG_HOT_NODE);
793 }
794 for (i = 0; i < 3; i++) {
795 ckpt->cur_data_segno[i] =
796 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_DATA));
797 ckpt->cur_data_blkoff[i] =
798 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_DATA));
799 ckpt->alloc_type[i + CURSEG_HOT_DATA] =
800 curseg_alloc_type(sbi, i + CURSEG_HOT_DATA);
801 }
802
803 ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
804 ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
805 ckpt->next_free_nid = cpu_to_le32(last_nid);
806
807 /* 2 cp + n data seg summary + orphan inode blocks */
808 data_sum_blocks = npages_for_summary_flush(sbi);
809 if (data_sum_blocks < 3)
810 set_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
811 else
812 clear_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
813
814 orphan_blocks = (sbi->n_orphans + F2FS_ORPHANS_PER_BLOCK - 1)
815 / F2FS_ORPHANS_PER_BLOCK;
Changman Leec8f5ffb2014-05-12 12:27:43 +0900816 ckpt->cp_pack_start_sum = cpu_to_le32(1 + cp_payload_blks +
817 orphan_blocks);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800818
819 if (is_umount) {
820 set_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
821 ckpt->cp_pack_total_block_count = cpu_to_le32(2 +
Changman Leec8f5ffb2014-05-12 12:27:43 +0900822 cp_payload_blks + data_sum_blocks +
823 orphan_blocks + NR_CURSEG_NODE_TYPE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800824 } else {
825 clear_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
826 ckpt->cp_pack_total_block_count = cpu_to_le32(2 +
Changman Leec8f5ffb2014-05-12 12:27:43 +0900827 cp_payload_blks + data_sum_blocks +
828 orphan_blocks);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800829 }
830
831 if (sbi->n_orphans)
832 set_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
833 else
834 clear_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
835
836 /* update SIT/NAT bitmap */
837 get_sit_bitmap(sbi, __bitmap_ptr(sbi, SIT_BITMAP));
838 get_nat_bitmap(sbi, __bitmap_ptr(sbi, NAT_BITMAP));
839
840 crc32 = f2fs_crc32(ckpt, le32_to_cpu(ckpt->checksum_offset));
841 *((__le32 *)((unsigned char *)ckpt +
842 le32_to_cpu(ckpt->checksum_offset)))
843 = cpu_to_le32(crc32);
844
845 start_blk = __start_cp_addr(sbi);
846
847 /* write out checkpoint buffer at block 0 */
848 cp_page = grab_meta_page(sbi, start_blk++);
849 kaddr = page_address(cp_page);
850 memcpy(kaddr, ckpt, (1 << sbi->log_blocksize));
851 set_page_dirty(cp_page);
852 f2fs_put_page(cp_page, 1);
853
Changman Leec8f5ffb2014-05-12 12:27:43 +0900854 for (i = 1; i < 1 + cp_payload_blks; i++) {
855 cp_page = grab_meta_page(sbi, start_blk++);
856 kaddr = page_address(cp_page);
857 memcpy(kaddr, (char *)ckpt + i * F2FS_BLKSIZE,
858 (1 << sbi->log_blocksize));
859 set_page_dirty(cp_page);
860 f2fs_put_page(cp_page, 1);
861 }
862
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800863 if (sbi->n_orphans) {
864 write_orphan_inodes(sbi, start_blk);
865 start_blk += orphan_blocks;
866 }
867
868 write_data_summaries(sbi, start_blk);
869 start_blk += data_sum_blocks;
870 if (is_umount) {
871 write_node_summaries(sbi, start_blk);
872 start_blk += NR_CURSEG_NODE_TYPE;
873 }
874
875 /* writeout checkpoint block */
876 cp_page = grab_meta_page(sbi, start_blk);
877 kaddr = page_address(cp_page);
878 memcpy(kaddr, ckpt, (1 << sbi->log_blocksize));
879 set_page_dirty(cp_page);
880 f2fs_put_page(cp_page, 1);
881
882 /* wait for previous submitted node/meta pages writeback */
883 wait_on_all_pages_writeback(sbi);
884
Changman Leeb1a94e82013-11-15 10:42:51 +0900885 filemap_fdatawait_range(NODE_MAPPING(sbi), 0, LONG_MAX);
886 filemap_fdatawait_range(META_MAPPING(sbi), 0, LONG_MAX);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800887
888 /* update user_block_counts */
889 sbi->last_valid_block_count = sbi->total_valid_block_count;
890 sbi->alloc_valid_block_count = 0;
891
892 /* Here, we only have one bio having CP pack */
893 sync_meta_pages(sbi, META_FLUSH, LONG_MAX);
894
Dan Pasanen97e8a342014-08-25 19:11:31 -0500895 if (unlikely(!is_set_ckpt_flags(ckpt, CP_ERROR_FLAG))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800896 clear_prefree_segments(sbi);
897 F2FS_RESET_SB_DIRT(sbi);
898 }
899}
900
901/*
902 * We guarantee that this checkpoint procedure should not fail.
903 */
904void write_checkpoint(struct f2fs_sb_info *sbi, bool is_umount)
905{
906 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
907 unsigned long long ckpt_ver;
908
909 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "start block_ops");
910
911 mutex_lock(&sbi->cp_mutex);
912 block_operations(sbi);
913
914 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "finish block_ops");
915
Changman Leeb1a94e82013-11-15 10:42:51 +0900916 f2fs_submit_merged_bio(sbi, DATA, WRITE);
917 f2fs_submit_merged_bio(sbi, NODE, WRITE);
918 f2fs_submit_merged_bio(sbi, META, WRITE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800919
920 /*
921 * update checkpoint pack index
922 * Increase the version number so that
923 * SIT entries and seg summaries are written at correct place
924 */
925 ckpt_ver = cur_cp_version(ckpt);
926 ckpt->checkpoint_ver = cpu_to_le64(++ckpt_ver);
927
928 /* write cached NAT/SIT entries to NAT/SIT area */
929 flush_nat_entries(sbi);
930 flush_sit_entries(sbi);
931
932 /* unlock all the fs_lock[] in do_checkpoint() */
933 do_checkpoint(sbi, is_umount);
934
935 unblock_operations(sbi);
936 mutex_unlock(&sbi->cp_mutex);
937
Changman Lee8b83cd32014-02-13 15:12:29 +0900938 stat_inc_cp_count(sbi->stat_info);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800939 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "finish checkpoint");
940}
941
Dan Pasanen97e8a342014-08-25 19:11:31 -0500942void init_orphan_info(struct f2fs_sb_info *sbi)
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800943{
Dan Pasanen97e8a342014-08-25 19:11:31 -0500944 spin_lock_init(&sbi->orphan_inode_lock);
945 INIT_LIST_HEAD(&sbi->orphan_inode_list);
946 sbi->n_orphans = 0;
Changman Leeb1a94e82013-11-15 10:42:51 +0900947 /*
948 * considering 512 blocks in a segment 8 blocks are needed for cp
949 * and log segment summaries. Remaining blocks are used to keep
950 * orphan entries with the limitation one reserved segment
951 * for cp pack we can have max 1020*504 orphan entries
952 */
953 sbi->max_orphans = (sbi->blocks_per_seg - 2 - NR_CURSEG_TYPE)
954 * F2FS_ORPHANS_PER_BLOCK;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800955}
956
957int __init create_checkpoint_caches(void)
958{
Dan Pasanen97e8a342014-08-25 19:11:31 -0500959 orphan_entry_slab = f2fs_kmem_cache_create("f2fs_orphan_entry",
960 sizeof(struct orphan_inode_entry));
961 if (!orphan_entry_slab)
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800962 return -ENOMEM;
963 inode_entry_slab = f2fs_kmem_cache_create("f2fs_dirty_dir_entry",
Gu Zhenge33dcea2014-03-07 18:43:28 +0800964 sizeof(struct dir_inode_entry));
Changman Leeb1a94e82013-11-15 10:42:51 +0900965 if (!inode_entry_slab) {
Dan Pasanen97e8a342014-08-25 19:11:31 -0500966 kmem_cache_destroy(orphan_entry_slab);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800967 return -ENOMEM;
968 }
969 return 0;
970}
971
972void destroy_checkpoint_caches(void)
973{
Dan Pasanen97e8a342014-08-25 19:11:31 -0500974 kmem_cache_destroy(orphan_entry_slab);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800975 kmem_cache_destroy(inode_entry_slab);
976}