[PATCH] v9fs: fix memory leak in v9fs dentry code

From: Latchesar Ionkov
Date: Sat Nov 26 2005 - 12:06:51 EST


Assign the appropriate dentry operations to the dentry. Fixes memory leak.

Signed-off-by: Latchesar Ionkov <lucho@xxxxxxxxxx>

---
commit 1a6e02daf77d610278380537ff3f5687a205dac8
tree 3b53740d44c07d4c8db4e0a0df11794697ab9549
parent 2d0ebb36038c0626cde662a3b06da9787cfb68c3
author Latchesar Ionkov <lucho@xxxxxxxxxx> Sat, 26 Nov 2005 10:39:47 -0500
committer Latchesar Ionkov <lucho@xxxxxxxxxx> Sat, 26 Nov 2005 10:39:47 -0500

fs/9p/vfs_inode.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
--- a/fs/9p/vfs_inode.c
+++ b/fs/9p/vfs_inode.c
@@ -427,6 +427,8 @@ v9fs_create(struct inode *dir,

v9fs_mistat2inode(fcall->params.rstat.stat, file_inode, sb);
kfree(fcall);
+ fcall = NULL;
+ file_dentry->d_op = &v9fs_dentry_operations;
d_instantiate(file_dentry, file_inode);

if (perm & V9FS_DMDIR) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/