|
@@ -2411,16 +2411,17 @@ extern int ext4fs_dirhash(const char *name, int len, struct
|
|
|
/* ialloc.c */
|
|
|
extern struct inode *__ext4_new_inode(handle_t *, struct inode *, umode_t,
|
|
|
const struct qstr *qstr, __u32 goal,
|
|
|
- uid_t *owner, int handle_type,
|
|
|
- unsigned int line_no, int nblocks);
|
|
|
+ uid_t *owner, __u32 i_flags,
|
|
|
+ int handle_type, unsigned int line_no,
|
|
|
+ int nblocks);
|
|
|
|
|
|
-#define ext4_new_inode(handle, dir, mode, qstr, goal, owner) \
|
|
|
+#define ext4_new_inode(handle, dir, mode, qstr, goal, owner, i_flags) \
|
|
|
__ext4_new_inode((handle), (dir), (mode), (qstr), (goal), (owner), \
|
|
|
- 0, 0, 0)
|
|
|
+ i_flags, 0, 0, 0)
|
|
|
#define ext4_new_inode_start_handle(dir, mode, qstr, goal, owner, \
|
|
|
type, nblocks) \
|
|
|
__ext4_new_inode(NULL, (dir), (mode), (qstr), (goal), (owner), \
|
|
|
- (type), __LINE__, (nblocks))
|
|
|
+ 0, (type), __LINE__, (nblocks))
|
|
|
|
|
|
|
|
|
extern void ext4_free_inode(handle_t *, struct inode *);
|