]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
[PATCH] proc: fix of error path in proc_get_inode()
authorKirill Korotaev <dev@sw.ru>
Sun, 30 Oct 2005 23:02:26 +0000 (15:02 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Mon, 31 Oct 2005 01:37:21 +0000 (17:37 -0800)
commite9543659715602e3180f00a227bb6db34141ac41
treeafcb9c04209060ae8df22c84ed3c85a859f27179
parentf12ec44070f6b4d1a3911fcf9917cf8f872a4daf
[PATCH] proc: fix of error path in proc_get_inode()

This patch fixes incorrect error path in proc_get_inode(), when module
can't be get due to being unloaded.  When try_module_get() fails, this
function puts de(!) and still returns inode with non-getted de.

There are still unresolved known bugs in proc yet to be fixed:
- proc_dir_entry tree is managed without any serialization
- create_proc_entry() doesn't setup de->owner anyhow,
   so setting it later manually is inatomic.
- looks like almost all modules do not care whether
   it's de->owner is set...

Signed-Off-By: Denis Lunev <den@sw.ru>
Signed-Off-By: Kirill Korotaev <dev@sw.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/proc/inode.c