staging: lustre: Replace sscanf with kstrtoint

Replace single variable sscanf with specialized function
kstrtoint at the suggestion of checkpatch.pl, to fix
'WARNING: Prefer kstrto<type> to single variable sscanf'

Signed-off-by: Cristina Moraru <cristina.moraru09@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Cristina Moraru 2015-10-27 00:30:08 +02:00 committed by Greg Kroah-Hartman
parent 242b532500
commit 70003e6520

View file

@ -914,14 +914,12 @@ int lov_process_config_base(struct obd_device *obd, struct lustre_cfg *lcfg,
obd_str2uuid(&obd_uuid, lustre_cfg_buf(lcfg, 1));
if (sscanf(lustre_cfg_buf(lcfg, 2), "%d", indexp) != 1) {
rc = -EINVAL;
rc = kstrtoint(lustre_cfg_buf(lcfg, 2), 10, indexp);
if (rc < 0)
goto out;
}
if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", genp) != 1) {
rc = -EINVAL;
rc = kstrtoint(lustre_cfg_buf(lcfg, 3), 10, genp);
if (rc < 0)
goto out;
}
index = *indexp;
gen = *genp;
if (cmd == LCFG_LOV_ADD_OBD)