keylen = lustre_msg_buflen(req->rq_reqmsg, REQ_REC_OFF);
/* call once to get the size to allocate the reply buffer */
- rc = obd_get_info(exp, keylen, key, &size[1], NULL);
+ rc = obd_get_info(exp, keylen, key, &size[1], NULL, NULL);
if (rc)
RETURN(rc);
reply = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF, sizeof(*reply));
/* call again to fill in the reply buffer */
- rc = obd_get_info(exp, keylen, key, size, reply);
+ rc = obd_get_info(exp, keylen, key, size, reply, NULL);
lustre_msg_set_status(req->rq_repmsg, 0);
RETURN(rc);