f2fs.h (58bfaf44df58082c72882b235cae611c975537d4) f2fs.h (0d47c1adc2a1f1e4f4673f122a8328c90c58e232)
1/*
2 * fs/f2fs/f2fs.h
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

--- 400 unchanged lines hidden (view full) ---

409 bool por_doing; /* recovery is doing or not */
410 bool on_build_free_nids; /* build_free_nids is doing */
411 wait_queue_head_t cp_wait;
412
413 /* for orphan inode management */
414 struct list_head orphan_inode_list; /* orphan inode list */
415 struct mutex orphan_inode_mutex; /* for orphan inode list */
416 unsigned int n_orphans; /* # of orphan inodes */
1/*
2 * fs/f2fs/f2fs.h
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

--- 400 unchanged lines hidden (view full) ---

409 bool por_doing; /* recovery is doing or not */
410 bool on_build_free_nids; /* build_free_nids is doing */
411 wait_queue_head_t cp_wait;
412
413 /* for orphan inode management */
414 struct list_head orphan_inode_list; /* orphan inode list */
415 struct mutex orphan_inode_mutex; /* for orphan inode list */
416 unsigned int n_orphans; /* # of orphan inodes */
417 unsigned int max_orphans; /* max orphan inodes */
417
418 /* for directory inode management */
419 struct list_head dir_inode_list; /* dir inode list */
420 spinlock_t dir_inode_lock; /* for dir inode list lock */
421
422 /* basic file system units */
423 unsigned int log_sectors_per_block; /* log2 sectors per block */
424 unsigned int log_blocksize; /* log2 block size */

--- 874 unchanged lines hidden ---
418
419 /* for directory inode management */
420 struct list_head dir_inode_list; /* dir inode list */
421 spinlock_t dir_inode_lock; /* for dir inode list lock */
422
423 /* basic file system units */
424 unsigned int log_sectors_per_block; /* log2 sectors per block */
425 unsigned int log_blocksize; /* log2 block size */

--- 874 unchanged lines hidden ---