Skip to content
Commit cac71121 authored by Krzysztof Sachanowicz's avatar Krzysztof Sachanowicz Committed by Linus Torvalds
Browse files

proc: proc_get_inode should de_put when inode already initialized



de_get is called before every proc_get_inode, but corresponding de_put is
called only when dropping last reference to an inode. This might cause
something like
remove_proc_entry: /proc/stats busy, count=14496
to be printed to the syslog.

The fix is to call de_put in case of an already initialized inode in
proc_get_inode.

Signed-off-by: default avatarKrzysztof Sachanowicz <analyzer1@gmail.com>
Tested-by: default avatarMarcin Pilipczuk <marcin.pilipczuk@gmail.com>
Acked-by: default avatarAl Viro <viro@ZenIV.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 226485e9
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment