提交 29b27809 编写于 作者: D David Kershner 提交者: Greg Kroah-Hartman

staging: unisys: visorbus: device_responder add error handling

The function controlvm_respond returns proper error handling, so now we
can propagate the error up and handle it appropriately.
Signed-off-by: NDavid Kershner <david.kershner@unisys.com>
Reported-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 68f99d49
......@@ -676,18 +676,18 @@ device_changestate_responder(enum controlvm_id cmd_id,
CONTROLVM_QUEUE_REQUEST, &outmsg);
}
static void
static int
device_responder(enum controlvm_id cmd_id,
struct controlvm_message_header *pending_msg_hdr,
int response)
{
if (!pending_msg_hdr)
return; /* no controlvm response needed */
return -EIO;
if (pending_msg_hdr->id != (u32)cmd_id)
return;
return -EINVAL;
controlvm_respond(pending_msg_hdr, response);
return controlvm_respond(pending_msg_hdr, response);
}
static int
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册