mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
Follow 0/-E convention for module load errors
Because errors during module load are so rare it went unnoticed that it was possible that a positive errno was returned. This would result in the module being loaded, nothing being initialized, and a system panic shortly thereafter. This is what was causing the hard failures in the automated testing. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
@@ -6011,7 +6011,7 @@ _init(void)
|
||||
{
|
||||
int error;
|
||||
|
||||
error = vn_set_pwd("/");
|
||||
error = -vn_set_pwd("/");
|
||||
if (error) {
|
||||
printk(KERN_NOTICE
|
||||
"ZFS: Warning unable to set pwd to '/': %d\n", error);
|
||||
@@ -6021,7 +6021,7 @@ _init(void)
|
||||
spa_init(FREAD | FWRITE);
|
||||
zfs_init();
|
||||
|
||||
if ((error = zvol_init()) != 0)
|
||||
if ((error = -zvol_init()) != 0)
|
||||
goto out1;
|
||||
|
||||
zfs_ioctl_init();
|
||||
|
||||
Reference in New Issue
Block a user