mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 11:16:42 +07:00
Staging: hv: remove ASSERT() in Channel.c
return an error instead of calling ASSERT() if VmbusPostMessage() fails. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
d1c250bb5d
commit
99259159c0
@ -551,7 +551,9 @@ int VmbusChannelEstablishGpadl(struct vmbus_channel *Channel, void *Kbuffer,
|
||||
ret = VmbusPostMessage(gpadlBody,
|
||||
subMsgInfo->MessageSize -
|
||||
sizeof(*subMsgInfo));
|
||||
ASSERT(ret == 0);
|
||||
if (!ret)
|
||||
goto Cleanup;
|
||||
|
||||
}
|
||||
}
|
||||
osd_WaitEventWait(msgInfo->WaitEvent);
|
||||
|
Loading…
Reference in New Issue
Block a user