Skip to content
Snippets Groups Projects
Commit 4a982e81 authored by tianzy's avatar tianzy
Browse files

Branch HEAD

change target_handle_dqacq_callback() error handling
b=16890
i=johann
i=panda
parent bdebf227
No related branches found
No related tags found
No related merge requests found
......@@ -2251,8 +2251,8 @@ int target_handle_dqacq_callback(struct ptlrpc_request *req)
/* we use the observer */
if (!obd->obd_observer || !obd->obd_observer->obd_observer) {
CERROR("Can't find the observer, it is recovering\n");
req->rq_status = -EIO;
GOTO(send_reply, rc = -EIO);
req->rq_status = -EAGAIN;
GOTO(send_reply, rc = -EAGAIN);
}
master_obd = obd->obd_observer->obd_observer;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment