mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:40:53 +07:00
Btrfs: fix error return code in btrfs_init_test_fs()
Fix to return a negative error code from the kern_mount() error handling case instead of 0(ret is set to 0 by register_filesystem), as done elsewhere in this function. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Reviewed-by: Omar Sandoval <osandov@fb.com> Signed-off-by: David Sterba <dsterba@suse.com> Signed-off-by: Chris Mason <clm@fb.com>
This commit is contained in:
parent
c6887cd111
commit
04e1b65af2
@ -68,7 +68,7 @@ int btrfs_init_test_fs(void)
|
|||||||
if (IS_ERR(test_mnt)) {
|
if (IS_ERR(test_mnt)) {
|
||||||
printk(KERN_ERR "btrfs: cannot mount test file system\n");
|
printk(KERN_ERR "btrfs: cannot mount test file system\n");
|
||||||
unregister_filesystem(&test_type);
|
unregister_filesystem(&test_type);
|
||||||
return ret;
|
return PTR_ERR(test_mnt);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user