mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-25 17:29:48 +07:00
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: David Kershner <david.kershner@unisys.com> Reported-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
68f99d4911
commit
29b2780974
@ -676,18 +676,18 @@ device_changestate_responder(enum controlvm_id cmd_id,
|
|||||||
CONTROLVM_QUEUE_REQUEST, &outmsg);
|
CONTROLVM_QUEUE_REQUEST, &outmsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static int
|
||||||
device_responder(enum controlvm_id cmd_id,
|
device_responder(enum controlvm_id cmd_id,
|
||||||
struct controlvm_message_header *pending_msg_hdr,
|
struct controlvm_message_header *pending_msg_hdr,
|
||||||
int response)
|
int response)
|
||||||
{
|
{
|
||||||
if (!pending_msg_hdr)
|
if (!pending_msg_hdr)
|
||||||
return; /* no controlvm response needed */
|
return -EIO;
|
||||||
|
|
||||||
if (pending_msg_hdr->id != (u32)cmd_id)
|
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
|
static int
|
||||||
|
Loading…
Reference in New Issue
Block a user