[PATCH] cramfs: rewrite init_cramfs_fs()
Two lines -- two bugs. :-( Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
dcc8e559ee
commit
50d44ed009
@@ -543,8 +543,15 @@ static struct file_system_type cramfs_fs_type = {
|
|||||||
|
|
||||||
static int __init init_cramfs_fs(void)
|
static int __init init_cramfs_fs(void)
|
||||||
{
|
{
|
||||||
cramfs_uncompress_init();
|
int rv;
|
||||||
return register_filesystem(&cramfs_fs_type);
|
|
||||||
|
rv = cramfs_uncompress_init();
|
||||||
|
if (rv < 0)
|
||||||
|
return rv;
|
||||||
|
rv = register_filesystem(&cramfs_fs_type);
|
||||||
|
if (rv < 0)
|
||||||
|
cramfs_uncompress_exit();
|
||||||
|
return rv;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit exit_cramfs_fs(void)
|
static void __exit exit_cramfs_fs(void)
|
||||||
|
Reference in New Issue
Block a user