1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#ifndef OCFS2_INODE_H
27#define OCFS2_INODE_H
28
29#include "extent_map.h"
30
31
32struct ocfs2_inode_info
33{
34 u64 ip_blkno;
35
36 struct ocfs2_lock_res ip_rw_lockres;
37 struct ocfs2_lock_res ip_inode_lockres;
38 struct ocfs2_lock_res ip_open_lockres;
39
40
41 struct rw_semaphore ip_alloc_sem;
42
43
44 struct rw_semaphore ip_xattr_sem;
45
46
47 atomic_t ip_unaligned_aio;
48
49
50 spinlock_t ip_lock;
51 u32 ip_open_count;
52 struct list_head ip_io_markers;
53 u32 ip_clusters;
54
55 u16 ip_dyn_features;
56 struct mutex ip_io_mutex;
57 u32 ip_flags;
58 u32 ip_attr;
59
60
61 struct inode *ip_next_orphan;
62
63 struct ocfs2_caching_info ip_metadata_cache;
64 struct ocfs2_extent_map ip_extent_map;
65 struct inode vfs_inode;
66 struct jbd2_inode ip_jinode;
67
68 u32 ip_dir_start_lookup;
69
70
71 u32 ip_last_used_slot;
72 u64 ip_last_used_group;
73 u32 ip_dir_lock_gen;
74
75 struct ocfs2_alloc_reservation ip_la_data_resv;
76};
77
78
79
80
81
82#define OCFS2_INODE_SYSTEM_FILE 0x00000001
83#define OCFS2_INODE_JOURNAL 0x00000002
84#define OCFS2_INODE_BITMAP 0x00000004
85
86#define OCFS2_INODE_DELETED 0x00000008
87
88#define OCFS2_INODE_SKIP_DELETE 0x00000010
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103#define OCFS2_INODE_MAYBE_ORPHANED 0x00000020
104
105#define OCFS2_INODE_OPEN_DIRECT 0x00000040
106
107#define OCFS2_INODE_SKIP_ORPHAN_DIR 0x00000080
108
109static inline struct ocfs2_inode_info *OCFS2_I(struct inode *inode)
110{
111 return container_of(inode, struct ocfs2_inode_info, vfs_inode);
112}
113
114#define INODE_JOURNAL(i) (OCFS2_I(i)->ip_flags & OCFS2_INODE_JOURNAL)
115#define SET_INODE_JOURNAL(i) (OCFS2_I(i)->ip_flags |= OCFS2_INODE_JOURNAL)
116
117extern struct kmem_cache *ocfs2_inode_cache;
118
119extern const struct address_space_operations ocfs2_aops;
120extern const struct ocfs2_caching_operations ocfs2_inode_caching_ops;
121
122static inline struct ocfs2_caching_info *INODE_CACHE(struct inode *inode)
123{
124 return &OCFS2_I(inode)->ip_metadata_cache;
125}
126
127void ocfs2_evict_inode(struct inode *inode);
128int ocfs2_drop_inode(struct inode *inode);
129
130
131#define OCFS2_FI_FLAG_SYSFILE 0x1
132#define OCFS2_FI_FLAG_ORPHAN_RECOVERY 0x2
133struct inode *ocfs2_ilookup(struct super_block *sb, u64 feoff);
134struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 feoff, unsigned flags,
135 int sysfile_type);
136int ocfs2_inode_init_private(struct inode *inode);
137int ocfs2_inode_revalidate(struct dentry *dentry);
138void ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
139 int create_ino);
140void ocfs2_read_inode(struct inode *inode);
141void ocfs2_read_inode2(struct inode *inode, void *opaque);
142ssize_t ocfs2_rw_direct(int rw, struct file *filp, char *buf,
143 size_t size, loff_t *offp);
144void ocfs2_sync_blockdev(struct super_block *sb);
145void ocfs2_refresh_inode(struct inode *inode,
146 struct ocfs2_dinode *fe);
147int ocfs2_mark_inode_dirty(handle_t *handle,
148 struct inode *inode,
149 struct buffer_head *bh);
150int ocfs2_aio_read(struct file *file, struct kiocb *req, struct iocb *iocb);
151int ocfs2_aio_write(struct file *file, struct kiocb *req, struct iocb *iocb);
152struct buffer_head *ocfs2_bread(struct inode *inode,
153 int block, int *err, int reada);
154
155void ocfs2_set_inode_flags(struct inode *inode);
156void ocfs2_get_inode_flags(struct ocfs2_inode_info *oi);
157
158static inline blkcnt_t ocfs2_inode_sector_count(struct inode *inode)
159{
160 int c_to_s_bits = OCFS2_SB(inode->i_sb)->s_clustersize_bits - 9;
161
162 return (blkcnt_t)(OCFS2_I(inode)->ip_clusters << c_to_s_bits);
163}
164
165
166int ocfs2_validate_inode_block(struct super_block *sb,
167 struct buffer_head *bh);
168
169
170
171
172
173int ocfs2_read_inode_block(struct inode *inode, struct buffer_head **bh);
174
175int ocfs2_read_inode_block_full(struct inode *inode, struct buffer_head **bh,
176 int flags);
177
178static inline struct ocfs2_inode_info *cache_info_to_inode(struct ocfs2_caching_info *ci)
179{
180 return container_of(ci, struct ocfs2_inode_info, ip_metadata_cache);
181}
182
183#endif
184