.. | .. |
---|
18 | 18 | /** |
---|
19 | 19 | * struct nilfs_shadow_map - shadow mapping of meta data file |
---|
20 | 20 | * @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 |
---|
23 | 22 | * @frozen_buffers: list of frozen buffers |
---|
24 | 23 | */ |
---|
25 | 24 | struct nilfs_shadow_map { |
---|
26 | 25 | struct nilfs_bmap_store bmap_store; |
---|
27 | | - struct address_space frozen_data; |
---|
28 | | - struct address_space frozen_btnodes; |
---|
| 26 | + struct inode *inode; |
---|
29 | 27 | struct list_head frozen_buffers; |
---|
30 | 28 | }; |
---|
31 | 29 | |
---|