hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/fs/nilfs2/mdt.h
....@@ -18,14 +18,12 @@
1818 /**
1919 * struct nilfs_shadow_map - shadow mapping of meta data file
2020 * @bmap_store: shadow copy of bmap state
21
- * @frozen_data: shadowed dirty data pages
22
- * @frozen_btnodes: shadowed dirty b-tree nodes' pages
21
+ * @inode: holder of page caches used in shadow mapping
2322 * @frozen_buffers: list of frozen buffers
2423 */
2524 struct nilfs_shadow_map {
2625 struct nilfs_bmap_store bmap_store;
27
- struct address_space frozen_data;
28
- struct address_space frozen_btnodes;
26
+ struct inode *inode;
2927 struct list_head frozen_buffers;
3028 };
3129