fs/super.c: fix lru_list leak for real
authorAl Viro <viro@zeniv.linux.org.uk>
Tue, 1 Oct 2013 17:11:21 +0000 (13:11 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Tue, 1 Oct 2013 17:11:21 +0000 (13:11 -0400)
commitc2d22ecd3cf3c49aeecdc10ffd7af10ec1f7eab6
treecb180b5926c4b81a4385f785c7f0b856f8620fcd
parent13f3583892cb7afdb2e9eb0207dc4e03ec6f01fd
fs/super.c: fix lru_list leak for real

Freeing ->s_{inode,dentry}_lru in deactivate_locked_super() is wrong;
the right place is destroy_super().  As it is, we leak them if sget()
decides that new superblock it has allocated (and never shown to
anybody) isn't needed and should be freed.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/super.c