diff --git a/lustre/llite/file.c b/lustre/llite/file.c index 2f1be8c750451f0ff84ec75fb6670b9e5f75e5a7..53d4c303464b3f0c49e6e1ad6daf79f7a816a99a 100644 --- a/lustre/llite/file.c +++ b/lustre/llite/file.c @@ -653,8 +653,7 @@ static int ll_lock_to_stripe_offset(struct inode *inode, struct ldlm_lock *lock) struct { char name[16]; struct ldlm_lock *lock; - struct lov_stripe_md *lsm; - } key = { .name = KEY_LOCK_TO_STRIPE, .lock = lock, .lsm = lsm }; + } key = { .name = KEY_LOCK_TO_STRIPE, .lock = lock }; __u32 stripe, vallen = sizeof(stripe); struct lov_oinfo *loinfo; int rc; @@ -664,7 +663,7 @@ static int ll_lock_to_stripe_offset(struct inode *inode, struct ldlm_lock *lock) GOTO(check, stripe = 0); /* get our offset in the lov */ - rc = obd_get_info(exp, sizeof(key), &key, &vallen, &stripe); + rc = obd_get_info(exp, sizeof(key), &key, &vallen, &stripe, lsm); if (rc != 0) { CERROR("obd_get_info: rc = %d\n", rc); RETURN(rc);