浏览代码

[PATCH] debugfs inode leak

Looking at the reiser4 crash, I found a leak in debugfs. In
debugfs_mknod(), we create the inode before checking if the dentry
already has one attached. We don't free it if that is the case.

These bugs happen quite often, I'm starting to think we should disallow
such coding in CodingStyle.

Signed-off-by: Jens Axboe <axboe@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Jens Axboe 19 年之前
父节点
当前提交
71601e2b33
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      fs/debugfs/inode.c

+ 2 - 1
fs/debugfs/inode.c

@@ -67,12 +67,13 @@ static struct inode *debugfs_get_inode(struct super_block *sb, int mode, dev_t d
 static int debugfs_mknod(struct inode *dir, struct dentry *dentry,
 static int debugfs_mknod(struct inode *dir, struct dentry *dentry,
 			 int mode, dev_t dev)
 			 int mode, dev_t dev)
 {
 {
-	struct inode *inode = debugfs_get_inode(dir->i_sb, mode, dev);
+	struct inode *inode;
 	int error = -EPERM;
 	int error = -EPERM;
 
 
 	if (dentry->d_inode)
 	if (dentry->d_inode)
 		return -EEXIST;
 		return -EEXIST;
 
 
+	inode = debugfs_get_inode(dir->i_sb, mode, dev);
 	if (inode) {
 	if (inode) {
 		d_instantiate(dentry, inode);
 		d_instantiate(dentry, inode);
 		dget(dentry);
 		dget(dentry);