mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 23:20:05 +00:00
staging: lustre: obdclass: fix checking for obd_init_checks()
The obd_init_checks() function can either return -EOVERFLOW or -EINVAL but we accidentally ignore -EINVAL returns. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
092c3def24
commit
faff950c80
@ -448,7 +448,7 @@ static int __init obdclass_init(void)
|
||||
obd_zombie_impexp_init();
|
||||
|
||||
err = obd_init_checks();
|
||||
if (err == -EOVERFLOW)
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
class_init_uuidlist();
|
||||
|
Loading…
x
Reference in New Issue
Block a user