node.h (12607c1ba7637e750402f555b6695c50fce77a2b) node.h (71644dff481180ba024ac4f5cb1f068756357adf)
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * fs/f2fs/node.h
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
7 */
8/* start node id of a node block dedicated to the given node id */

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

142}
143
144enum mem_type {
145 FREE_NIDS, /* indicates the free nid list */
146 NAT_ENTRIES, /* indicates the cached nat entry */
147 DIRTY_DENTS, /* indicates dirty dentry pages */
148 INO_ENTRIES, /* indicates inode entries */
149 READ_EXTENT_CACHE, /* indicates read extent cache */
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * fs/f2fs/node.h
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
7 */
8/* start node id of a node block dedicated to the given node id */

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

142}
143
144enum mem_type {
145 FREE_NIDS, /* indicates the free nid list */
146 NAT_ENTRIES, /* indicates the cached nat entry */
147 DIRTY_DENTS, /* indicates dirty dentry pages */
148 INO_ENTRIES, /* indicates inode entries */
149 READ_EXTENT_CACHE, /* indicates read extent cache */
150 AGE_EXTENT_CACHE, /* indicates age extent cache */
150 DISCARD_CACHE, /* indicates memory of cached discard cmds */
151 COMPRESS_PAGE, /* indicates memory of cached compressed pages */
152 BASE_CHECK, /* check kernel status */
153};
154
155struct nat_entry_set {
156 struct list_head set_list; /* link with other nat sets */
157 struct list_head entry_list; /* link with dirty nat entries */

--- 274 unchanged lines hidden ---
151 DISCARD_CACHE, /* indicates memory of cached discard cmds */
152 COMPRESS_PAGE, /* indicates memory of cached compressed pages */
153 BASE_CHECK, /* check kernel status */
154};
155
156struct nat_entry_set {
157 struct list_head set_list; /* link with other nat sets */
158 struct list_head entry_list; /* link with dirty nat entries */

--- 274 unchanged lines hidden ---