VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Al Viro <viro@zeniv.linux.org.uk> 2011-12-12 15:51:45 -0500 committer: Al Viro <viro@zeniv.linux.org.uk> 2012-01-03 22:52:40 -0500 commit: 6b520e0565422966cdf1c3759bd73df77b0f248c parent: 2a79f17e4a641a2f463cb512cb0ec349844a147b
Commit Summary:
vfs: fix the stupidity with i_dentry in inode destructors
Diffstat:
1 file changed, 0 insertions, 1 deletion
diff --git a/fs/efs/super.c b/fs/efs/super.c
index 0f31acb0131c..981106429a9f 100644
--- a/fs/efs/super.c
+++ b/fs/efs/super.c
@@ -68,7 +68,6 @@ static struct inode *efs_alloc_inode(struct super_block *sb)
 static void efs_i_callback(struct rcu_head *head)
 {
 	struct inode *inode = container_of(head, struct inode, i_rcu);
-	INIT_LIST_HEAD(&inode->i_dentry);
 	kmem_cache_free(efs_inode_cachep, INODE_INFO(inode));
 }