ext4: Remove i_ext_generation from ext4_inode_info structure
The i_ext_generation was incremented, but never used. Remove it to slim down the ext4_inode_info structure. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
30773840c1
commit
cde6436004
3 changed files with 0 additions and 8 deletions
|
@ -194,11 +194,6 @@ static inline unsigned short ext_depth(struct inode *inode)
|
||||||
return le16_to_cpu(ext_inode_hdr(inode)->eh_depth);
|
return le16_to_cpu(ext_inode_hdr(inode)->eh_depth);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void ext4_ext_tree_changed(struct inode *inode)
|
|
||||||
{
|
|
||||||
EXT4_I(inode)->i_ext_generation++;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
ext4_ext_invalidate_cache(struct inode *inode)
|
ext4_ext_invalidate_cache(struct inode *inode)
|
||||||
{
|
{
|
||||||
|
|
|
@ -117,7 +117,6 @@ struct ext4_inode_info {
|
||||||
struct inode vfs_inode;
|
struct inode vfs_inode;
|
||||||
struct jbd2_inode jinode;
|
struct jbd2_inode jinode;
|
||||||
|
|
||||||
unsigned long i_ext_generation;
|
|
||||||
struct ext4_ext_cache i_cached_extent;
|
struct ext4_ext_cache i_cached_extent;
|
||||||
/*
|
/*
|
||||||
* File creation time. Its function is same as that of
|
* File creation time. Its function is same as that of
|
||||||
|
|
|
@ -1621,7 +1621,6 @@ int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
|
||||||
ext4_ext_drop_refs(npath);
|
ext4_ext_drop_refs(npath);
|
||||||
kfree(npath);
|
kfree(npath);
|
||||||
}
|
}
|
||||||
ext4_ext_tree_changed(inode);
|
|
||||||
ext4_ext_invalidate_cache(inode);
|
ext4_ext_invalidate_cache(inode);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
@ -2232,7 +2231,6 @@ static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
ext4_ext_tree_changed(inode);
|
|
||||||
ext4_ext_drop_refs(path);
|
ext4_ext_drop_refs(path);
|
||||||
kfree(path);
|
kfree(path);
|
||||||
ext4_journal_stop(handle);
|
ext4_journal_stop(handle);
|
||||||
|
|
Loading…
Reference in a new issue