X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Finclude%2Fobd_class.h;h=8c156153bb7ae676c07b60c8ab2c3d2966493dd4;hp=5913c1e788dacf9ec0b04cd93f2647997b8d2e10;hb=1b06508451b359c5a7ee049e82c3a17537e7bb93;hpb=0f7e642a4ee61b7059e41938946f5b09a0532bb6 diff --git a/lustre/include/obd_class.h b/lustre/include/obd_class.h index 5913c1e..8c15615 100644 --- a/lustre/include/obd_class.h +++ b/lustre/include/obd_class.h @@ -399,7 +399,8 @@ static inline int class_devno_max(void) } static inline int obd_get_info(struct obd_export *exp, __u32 keylen, - void *key, __u32 *vallen, void *val) + void *key, __u32 *vallen, void *val, + struct lov_stripe_md *lsm) { int rc; ENTRY; @@ -407,7 +408,7 @@ static inline int obd_get_info(struct obd_export *exp, __u32 keylen, EXP_CHECK_DT_OP(exp, get_info); EXP_COUNTER_INCREMENT(exp, get_info); - rc = OBP(exp->exp_obd, get_info)(exp, keylen, key, vallen, val); + rc = OBP(exp->exp_obd, get_info)(exp, keylen, key, vallen, val, lsm); RETURN(rc); }