Commit f5f27a33 authored by Artem Chernyshev's avatar Artem Chernyshev Committed by Martin K. Petersen

scsi: fnic: Return error if vmalloc() failed

In fnic_init_module() exists redundant check for return value from
fnic_debugfs_init(), because at moment it only can return zero. It make
sense to process theoretical vmalloc() failure.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: 9730ddfb ("scsi: fnic: remove redundant assignment of variable rc")
Signed-off-by: default avatarArtem Chernyshev <artem.chernyshev@red-soft.ru>
Link: https://lore.kernel.org/r/20231128111008.2280507-1-artem.chernyshev@red-soft.ruReviewed-by: default avatarKaran Tilak Kumar <kartilak@cisco.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent af85d689
...@@ -52,9 +52,10 @@ int fnic_debugfs_init(void) ...@@ -52,9 +52,10 @@ int fnic_debugfs_init(void)
fc_trc_flag->fnic_trace = 2; fc_trc_flag->fnic_trace = 2;
fc_trc_flag->fc_trace = 3; fc_trc_flag->fc_trace = 3;
fc_trc_flag->fc_clear = 4; fc_trc_flag->fc_clear = 4;
return 0;
} }
return 0; return -ENOMEM;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment