make freeing super_block rcu-delayed

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2013-10-04 17:06:56 -04:00
부모 b70a80e7a1
커밋 e2fec7c355
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@@ -149,7 +149,7 @@ static void destroy_super(struct super_block *s)
WARN_ON(!list_empty(&s->s_mounts));
kfree(s->s_subtype);
kfree(s->s_options);
kfree(s);
kfree_rcu(s, rcu);
}
/**