[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1211277589-8565-1-git-send-email-den@openvz.org>
Date: Tue, 20 May 2008 13:59:46 +0400
From: "Denis V. Lunev" <den@...nvz.org>
To: akpm@...ux-foundation.org
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
"Denis V. Lunev" <den@...nvz.org>,
David Miller <davem@...emloft.net>,
Patrick McHardy <kaber@...sh.net>
Subject: [PATCH 1/4] proc: proc_get_inode should get module only once
Any file under /proc/net opened more than once leaked the refcounter
on the module it belongs to.
The problem is that module_get is called for each file opening while
module_put is called only when /proc inode is destroyed. So, lets put
module counter if we are dealing with already initialised inode.
Signed-off-by: Denis V. Lunev <den@...nvz.org>
Cc: David Miller <davem@...emloft.net>
Cc: Patrick McHardy <kaber@...sh.net>
Acked-by: Pavel Emelyanov <xemul@...nvz.org>
Acked-by: Robert Olsson <robert.olsson@....uu.se>
Acked-by: Eric W. Biederman <ebiederm@...ssion.com>
---
fs/proc/inode.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/fs/proc/inode.c b/fs/proc/inode.c
index 6f4e8dc..b08d100 100644
--- a/fs/proc/inode.c
+++ b/fs/proc/inode.c
@@ -425,7 +425,8 @@ struct inode *proc_get_inode(struct super_block *sb, unsigned int ino,
}
}
unlock_new_inode(inode);
- }
+ } else
+ module_put(de->owner);
return inode;
out_ino:
--
1.5.3.rc5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists