X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Flod%2Flod_dev.c;h=900d41ee4c888286bf47d750586893a638982d77;hp=1c1b6cedf7c67081eef44c52c1024a9a8811f187;hb=315f6e0237b676a7512a4d2fa5765ad57483676e;hpb=43af9a3481e980e267a94c9f466ff2b300f619d9 diff --git a/lustre/lod/lod_dev.c b/lustre/lod/lod_dev.c index 1c1b6ce..900d41e 100644 --- a/lustre/lod/lod_dev.c +++ b/lustre/lod/lod_dev.c @@ -1075,7 +1075,6 @@ static struct lu_device_type lod_device_type = { * \param[in] key the key * \param[in] vallen not used * \param[in] val not used - * \param[in] lsm not used * * \retval 0 if a connection was seen * \retval -EAGAIN if LOD isn't running yet or no @@ -1083,8 +1082,7 @@ static struct lu_device_type lod_device_type = { * \retval -EINVAL if not supported key is requested **/ static int lod_obd_get_info(const struct lu_env *env, struct obd_export *exp, - __u32 keylen, void *key, __u32 *vallen, void *val, - struct lov_stripe_md *lsm) + __u32 keylen, void *key, __u32 *vallen, void *val) { int rc = -EINVAL; @@ -1105,7 +1103,7 @@ static int lod_obd_get_info(const struct lu_env *env, struct obd_export *exp, LASSERT(ost && ost->ltd_ost); rc = obd_get_info(env, ost->ltd_exp, keylen, key, - vallen, val, lsm); + vallen, val); /* one healthy device is enough */ if (rc == 0) break;